From 28560c5117340e841953ea35ab3057f2ccacfcdb Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sat, 15 Jun 2024 15:56:59 +0100 Subject: [PATCH 01/14] chore: improved types --- build/types.ts | 31 +++++ index.ts | 18 +-- src/services/rpc-service.ts | 6 +- src/services/storage-service.ts | 4 +- tests/mocks/handler.ts | 36 ++++-- tests/mocks/rpc-handler.ts | 9 +- tests/script-test.ts | 15 ++- types/constants.ts | 98 +++++++-------- types/dynamic.ts | 204 ++++++++++++++++++++++++++++++++ types/handler.ts | 24 ++-- types/rpc-handler.ts | 14 +-- 11 files changed, 350 insertions(+), 109 deletions(-) create mode 100644 build/types.ts create mode 100644 types/dynamic.ts diff --git a/build/types.ts b/build/types.ts new file mode 100644 index 0000000..231433a --- /dev/null +++ b/build/types.ts @@ -0,0 +1,31 @@ +import { appendFile, writeFile } from 'fs/promises'; +import * as chainIdList from '../lib/chainlist/constants/chainIds.json'; + +/** + * This produces dynamic types and constants for: + * - networkIds + * - networkNames + */ +async function createDynamicTypes() { + const idToNetwork: Record = {}; + const networkToId: Record = {}; + + for (const [id, name] of Object.entries(chainIdList)) { + if (name === 'default') continue; + if (typeof name === 'object') continue; + const networkId = parseInt(id); + idToNetwork[networkId] = name; + networkToId[name] = networkId; + } + + // Clear the file + await writeFile('types/dynamic.ts', ''); + + + await appendFile('types/dynamic.ts', `\nexport const chainIds = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); + await appendFile('types/dynamic.ts', `\nexport const networks = ${JSON.stringify(networkToId, null, 2)} as const;\n`); +} + +(async () => { + await createDynamicTypes(); +})().catch(console.error) diff --git a/index.ts b/index.ts index 2c63d61..6ad1c30 100644 --- a/index.ts +++ b/index.ts @@ -19,18 +19,15 @@ import { NativeToken, NetworkCurrencies, NetworkExplorers, - NetworkIds, - NetworkNames, NetworkRPCs, Token, - Tokens, ValidBlockData, + ChainIds, + ChainName } from "./types/handler"; import { LOCAL_HOST, - chainIDList, - extraRpcs, getNetworkName, networkCurrencies, networkExplorers, @@ -39,16 +36,15 @@ import { networkRpcs, nftAddress, permit2Address, - tokens, + getNetworkId, } from "./types/constants"; import { RPCHandler } from "./types/rpc-handler"; export { LOCAL_HOST, - chainIDList, - extraRpcs, getNetworkName, + getNetworkId, networkCurrencies, networkExplorers, networkIds, @@ -56,22 +52,20 @@ export { networkRpcs, nftAddress, permit2Address, - tokens, }; export type { ChainId, + ChainIds, + ChainName, ChainNames, HandlerConstructorConfig, HandlerInterface, NativeToken, NetworkCurrencies, NetworkExplorers, - NetworkIds, - NetworkNames, NetworkRPCs, Token, - Tokens, ValidBlockData, }; export { RPCHandler }; diff --git a/src/services/rpc-service.ts b/src/services/rpc-service.ts index 674c6eb..07ff2bb 100644 --- a/src/services/rpc-service.ts +++ b/src/services/rpc-service.ts @@ -1,10 +1,10 @@ -import { ValidBlockData } from "../../types/handler"; +import { ChainId, 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: ChainId, 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: ChainId): 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..92dc0aa 100644 --- a/src/services/storage-service.ts +++ b/src/services/storage-service.ts @@ -1,5 +1,7 @@ +import { ChainId } from "types/handler"; + export class StorageService { - static getLatencies(env: string, networkId: number): Record { + static getLatencies(env: string, networkId: ChainId): Record { if (env === "browser") { if (this.bypassForTests()) return {}; const latencies: Record = JSON.parse(localStorage.getItem("rpcLatencies") || "{}"); diff --git a/tests/mocks/handler.ts b/tests/mocks/handler.ts index 5e85bb7..5468b5a 100644 --- a/tests/mocks/handler.ts +++ b/tests/mocks/handler.ts @@ -1,5 +1,6 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { ChainId, networkCurrencies, networkExplorers, networkIds, networkNames, networkRpcs, tokens } from "../../types/constants"; +import { networkCurrencies, networkExplorers, networkRpcs } from "../../types/constants"; +import { chainIds, networks } from "../../types/dynamic"; export type ValidBlockData = { jsonrpc: string; @@ -10,23 +11,28 @@ export type ValidBlockData = { hash: string; }; }; + export type Token = { decimals: number; address: string; + symbol: string; }; + export type NativeToken = { 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: ChainId; + networkName: ChainName | null; networkRpcs: string[] | null; autoStorage: boolean | null; cacheRefreshCycles: number | null; @@ -35,12 +41,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; -}; + +export type ChainIds = { + -readonly [Key in keyof typeof chainIds]: typeof chainIds[Key] +} +export type ChainNames = { + -readonly [Key in keyof typeof networks]: typeof networks[Key] +} + +export type ChainName = ChainIds[keyof ChainIds] | (string & {}) +export type ChainId = ChainNames[keyof ChainNames] | (number & {}) + diff --git a/tests/mocks/rpc-handler.ts b/tests/mocks/rpc-handler.ts index 90dadad..ff469e6 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 { ChainId, ChainName } 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: ChainId; + private _networkName: ChainName; private _env: string = "node"; private _rpcTimeout: number = 999999; // ms @@ -22,7 +23,7 @@ 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 { diff --git a/tests/script-test.ts b/tests/script-test.ts index 617cd9b..51dc512 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 @@ -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..4a0b3e7 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 { ChainId, ChainName, NativeToken } from "./handler"; +import { chainIds, networks } 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]; - }) -); - -export const networkNames: ChainNames = Object.fromEntries( - Object.entries(networkIds).map(([name, id]) => { - const chainName = name.charAt(0).toUpperCase() + name.slice(1); - return [id, chainName]; - }) -); +declare const extraRpcs: Record; -export const networkRpcs: Record = Object.fromEntries( - Object.entries(networkIds).map(([, value]) => { - const chainRpcs = extraRpcs[value] || []; - 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", - }, - }, -}; +export const networkRpcs: Record = extraRpcs; +export const networkIds: Record = { ...chainIds }; +export const networkNames: Record = { ...networks }; -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 }, +export const networkCurrencies: Partial> = { + [networkNames.ethereum]: { symbol: "ETH", decimals: 18 }, + [networkNames.xdai]: { symbol: "XDAI", decimals: 18 }, + // [networkNames.Anvil]: { symbol: "XDAI", decimals: 18 }, + // [networkNames.Goerli]: { symbol: "GoerliETH", decimals: 18 }, }; -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", +export const networkExplorers: Partial> = { + [networkNames.ethereum]: "https://etherscan.io", + [networkNames.xdai]: "https://gnosisscan.io", + // [networkNames.Goerli]: "https://goerli.etherscan.io", + // [networkNames.Anvil]: "https://gnosisscan.io", }; -export function getNetworkName(networkId?: number) { - const networkName = networkNames[networkId ?? 0]; +export function getNetworkName(networkId: ChainId) { + const networkName = networkIds[networkId]; if (!networkName) { console.error(`Unknown network ID: ${networkId}`); } return networkName ?? "Unknown Network"; } + +export function getNetworkId(networkName: ChainName) { + const networkId = networkNames[networkName]; + if (!networkId) { + console.error(`Unknown network name: ${networkName}`); + } + return networkId ?? 0; +} + +// export const tokens: Record> = { +// [networkNames.ethereum]: { +// DAI: { +// address: "0x6b175474e89094c44da98b954eedeac495271d0f", +// decimals: 18, +// symbol: "DAI", +// }, +// }, +// [networkNames.xdai]: { +// WXDAI: { +// address: "0xe91d153e0b41518a2ce8dd3d7944fa863463a97d", +// decimals: 18, +// symbol: "WXDAI", +// }, +// }, +// }; \ No newline at end of file diff --git a/types/dynamic.ts b/types/dynamic.ts new file mode 100644 index 0000000..c93af36 --- /dev/null +++ b/types/dynamic.ts @@ -0,0 +1,204 @@ + +export const chainIds = { + "1": "ethereum", + "8": "ubiq", + "10": "optimism", + "19": "songbird", + "20": "elastos", + "24": "kardiachain", + "25": "cronos", + "30": "rsk", + "40": "telos", + "50": "xdc", + "52": "csc", + "55": "zyx", + "56": "binance", + "57": "syscoin", + "60": "gochain", + "61": "ethereumclassic", + "66": "okexchain", + "70": "hoo", + "82": "meter", + "87": "nova network", + "88": "viction", + "100": "xdai", + "106": "velas", + "108": "thundercore", + "122": "fuse", + "128": "heco", + "137": "polygon", + "148": "shimmer_evm", + "169": "manta", + "200": "xdaiarb", + "204": "op_bnb", + "246": "energyweb", + "248": "oasys", + "250": "fantom", + "269": "hpb", + "288": "boba", + "311": "omax", + "314": "filecoin", + "321": "kucoin", + "324": "era", + "336": "shiden", + "361": "theta", + "369": "pulse", + "416": "sx", + "463": "areon", + "534": "candle", + "570": "rollux", + "592": "astar", + "820": "callisto", + "888": "wanchain", + "1030": "conflux", + "1088": "metis", + "1101": "polygon_zkevm", + "1116": "core", + "1231": "ultron", + "1234": "step", + "1284": "moonbeam", + "1285": "moonriver", + "1440": "living assets mainnet", + "1559": "tenet", + "1975": "onus", + "2000": "dogechain", + "2222": "kava", + "2332": "soma", + "4337": "beam", + "4689": "iotex", + "5000": "mantle", + "5050": "xlc", + "5551": "nahmii", + "6969": "tombchain", + "7700": "canto", + "8217": "klaytn", + "8453": "base", + "8899": "jbc", + "9001": "evmos", + "9790": "carbon", + "10000": "smartbch", + "15551": "loop", + "17777": "eos_evm", + "32520": "bitgert", + "32659": "fusion", + "32769": "zilliqa", + "42161": "arbitrum", + "42170": "arbitrum_nova", + "42220": "celo", + "42262": "oasis", + "43114": "avalanche", + "47805": "rei", + "55555": "reichain", + "59144": "linea", + "71402": "godwoken", + "333999": "polis", + "420420": "kekchain", + "888888": "vision", + "245022934": "neon", + "1313161554": "aurora", + "1666600000": "harmony", + "11297108109": "palm", + "836542336838601": "curio" +} as const; + +export const networks = { + "ethereum": 1, + "ubiq": 8, + "optimism": 10, + "songbird": 19, + "elastos": 20, + "kardiachain": 24, + "cronos": 25, + "rsk": 30, + "telos": 40, + "xdc": 50, + "csc": 52, + "zyx": 55, + "binance": 56, + "syscoin": 57, + "gochain": 60, + "ethereumclassic": 61, + "okexchain": 66, + "hoo": 70, + "meter": 82, + "nova network": 87, + "viction": 88, + "xdai": 100, + "velas": 106, + "thundercore": 108, + "fuse": 122, + "heco": 128, + "polygon": 137, + "shimmer_evm": 148, + "manta": 169, + "xdaiarb": 200, + "op_bnb": 204, + "energyweb": 246, + "oasys": 248, + "fantom": 250, + "hpb": 269, + "boba": 288, + "omax": 311, + "filecoin": 314, + "kucoin": 321, + "era": 324, + "shiden": 336, + "theta": 361, + "pulse": 369, + "sx": 416, + "areon": 463, + "candle": 534, + "rollux": 570, + "astar": 592, + "callisto": 820, + "wanchain": 888, + "conflux": 1030, + "metis": 1088, + "polygon_zkevm": 1101, + "core": 1116, + "ultron": 1231, + "step": 1234, + "moonbeam": 1284, + "moonriver": 1285, + "living assets mainnet": 1440, + "tenet": 1559, + "onus": 1975, + "dogechain": 2000, + "kava": 2222, + "soma": 2332, + "beam": 4337, + "iotex": 4689, + "mantle": 5000, + "xlc": 5050, + "nahmii": 5551, + "tombchain": 6969, + "canto": 7700, + "klaytn": 8217, + "base": 8453, + "jbc": 8899, + "evmos": 9001, + "carbon": 9790, + "smartbch": 10000, + "loop": 15551, + "eos_evm": 17777, + "bitgert": 32520, + "fusion": 32659, + "zilliqa": 32769, + "arbitrum": 42161, + "arbitrum_nova": 42170, + "celo": 42220, + "oasis": 42262, + "avalanche": 43114, + "rei": 47805, + "reichain": 55555, + "linea": 59144, + "godwoken": 71402, + "polis": 333999, + "kekchain": 420420, + "vision": 888888, + "neon": 245022934, + "aurora": 1313161554, + "harmony": 1666600000, + "palm": 11297108109, + "curio": 836542336838601 +} as const; diff --git a/types/handler.ts b/types/handler.ts index 5815c63..bd3a281 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -1,5 +1,6 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { ChainId, networkCurrencies, networkExplorers, networkIds, networkNames, networkRpcs, tokens } from "./constants"; +import { networkCurrencies, networkExplorers, networkRpcs } from "./constants"; +import { chainIds, networks } from "./dynamic"; export type ValidBlockData = { jsonrpc: string; @@ -30,8 +31,8 @@ export type HandlerInterface = { }; export type HandlerConstructorConfig = { - networkId: number; - networkName: string | null; + networkId: ChainId; + networkName: ChainName | null; networkRpcs: string[] | null; autoStorage: boolean | null; cacheRefreshCycles: number | null; @@ -40,13 +41,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; -}; +export type ChainIds = { + -readonly [Key in keyof typeof chainIds]: typeof chainIds[Key] +} +export type ChainNames = { + -readonly [Key in keyof typeof networks]: typeof networks[Key] +} + +export type ChainName = ChainIds[keyof ChainIds] | (string & {}) +export type ChainId = ChainNames[keyof ChainNames] | (string & {}) + diff --git a/types/rpc-handler.ts b/types/rpc-handler.ts index f3b7ba1..ba8b583 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, networkNames, networkIds } from "./constants"; +import { HandlerInterface, HandlerConstructorConfig, ChainId, ChainName } 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: ChainId; + private _networkName: ChainName; private _env: string = "node"; private _rpcTimeout: number = Number.MAX_SAFE_INTEGER; // ms @@ -25,7 +25,7 @@ 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); } @@ -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; } From e461f39a87c45b427521e6c7c2d5945976a8376a Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sat, 15 Jun 2024 16:13:33 +0100 Subject: [PATCH 02/14] chore: add some explorers --- types/constants.ts | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/types/constants.ts b/types/constants.ts index 4a0b3e7..020beab 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -21,8 +21,41 @@ export const networkCurrencies: Partial> = { export const networkExplorers: Partial> = { [networkNames.ethereum]: "https://etherscan.io", [networkNames.xdai]: "https://gnosisscan.io", - // [networkNames.Goerli]: "https://goerli.etherscan.io", - // [networkNames.Anvil]: "https://gnosisscan.io", + [networkNames.binance]: "https://bscscan.com", + [80002]: "https://amoy.polygonscan.com/", + [11155111]: "https://sepolia.etherscan.io/", + [23888]: "https://testnet.blastscan.io/", + [41]: "https://testnet.teloscan.io/", + [10200]: "https://gnosis-chiado.blockscout.com/", + [4002]: "https://testnet.ftmscan.com/", + [97]: "https://testnet.bscscan.com/", + [420]: "https://goerli-optimism.etherscan.io/", + [11155420]: "https://sepolia-optimism.etherscan.io/", + [10]: "https://optimism.blockscout.com/", + [42161]: "https://arbiscan.io/", + [25]: "https://cronoscan.com/", + [42220]: "https://celoscan.io/", + [167009]: "https://explorer.hekla.taiko.xyz/", + [167000]: "https://taikoscan.io/", + [84532]: "https://sepolia.basescan.org/", + [84531]: "https://goerli.basescan.org/", + + + + + + + + + + + + + + [31337]: "N/A", + + + }; export function getNetworkName(networkId: ChainId) { From a92c1095fa94520ebad5f2990fadce5f5f1c0aeb Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sat, 15 Jun 2024 17:04:52 +0100 Subject: [PATCH 03/14] chore: apply manual to base types --- types/constants.ts | 104 +++++++++++++++++++++++++++------------------ types/handler.ts | 31 +++++++++++++- 2 files changed, 91 insertions(+), 44 deletions(-) diff --git a/types/constants.ts b/types/constants.ts index 020beab..4396b47 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -1,4 +1,4 @@ -import { ChainId, ChainName, NativeToken } from "./handler"; +import { ChainId, ChainIds, ChainName, NativeToken } from "./handler"; import { chainIds, networks } from "./dynamic"; export const permit2Address = "0x000000000022D473030F116dDEE9F6B43aC78BA3"; @@ -8,54 +8,67 @@ export const LOCAL_HOST = "http://127.0.0.1:8545"; declare const extraRpcs: Record; export const networkRpcs: Record = extraRpcs; -export const networkIds: Record = { ...chainIds }; -export const networkNames: Record = { ...networks }; +export const networkIds: Record = { + ...{ ...chainIds }, // removing readonly + 80002: "amoy", + 11155111: "sepolia", + 41: "telos-testnet", + 10200: "chiado", + 4002: "fantom-testnet", + 97: "bsc-testnet", + 11155420: "sepolia-optimism", + 167009: "hekla", + 84532: "sepolia-base", + 43113: "fuji", + 199: "bittorrent-mainnet", + 1028: "bittorrent-testnet", +}; -export const networkCurrencies: Partial> = { - [networkNames.ethereum]: { symbol: "ETH", decimals: 18 }, - [networkNames.xdai]: { symbol: "XDAI", decimals: 18 }, - // [networkNames.Anvil]: { symbol: "XDAI", decimals: 18 }, - // [networkNames.Goerli]: { symbol: "GoerliETH", decimals: 18 }, +export const networkNames: Record = { + ...{ ...networks }, // removing readonly + "amoy": 80002, + "sepolia": 11155111, + "telos-testnet": 41, + "chiado": 10200, + "fantom-testnet": 4002, + "bsc-testnet": 97, + "sepolia-optimism": 11155420, + "hekla": 167009, + "sepolia-base": 84532, + "fuji": 43113, + bittorrent: 199, + donau: 1028, }; export const networkExplorers: Partial> = { [networkNames.ethereum]: "https://etherscan.io", [networkNames.xdai]: "https://gnosisscan.io", + [networkNames.arbitrum]: "https://arbiscan.io/", [networkNames.binance]: "https://bscscan.com", - [80002]: "https://amoy.polygonscan.com/", - [11155111]: "https://sepolia.etherscan.io/", - [23888]: "https://testnet.blastscan.io/", - [41]: "https://testnet.teloscan.io/", - [10200]: "https://gnosis-chiado.blockscout.com/", - [4002]: "https://testnet.ftmscan.com/", - [97]: "https://testnet.bscscan.com/", - [420]: "https://goerli-optimism.etherscan.io/", - [11155420]: "https://sepolia-optimism.etherscan.io/", - [10]: "https://optimism.blockscout.com/", - [42161]: "https://arbiscan.io/", - [25]: "https://cronoscan.com/", - [42220]: "https://celoscan.io/", - [167009]: "https://explorer.hekla.taiko.xyz/", - [167000]: "https://taikoscan.io/", - [84532]: "https://sepolia.basescan.org/", - [84531]: "https://goerli.basescan.org/", - - - - - - - - - - - - - - [31337]: "N/A", - - - + [networkNames.polygon]: "https://polygonscan.com", + [networkNames.avalanche]: "https://snowtrace.io/", + [networkNames.blast]: "https://testnet.blastscan.io/", + [networkNames.optimism]: "hhttps://optimistic.etherscan.io/", + [networkNames.cronos]: "https://cronoscan.com/", + [networkNames.celo]: "https://celoscan.io/", + [networkNames.taiko]: "https://taikoscan.io/", + [networkNames.base]: "https://basescan.org/", + [networkNames.fantom]: "https://ftmscan.com/", + [networkNames.bttc]: "https://bttcscan.com/", + [networkNames.heco]: "https://hecoinfo.com/", + // testnets + [networkNames.fuji]: "https://testnet.snowtrace.io/", + [networkNames.amoy]: "https://amoy.polygonscan.com/", + [networkNames.sepolia]: "https://sepolia.etherscan.io/", + [networkNames["telos-testnet"]]: "https://testnet.teloscan.io/", + [networkNames.chiado]: "https://gnosis-chiado.blockscout.com/", + [networkNames["fantom-testnet"]]: "https://testnet.ftmscan.com/", + [networkNames["bsc-testnet"]]: "https://testnet.bscscan.com/", + [networkNames["sepolia-optimism"]]: "https://sepolia-optimism.etherscan.io/", + [networkNames.hekla]: "https://explorer.hekla.taiko.xyz/", + [networkNames["sepolia-base"]]: "https://sepolia.basescan.org/", + [networkNames["fantom-testnet"]]: "https://testnet.ftmscan.com/", + [networkNames.donau]: "https://testnet.bttcscan.com/", }; export function getNetworkName(networkId: ChainId) { @@ -74,6 +87,13 @@ export function getNetworkId(networkName: ChainName) { return networkId ?? 0; } +// export const networkCurrencies: Record = { +// [networkNames.ethereum]: { symbol: "ETH", decimals: 18 }, +// [networkNames.xdai]: { symbol: "XDAI", decimals: 18 }, +// // [networkNames.Anvil]: { symbol: "XDAI", decimals: 18 }, +// // [networkNames.Goerli]: { symbol: "GoerliETH", decimals: 18 }, +// }; + // export const tokens: Record> = { // [networkNames.ethereum]: { // DAI: { diff --git a/types/handler.ts b/types/handler.ts index bd3a281..b843356 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -51,6 +51,33 @@ export type ChainNames = { -readonly [Key in keyof typeof networks]: typeof networks[Key] } -export type ChainName = ChainIds[keyof ChainIds] | (string & {}) -export type ChainId = ChainNames[keyof ChainNames] | (string & {}) +export type ChainName = ChainIds[keyof ChainIds] | + "amoy" | + "sepolia" | + "telos-testnet" | + "chiado" | + "fantom-testnet" | + "bsc-testnet" | + "sepolia-optimism" | + "hekla" | + "sepolia-base" | + "fuji" | + "bittorrent" | + "donau" | + (string & {}) + +export type ChainId = ChainNames[keyof ChainNames] | + 80002 | + 11155111 | + 41 | + 10200 | + 4002 | + 97 | + 11155420 | + 167009 | + 84532 | + 43113 | + 199 | + 1028 | + (number & {}) From 5ebe24a290ed05d1258a1cef47442d6eac15ce77 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sat, 15 Jun 2024 17:25:30 +0100 Subject: [PATCH 04/14] chore: add more explorers --- types/constants.ts | 38 +++++++++++++++++++++++++++++++++++--- types/handler.ts | 16 ++++++++++++++++ 2 files changed, 51 insertions(+), 3 deletions(-) diff --git a/types/constants.ts b/types/constants.ts index 4396b47..eebf54c 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -20,8 +20,16 @@ export const networkIds: Record = { 167009: "hekla", 84532: "sepolia-base", 43113: "fuji", - 199: "bittorrent-mainnet", - 1028: "bittorrent-testnet", + 199: "bittorrent", + 1028: "donau", + 1442: "polygon_zkevm_testnet", + 255: "kroma", + 2358: "kroma-sepolia", + 59141: "linea-sepolia", + 534351: "scroll-sepolia", + 534352: "scroll", + 167000: "taiko", + 338: "cronos-testnet", }; export const networkNames: Record = { @@ -38,6 +46,14 @@ export const networkNames: Record = { "fuji": 43113, bittorrent: 199, donau: 1028, + polygon_zkevm_testnet: 1442, + kroma: 255, + "kroma-sepolia": 2358, + "linea-sepolia": 59141, + "scroll-sepolia": 534351, + "scroll": 534352, + "taiko": 167000, + "cronos-testnet": 338, }; export const networkExplorers: Partial> = { @@ -54,9 +70,23 @@ export const networkExplorers: Partial> = { [networkNames.taiko]: "https://taikoscan.io/", [networkNames.base]: "https://basescan.org/", [networkNames.fantom]: "https://ftmscan.com/", - [networkNames.bttc]: "https://bttcscan.com/", [networkNames.heco]: "https://hecoinfo.com/", + [networkNames.polygon_zkevm]: "https://zkevm.polygonscan.com/", + [networkNames.bittorrent]: "https://bttcscan.com/", + [networkNames.kroma]: "https://kromascan.com/", + [networkNames.linea]: "https://lineascan.build/", + [networkNames.moonbeam]: "https://moonbeam.moonscan.io/", + [networkNames.moonriver]: "https://moonriver.moonscan.io/", + [networkNames.arbitrum_nova]: "https://nova.arbiscan.io/", + [networkNames.scroll]: "https://scrollscan.com/", + [networkNames.taiko]: "https://taikoscan.io/", + + // testnets + [networkNames.scroll_sepolia]: "https://sepolia.scrollscan.com/", + [networkNames["linea-sepolia"]]: "https://sepolia.lineascan.build/", + [networkNames.polygon_zkevm_testnet]: "https://cardona-zkevm.polygonscan.com/", + [networkNames["kroma-sepolia"]]: "https://sepolia-kromascan.com/", [networkNames.fuji]: "https://testnet.snowtrace.io/", [networkNames.amoy]: "https://amoy.polygonscan.com/", [networkNames.sepolia]: "https://sepolia.etherscan.io/", @@ -69,6 +99,8 @@ export const networkExplorers: Partial> = { [networkNames["sepolia-base"]]: "https://sepolia.basescan.org/", [networkNames["fantom-testnet"]]: "https://testnet.ftmscan.com/", [networkNames.donau]: "https://testnet.bttcscan.com/", + [networkNames["cronos-testnet"]]: "https://explorer.cronos.org/testnet/", + [networkNames["polygon_zkevm_testnet"]]: "https://testnet-zkevm.polygonscan.com/", }; export function getNetworkName(networkId: ChainId) { diff --git a/types/handler.ts b/types/handler.ts index b843356..a6752d7 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -64,6 +64,14 @@ export type ChainName = ChainIds[keyof ChainIds] | "fuji" | "bittorrent" | "donau" | + "polygon_zkevm_testnet" | + "kroma" | + "kroma-sepolia" | + "linea-sepolia" | + "scroll" | + "scroll-sepolia" | + "taiko" | + "cronos-testnet" | (string & {}) export type ChainId = ChainNames[keyof ChainNames] | @@ -79,5 +87,13 @@ export type ChainId = ChainNames[keyof ChainNames] | 43113 | 199 | 1028 | + 1442 | + 255 | + 2358 | + 59141 | + 534352 | + 534351 | + 167000 | + 338 | (number & {}) From 73fe80abfac64c599160852999b0a7d261b6d09b Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sat, 15 Jun 2024 20:04:39 +0100 Subject: [PATCH 05/14] chore: tests, no more build injection --- build/esbuild-build-tests.ts | 13 - build/esbuild-build.ts | 13 - build/types.ts | 14 +- package.json | 6 +- tests/constants.test.ts | 122 ++++ types/constants.ts | 91 ++- types/dynamic.ts | 1259 ++++++++++++++++++++++++++++++++++ types/handler.ts | 8 + 8 files changed, 1474 insertions(+), 52 deletions(-) create mode 100644 tests/constants.test.ts diff --git a/build/esbuild-build-tests.ts b/build/esbuild-build-tests.ts index 7c21631..4240194 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"; 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() { @@ -62,7 +50,6 @@ async function buildIndex() { bundle: true, format: "cjs", outfile: "dist/index.js", - define: createEnvDefines({ extraRpcs, chainIDList }), }); console.log("Index build complete."); diff --git a/build/esbuild-build.ts b/build/esbuild-build.ts index 3c90541..387a767 100644 --- a/build/esbuild-build.ts +++ b/build/esbuild-build.ts @@ -1,26 +1,14 @@ 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"; 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() { @@ -76,7 +64,6 @@ async function buildIndex() { bundle: true, format: "cjs", outfile: "dist/index.js", - define: createEnvDefines({ extraRpcs, chainIDList }), }); console.log("Index build complete."); diff --git a/build/types.ts b/build/types.ts index 231433a..59d9cbc 100644 --- a/build/types.ts +++ b/build/types.ts @@ -1,10 +1,12 @@ import { appendFile, writeFile } from 'fs/promises'; -import * as chainIdList from '../lib/chainlist/constants/chainIds.json'; +import chainIdList from '../lib/chainlist/constants/chainIds.json'; +import chainlist from "../lib/chainlist/constants/extraRpcs"; /** * This produces dynamic types and constants for: * - networkIds * - networkNames + * - extraRpcs */ async function createDynamicTypes() { const idToNetwork: Record = {}; @@ -17,6 +19,15 @@ async function createDynamicTypes() { idToNetwork[networkId] = name; networkToId[name] = networkId; } + const extraRpcs: Record = {}; + + 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://")); + }); + // Clear the file await writeFile('types/dynamic.ts', ''); @@ -24,6 +35,7 @@ async function createDynamicTypes() { await appendFile('types/dynamic.ts', `\nexport const chainIds = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); await appendFile('types/dynamic.ts', `\nexport const networks = ${JSON.stringify(networkToId, null, 2)} as const;\n`); + await appendFile('types/dynamic.ts', `\nexport const extraRpcs = ${JSON.stringify(extraRpcs, null, 2)};\n`); } (async () => { diff --git a/package.json b/package.json index 78d4213..e9cac70 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,8 @@ "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", + "build:tests": "tsx build/types.ts && tsx build/esbuild-build-tests.ts && tsc --emitDeclarationOnly --declaration --project tsconfig.tests.json", + "build": "rm -rf dist && tsx build/types.ts && tsx build/esbuild-build.ts ", "postbuild": "yarn build:types", "postinstall": "git submodule update --init --recursive", "test": "rm -rf dist && yarn build:tests && jest" @@ -87,4 +87,4 @@ ] }, "packageManager": "yarn@4.2.2" -} +} \ No newline at end of file diff --git a/tests/constants.test.ts b/tests/constants.test.ts new file mode 100644 index 0000000..de1b879 --- /dev/null +++ b/tests/constants.test.ts @@ -0,0 +1,122 @@ +import { getNetworkId, getNetworkName, networkCurrencies, networkExplorers, networkIds, networkNames } from "../types/constants" +import { ChainId, ChainName, NativeToken, ChainIds, ChainNames } 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 = 12345; + const expectedNetworkName = "Unknown Network"; + const result = getNetworkName(networkId as ChainId); + 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 ChainName); + 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 networkIdKeys = Object.keys(networkIds) + .map(Number) + .sort((a, b) => a - b) + + const networkNameKeys = Object.keys(networkNames) + .sort((a, b) => a.localeCompare(b)); + const networkNameValues = Object.values(networkNames) + .sort((a, b) => a - b); + + // keys of networkIds are the values of networkNames + expect(networkNameKeys).toEqual(networkIdValues); + // values of networkIds are the keys of networkNames + expect(networkIdKeys).toEqual(networkNameValues); + + netIds.forEach((networkId) => { + const networkName = networkIds[networkId]; + expect(networkName).toBe(expectedName[networkId]); + }); + }); + }); + + const netIds = [ + 1, 100, 56, 80002, 137, 25 + ] as ChainId[]; + + const expected = { + 1: "https://etherscan.io/", + 100: "https://gnosisscan.io/", + 56: "https://bscscan.com/", + 80002: "https://amoy.polygonscan.com/", + 137: "https://polygonscan.com/", + 25: "https://cronoscan.com/" + } as Partial>; + + const expectedName = { + 1: "ethereum", + 100: "xdai", + 56: "binance", + 80002: "amoy", + 137: "polygon", + 25: "cronos", + } as Partial>; + + const expectedNative = { + 1: { symbol: "ETH", decimals: 18 }, + 100: { symbol: "XDAI", decimals: 18 }, + 56: { symbol: "BNB", decimals: 18 }, + 80002: { symbol: "MATIC", decimals: 18 }, + 137: { symbol: "MATIC", decimals: 18 }, + 25: { symbol: "CRO", decimals: 18 } + } 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 networkName = getNetworkName(networkId as ChainId); + const result = networkExplorers[networkId]; + expect(result).toBe(expected[networkId]); + expect(networkName).toBe(expectedName[networkId]); + }); + }); + }); + +}); \ No newline at end of file diff --git a/types/constants.ts b/types/constants.ts index eebf54c..1f0dd3c 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -1,15 +1,12 @@ -import { ChainId, ChainIds, ChainName, NativeToken } from "./handler"; -import { chainIds, networks } from "./dynamic"; +import { ChainId, ChainIds, ChainName, ChainNames, NativeToken } from "./handler"; +import { chainIds, networks, extraRpcs } from "./dynamic"; export const permit2Address = "0x000000000022D473030F116dDEE9F6B43aC78BA3"; export const nftAddress = "0xAa1bfC0e51969415d64d6dE74f27CDa0587e645b"; export const LOCAL_HOST = "http://127.0.0.1:8545"; -declare const extraRpcs: Record; - -export const networkRpcs: Record = extraRpcs; export const networkIds: Record = { - ...{ ...chainIds }, // removing readonly + ...{ ...chainIds as ChainIds }, // removing readonly 80002: "amoy", 11155111: "sepolia", 41: "telos-testnet", @@ -30,10 +27,14 @@ export const networkIds: Record = { 534352: "scroll", 167000: "taiko", 338: "cronos-testnet", + 23888: "blast-testnet", + 238: "blast", + 31337: "anvil", + 1337: "hardhat", }; export const networkNames: Record = { - ...{ ...networks }, // removing readonly + ...{ ...networks as ChainNames }, // removing readonly "amoy": 80002, "sepolia": 11155111, "telos-testnet": 41, @@ -54,14 +55,26 @@ export const networkNames: Record = { "scroll": 534352, "taiko": 167000, "cronos-testnet": 338, + "blast-testnet": 23888, + blast: 238, + anvil: 31337, + hardhat: 1337, }; -export const networkExplorers: Partial> = { - [networkNames.ethereum]: "https://etherscan.io", - [networkNames.xdai]: "https://gnosisscan.io", +export const networkRpcs = Object.fromEntries( + Object.entries(networkNames).map(([_, value]) => { + const chainRpcs = extraRpcs[value as unknown as keyof typeof extraRpcs]; + return [value, chainRpcs] as [ChainId, string[]]; + }) +) as Record; + +// @ts-expect-error - not all networks are covered +export const networkExplorers: Record = { + [networkNames.ethereum]: "https://etherscan.io/", + [networkNames.xdai]: "https://gnosisscan.io/", [networkNames.arbitrum]: "https://arbiscan.io/", - [networkNames.binance]: "https://bscscan.com", - [networkNames.polygon]: "https://polygonscan.com", + [networkNames.binance]: "https://bscscan.com/", + [networkNames.polygon]: "https://polygonscan.com/", [networkNames.avalanche]: "https://snowtrace.io/", [networkNames.blast]: "https://testnet.blastscan.io/", [networkNames.optimism]: "hhttps://optimistic.etherscan.io/", @@ -81,9 +94,8 @@ export const networkExplorers: Partial> = { [networkNames.scroll]: "https://scrollscan.com/", [networkNames.taiko]: "https://taikoscan.io/", - // testnets - [networkNames.scroll_sepolia]: "https://sepolia.scrollscan.com/", + [networkNames["scroll-sepolia"]]: "https://sepolia.scrollscan.com/", [networkNames["linea-sepolia"]]: "https://sepolia.lineascan.build/", [networkNames.polygon_zkevm_testnet]: "https://cardona-zkevm.polygonscan.com/", [networkNames["kroma-sepolia"]]: "https://sepolia-kromascan.com/", @@ -103,6 +115,48 @@ export const networkExplorers: Partial> = { [networkNames["polygon_zkevm_testnet"]]: "https://testnet-zkevm.polygonscan.com/", }; +export const networkCurrencies: Partial> = { + [networkNames.ethereum]: { symbol: "ETH", decimals: 18 }, + [networkNames.xdai]: { symbol: "XDAI", decimals: 18 }, + [networkNames.binance]: { symbol: "BNB", decimals: 18 }, + [networkNames.polygon]: { symbol: "MATIC", decimals: 18 }, + [networkNames.avalanche]: { symbol: "AVAX", decimals: 18 }, + [networkNames.blast]: { symbol: "BLAST", decimals: 18 }, + [networkNames.optimism]: { symbol: "ETH", decimals: 18 }, + [networkNames.cronos]: { symbol: "CRO", decimals: 18 }, + [networkNames.celo]: { symbol: "CELO", decimals: 18 }, + [networkNames.base]: { symbol: "BASE", decimals: 18 }, + [networkNames.fantom]: { symbol: "FTM", decimals: 18 }, + [networkNames.heco]: { symbol: "HT", decimals: 18 }, + [networkNames.polygon_zkevm]: { symbol: "MATIC", decimals: 18 }, + [networkNames.bittorrent]: { symbol: "BTT", decimals: 18 }, + [networkNames.donau]: { symbol: "XDAI", decimals: 18 }, + [networkNames.kroma]: { symbol: "ETH", decimals: 18 }, + [networkNames.linea]: { symbol: "ETH", decimals: 18 }, + [networkNames.moonbeam]: { symbol: "GLMR", decimals: 18 }, + [networkNames.moonriver]: { symbol: "MOVR", decimals: 18 }, + [networkNames.arbitrum_nova]: { symbol: "ETH", decimals: 18 }, + [networkNames.scroll]: { symbol: "ETH", decimals: 18 }, + [networkNames.fuji]: { symbol: "AVAX", decimals: 18 }, + [networkNames.amoy]: { symbol: "MATIC", decimals: 18 }, + [networkNames.sepolia]: { symbol: "ETH", decimals: 18 }, + [networkNames.taiko]: { symbol: "ETH", decimals: 18 }, + [networkNames.chiado]: { symbol: "XDAI", decimals: 18 }, + [networkNames.hekla]: { symbol: "ETH", decimals: 18 }, + [networkNames.donau]: { symbol: "XDAI", decimals: 18 }, + [networkNames["scroll-sepolia"]]: { symbol: "ETH", decimals: 18 }, + [networkNames["linea-sepolia"]]: { symbol: "ETH", decimals: 18 }, + [networkNames["kroma-sepolia"]]: { symbol: "ETH", decimals: 18 }, + [networkNames["telos-testnet"]]: { symbol: "TLOS", decimals: 18 }, + [networkNames["fantom-testnet"]]: { symbol: "FTM", decimals: 18 }, + [networkNames["bsc-testnet"]]: { symbol: "BNB", decimals: 18 }, + [networkNames["sepolia-optimism"]]: { symbol: "ETH", decimals: 18 }, + [networkNames["sepolia-base"]]: { symbol: "ETH", decimals: 18 }, + [networkNames["fantom-testnet"]]: { symbol: "FTM", decimals: 18 }, + [networkNames["cronos-testnet"]]: { symbol: "CRO", decimals: 18 }, + [networkNames["polygon_zkevm_testnet"]]: { symbol: "MATIC", decimals: 18 }, +}; + export function getNetworkName(networkId: ChainId) { const networkName = networkIds[networkId]; if (!networkName) { @@ -116,16 +170,9 @@ export function getNetworkId(networkName: ChainName) { if (!networkId) { console.error(`Unknown network name: ${networkName}`); } - return networkId ?? 0; + return networkId ?? -1; } -// export const networkCurrencies: Record = { -// [networkNames.ethereum]: { symbol: "ETH", decimals: 18 }, -// [networkNames.xdai]: { symbol: "XDAI", decimals: 18 }, -// // [networkNames.Anvil]: { symbol: "XDAI", decimals: 18 }, -// // [networkNames.Goerli]: { symbol: "GoerliETH", decimals: 18 }, -// }; - // export const tokens: Record> = { // [networkNames.ethereum]: { // DAI: { diff --git a/types/dynamic.ts b/types/dynamic.ts index c93af36..7a28b6d 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -202,3 +202,1262 @@ export const networks = { "palm": 11297108109, "curio": 836542336838601 } as const; + +export const extraRpcs = { + "1": [ + "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.notadegen.com/eth", + "https://eth.llamarpc.com", + "https://endpoints.omniatech.io/v1/eth/mainnet/public", + "https://go.getblock.io/d7dab8149ec04390aaa923ff2768f914", + "https://ethereum-rpc.publicnode.com", + "https://1rpc.io/eth", + "https://rpc.builder0x69.io/", + "https://rpc.mevblocker.io", + "https://rpc.flashbots.net/", + "https://eth-pokt.nodies.app", + "https://rpc.payload.de", + "https://api.zmok.io/mainnet/oaen6dy8ff6hju9k", + "https://eth.meowrpc.com", + "https://eth.drpc.org", + "https://eth.merkle.io", + "https://rpc.lokibuilder.xyz/wallet", + "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" + ], + "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://endpoints.omniatech.io/v1/eth/goerli/public", + "https://ethereum-goerli-rpc.publicnode.com", + "https://rpc.tornadoeth.cash/goerli" + ], + "6": [ + "https://www.ethercluster.com/kotti" + ], + "7": [ + "https://rpc.dome.cloud" + ], + "8": [ + "https://rpc.octano.dev" + ], + "10": [ + "https://mainnet.optimism.io/", + "https://optimism.llamarpc.com", + "https://1rpc.io/op", + "https://op-pokt.nodies.app", + "https://endpoints.omniatech.io/v1/op/mainnet/public", + "https://optimism-rpc.publicnode.com", + "https://optimism.meowrpc.com", + "https://optimism.drpc.org", + "https://api.stateless.solutions/optimism/v1/f373feb1-c8e4-41c9-bb74-2c691988dd34", + "https://rpc.tornadoeth.cash/optimism" + ], + "11": [ + "https://api.metadium.com/dev" + ], + "14": [], + "15": [ + "https://prenet.diode.io:8443/" + ], + "17": [ + "https://rpc.thaifi.com" + ], + "19": [ + "https://songbird.towolabs.com/rpc" + ], + "20": [ + "https://api.elastos.io/esc", + "https://api.trinity-tech.io/esc" + ], + "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-evm-rpc.publicnode.com", + "https://1rpc.io/cro" + ], + "27": [ + "https://rpc.shibachain.net" + ], + "29": [ + "https://rpc.genesisl1.org" + ], + "30": [ + "https://public-node.rsk.co" + ], + "33": [ + "https://rpc.goodata.io" + ], + "35": [ + "https://rpc.tbwg.io" + ], + "38": [ + "https://rpc.valorbit.com/v2" + ], + "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" + ], + "44": [], + "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" + ], + "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/" + ], + "55": [ + "https://rpc-1.zyx.network/", + "https://rpc-2.zyx.network/", + "https://rpc-3.zyx.network/", + "https://rpc-5.zyx.network/" + ], + "56": [ + "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://bscrpc.com", + "https://bsc.rpcgator.com/", + "https://bsc-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", + "https://nodes.vefinetwork.org/smartchain", + "https://binance.llamarpc.com", + "https://endpoints.omniatech.io/v1/bsc/mainnet/public", + "https://bsc-pokt.nodies.app", + "https://1rpc.io/bnb", + "https://bsc-rpc.publicnode.com", + "https://bsc.meowrpc.com", + "https://bsc.drpc.org", + "https://rpc.polysplit.cloud/v1/chain/56", + "https://rpc.tornadoeth.cash/bsc" + ], + "57": [ + "https://rpc.syscoin.org", + "https://syscoin-evm-rpc.publicnode.com" + ], + "58": [ + "https://dappnode1.ont.io:10339", + "https://dappnode2.ont.io:10339", + "https://dappnode3.ont.io:10339", + "https://dappnode4.ont.io:10339" + ], + "59": [ + "https://api.eosargentina.io", + "https://api.metahub.cash" + ], + "60": [ + "https://rpc.gochain.io" + ], + "61": [ + "https://etc.mytokenpocket.vip", + "https://rpc.etcinscribe.com", + "https://etc.etcdesktop.com", + "https://etc.rivet.link" + ], + "62": [ + "https://www.ethercluster.com/morden" + ], + "63": [ + "https://rpc.mordor.etccooperative.org" + ], + "64": [], + "66": [ + "https://exchainrpc.okex.org", + "https://1rpc.io/oktc" + ], + "68": [], + "70": [ + "https://http-mainnet.hoosmartchain.com" + ], + "74": [ + "https://idchain.one/rpc/" + ], + "76": [], + "77": [ + "https://sokol.poa.network" + ], + "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/" + ], + "80": [], + "82": [ + "https://rpc.meter.io" + ], + "86": [ + "https://evm.gatenode.cc" + ], + "87": [ + "https://rpc.novanetwork.io:9070", + "https://dev.rpc.novanetwork.io/" + ], + "88": [ + "https://rpc.tomochain.com" + ], + "90": [ + "https://s0.garizon.net/rpc" + ], + "91": [ + "https://s1.garizon.net/rpc" + ], + "92": [ + "https://s2.garizon.net/rpc" + ], + "93": [ + "https://s3.garizon.net/rpc" + ], + "96": [ + "https://rpc.bitkubchain.io" + ], + "97": [ + "https://bsctestapi.terminet.io/rpc", + "https://endpoints.omniatech.io/v1/bsc/testnet/public", + "https://bsc-testnet-rpc.publicnode.com" + ], + "99": [ + "https://core.poanetwork.dev" + ], + "100": [ + "https://rpc.gnosischain.com", + "https://xdai-archive.blockscout.com", + "https://gnosis-pokt.nodies.app", + "https://gnosis.drpc.org", + "https://endpoints.omniatech.io/v1/gnosis/mainnet/public", + "https://gnosis-rpc.publicnode.com", + "https://1rpc.io/gnosis", + "https://rpc.tornadoeth.cash/gnosis" + ], + "101": [], + "106": [ + "https://evmexplorer.velas.com/rpc", + "https://velas-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf" + ], + "108": [ + "https://mainnet-rpc.thundercore.com" + ], + "111": [ + "https://rpc.etherlite.org" + ], + "119": [ + "https://evmapi.nuls.io", + "https://evmapi2.nuls.io" + ], + "122": [ + "https://rpc.fuse.io", + "https://fuse-pokt.nodies.app" + ], + "123": [ + "https://rpc.fusespark.io" + ], + "124": [], + "126": [ + "https://rpc.mainnet.oychain.io", + "https://rpc.oychain.io" + ], + "127": [], + "128": [ + "https://http-mainnet.hecochain.com", + "https://http-mainnet-node.huobichain.com", + "https://hecoapi.terminet.io/rpc" + ], + "131": [ + "https://tokioswift.engram.tech", + "https://tokio-archive.engram.tech" + ], + "137": [ + "https://rpc-mainnet.maticvigil.com", + "https://polygon-rpc.com", + "https://rpc-mainnet.matic.network", + "https://matic-mainnet-full-rpc.bwarelabs.com", + "https://matic-mainnet-archive-rpc.bwarelabs.com", + "https://polygonapi.terminet.io/rpc", + "https://polygon-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", + "https://polygon-mainnet-public.unifra.io", + "https://polygon.llamarpc.com", + "https://endpoints.omniatech.io/v1/matic/mainnet/public", + "https://polygon-pokt.nodies.app", + "https://1rpc.io/matic", + "https://polygon-bor-rpc.publicnode.com", + "https://polygon.drpc.org", + "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" + ], + "142": [ + "https://rpc.prodax.io" + ], + "163": [ + "https://node.mainnet.lightstreams.io" + ], + "167": [ + "https://node.atoshi.io", + "https://node2.atoshi.io", + "https://node3.atoshi.io" + ], + "169": [ + "https://pacific-rpc.manta.network/http", + "https://1rpc.io/manta" + ], + "186": [ + "https://rpc.seelen.pro/" + ], + "188": [ + "https://mainnet.bmcchain.com/" + ], + "195": [], + "199": [ + "https://rpc.bittorrentchain.io/" + ], + "200": [ + "https://arbitrum.xdaichain.com" + ], + "204": [ + "https://opbnb-rpc.publicnode.com", + "https://1rpc.io/opbnb" + ], + "211": [], + "217": [ + "https://rpc2.siriusnet.io" + ], + "222": [ + "https://blockchain-api-mainnet.permission.io/rpc" + ], + "246": [ + "https://rpc.energyweb.org" + ], + "248": [ + "https://oasys-mainnet.gateway.pokt.network/v1/lb/c967bd31", + "https://oasys-mainnet-archival.gateway.pokt.network/v1/lb/c967bd31" + ], + "250": [ + "https://rpcapi.fantom.network", + "https://rpc.ftm.tools/", + "https://rpc.fantom.network", + "https://rpc2.fantom.network", + "https://rpc3.fantom.network", + "https://endpoints.omniatech.io/v1/fantom/mainnet/public", + "https://fantom-pokt.nodies.app", + "https://1rpc.io/ftm", + "https://fantom-rpc.publicnode.com", + "https://fantom.drpc.org" + ], + "255": [ + "https://1rpc.io/kroma" + ], + "256": [ + "https://hecotestapi.terminet.io/rpc" + ], + "258": [], + "262": [ + "https://sur.nilin.org" + ], + "288": [ + "https://mainnet.boba.network/", + "https://1rpc.io/boba/eth" + ], + "300": [], + "311": [ + "https://mainapi.omaxray.com/" + ], + "314": [ + "https://api.node.glif.io", + "https://node.filutils.com/rpc/v1", + "https://api.chain.love/rpc/v1" + ], + "321": [ + "https://rpc-mainnet.kcc.network", + "https://kcc.mytokenpocket.vip", + "https://kcc-rpc.com" + ], + "324": [ + "https://zksync.meowrpc.com", + "https://zksync.drpc.org", + "https://1rpc.io/zksync2-era" + ], + "333": [], + "336": [ + "https://rpc.shiden.astar.network:8545/" + ], + "338": [ + "https://evm-t3.cronos.org/" + ], + "361": [ + "https://eth-rpc-api.thetatoken.org/rpc" + ], + "369": [ + "https://rpc.pulsechain.com", + "https://rpc-pulsechain.g4mm4.io", + "https://evex.cloud/pulserpc", + "https://pulse-s.projectpi.xyz", + "https://pulsechain-rpc.publicnode.com" + ], + "385": [], + "416": [ + "https://rpc.sx.technology" + ], + "420": [ + "https://endpoints.omniatech.io/v1/op/goerli/public", + "https://optimism-goerli-rpc.publicnode.com" + ], + "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" + ], + "499": [], + "512": [ + "https://rpc.acuteangle.com" + ], + "530": [ + "https://fx-json-web3.portfolio-x.xyz:8545/" + ], + "555": [ + "https://rpc.velaverse.io" + ], + "558": [ + "https://rpc.tao.network" + ], + "570": [ + "https://rpc.rollux.com", + "https://rollux.rpc.syscoin.org" + ], + "592": [ + "https://evm.astar.network/", + "https://rpc.astar.network:8545", + "https://getblock.io/nodes/bsc/", + "https://1rpc.io/astr" + ], + "595": [], + "686": [ + "https://eth-rpc-karura.aca-staging.network", + "https://rpc.evm.karura.network" + ], + "707": [], + "777": [ + "https://node.cheapeth.org/rpc" + ], + "787": [ + "https://eth-rpc-acala.aca-staging.network", + "https://rpc.evm.acala.network" + ], + "803": [], + "813": [ + "https://mainnet.meerlabs.com" + ], + "820": [ + "https://rpc.callisto.network", + "https://clo-geth.0xinfra.com/" + ], + "880": [], + "888": [ + "https://gwan-ssl.wandevs.org:56891", + "https://gwan2-ssl.wandevs.org" + ], + "943": [ + "https://pulsetest-s.projectpi.xyz", + "https://pulsechain-testnet-rpc.publicnode.com" + ], + "977": [], + "998": [], + "1001": [ + "https://public-en-baobab.klaytn.net" + ], + "1003": [], + "1010": [ + "https://meta.evrice.com" + ], + "1012": [ + "https://global.rpc.mainnet.newtonproject.org" + ], + "1022": [], + "1024": [ + "https://api-para.clover.finance" + ], + "1030": [ + "https://evm.confluxrpc.com", + "https://conflux-espace-public.unifra.io" + ], + "1072": [ + "https://json-rpc.evm.testnet.shimmer.network/" + ], + "1088": [ + "https://andromeda.metis.io/?owner=1088", + "https://metis-pokt.nodies.app" + ], + "1089": [ + "https://humans-mainnet-evm.itrocket.net" + ], + "1100": [ + "https://jsonrpc.dymension.nodestake.org", + "https://evm-archive.dymd.bitszn.com", + "https://dymension.liquify.com/json-rpc", + "https://dymension-evm.kynraze.com" + ], + "1101": [ + "https://1rpc.io/polygon/zkevm", + "https://polygon-zkevm.drpc.org" + ], + "1115": [ + "https://rpc.test.btcs.network" + ], + "1116": [ + "https://rpc.coredao.org", + "https://core.public.infstones.com", + "https://1rpc.io/core" + ], + "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/" + ], + "1139": [ + "https://mathchain.maiziqianbao.net/rpc" + ], + "1197": [], + "1202": [], + "1213": [ + "https://dataseed.popcateum.org" + ], + "1214": [], + "1231": [ + "https://ultron-rpc.net" + ], + "1246": [ + "https://rpc-cnx.omplatform.com" + ], + "1280": [ + "https://nodes.halo.land" + ], + "1284": [ + "https://rpc.api.moonbeam.network", + "https://1rpc.io/glmr", + "https://endpoints.omniatech.io/v1/moonbeam/mainnet/public", + "https://moonbeam-rpc.publicnode.com" + ], + "1285": [ + "https://moonriver-rpc.publicnode.com" + ], + "1287": [ + "https://rpc.testnet.moonbeam.network" + ], + "1288": [], + "1338": [ + "https://rpc.atlantischain.network/" + ], + "1339": [ + "https://rpc.elysiumchain.tech/", + "https://rpc.elysiumchain.us/" + ], + "1440": [], + "1442": [], + "1501": [ + "https://rpc-canary-1.bevm.io/", + "https://rpc-canary-2.bevm.io/" + ], + "1506": [ + "https://mainnet.sherpax.io/rpc" + ], + "1515": [ + "https://beagle.chat/eth" + ], + "1618": [ + "https://send.catechain.com" + ], + "1620": [], + "1657": [ + "https://dataseed1.btachain.com/" + ], + "1707": [ + "https://rpc.blockchain.or.th" + ], + "1708": [ + "https://rpc.testnet.blockchain.or.th" + ], + "1856": [], + "1881": [ + "https://rpc.cartenz.works" + ], + "1972": [ + "https://rpc2.redecoin.eu" + ], + "1975": [ + "https://rpc.onuschain.io" + ], + "1987": [], + "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" + ], + "2016": [ + "https://eu-rpc.mainnetz.io" + ], + "2021": [ + "https://mainnet2.edgewa.re/evm", + "https://mainnet3.edgewa.re/evm", + "https://edgeware-evm.jelliedowl.net/" + ], + "2025": [ + "https://mainnet.rangersprotocol.com/api/jsonrpc" + ], + "2049": [ + "https://msc-rpc.movoscan.com/" + ], + "2077": [], + "2100": [ + "https://api.ecoball.org/ecoball/" + ], + "2213": [ + "https://seed4.evanesco.org:8546" + ], + "2222": [ + "https://evm.kava.io", + "https://kava-evm-rpc.publicnode.com", + "https://kava-pokt.nodies.app" + ], + "2323": [], + "2332": [], + "2458": [], + "2468": [], + "2559": [], + "2612": [ + "https://api.ezchain.com/ext/bc/C/rpc" + ], + "3501": [ + "https://rpc.jfinchain.com" + ], + "3639": [ + "https://rpc.ichainscan.com" + ], + "3690": [], + "4002": [ + "https://rpc.testnet.fantom.network/", + "https://endpoints.omniatech.io/v1/fantom/testnet/public", + "https://fantom-testnet-rpc.publicnode.com" + ], + "4139": [ + "https://humans-testnet-evm.itrocket.net" + ], + "4181": [ + "https://rpc1.phi.network" + ], + "4444": [ + "https://janus.htmlcoin.dev/janus/" + ], + "4689": [ + "https://babel-api.mainnet.iotex.io", + "https://babel-api.mainnet.iotex.one", + "https://babel-api.fastblocks.io" + ], + "5000": [ + "https://mantle-rpc.publicnode.com", + "https://mantle.drpc.org", + "https://1rpc.io/mantle" + ], + "5050": [ + "https://rpc.liquidchain.net/", + "https://rpc.xlcscan.com/" + ], + "5165": [ + "https://bahamut-rpc.publicnode.com" + ], + "5177": [], + "5197": [ + "https://mainnet.eraswap.network" + ], + "5315": [], + "5551": [ + "https://l2.nahmii.io/" + ], + "5700": [ + "https://rollux.rpc.tanenbaum.io", + "https://syscoin-tanenbaum-evm-rpc.publicnode.com" + ], + "5729": [ + "https://rpc-testnet.hika.network" + ], + "5869": [ + "https://proxy.wegochain.io" + ], + "6363": [ + "https://dsc-rpc.digitsoul.co.th" + ], + "6626": [ + "https://http-mainnet.chain.pixie.xyz" + ], + "6688": [ + "https://iris-evm-rpc.publicnode.com" + ], + "7000": [ + "https://zeta.rpcgrid.com" + ], + "7001": [], + "7070": [ + "https://planq-rpc.nodies.app", + "https://jsonrpc.planq.nodestake.top/" + ], + "7341": [ + "https://rpc.shyft.network/" + ], + "7700": [ + "https://canto.gravitychain.io/", + "https://canto.evm.chandrastation.com/", + "https://jsonrpc.canto.nodestake.top/", + "https://canto.dexvaults.com/", + "https://canto-rpc.ansybl.io" + ], + "7777": [ + "https://testnet1.rotw.games", + "https://testnet2.rotw.games", + "https://testnet3.rotw.games", + "https://testnet4.rotw.games", + "https://testnet5.rotw.games" + ], + "7895": [], + "8000": [ + "https://dataseed.testnet.teleport.network" + ], + "8081": [], + "8082": [], + "8131": [ + "https://testnet.meerlabs.com" + ], + "8217": [ + "https://public-en-cypress.klaytn.net", + "https://1rpc.io/klay", + "https://klaytn-pokt.nodies.app", + "https://klaytn.drpc.org" + ], + "8453": [ + "https://mainnet.base.org", + "https://developer-access-mainnet.base.org", + "https://rpc.notadegen.com/base", + "https://base.llamarpc.com", + "https://1rpc.io/base", + "https://base-pokt.nodies.app", + "https://base.meowrpc.com", + "https://base-rpc.publicnode.com", + "https://base.drpc.org", + "https://endpoints.omniatech.io/v1/base/mainnet/public" + ], + "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" + ], + "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" + ], + "9001": [ + "https://jsonrpc-evmos.goldenratiostaking.net", + "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-pokt.nodies.app", + "https://evmos-evm-rpc.publicnode.com" + ], + "9100": [], + "10000": [ + "https://smartbch.fountainhead.cash/mainnet", + "https://global.uat.cash", + "https://rpc.uatvo.com" + ], + "10086": [], + "10101": [ + "https://eu.mainnet.xixoio.com" + ], + "10200": [ + "https://rpc.chiadochain.net", + "https://gnosis-chiado-rpc.publicnode.com", + "https://1rpc.io/gnosis" + ], + "10248": [], + "11111": [ + "https://api.trywagmi.xyz/rpc" + ], + "11235": [ + "https://haqq-evm-rpc.publicnode.com" + ], + "12052": [ + "https://zerorpc.singularity.gold" + ], + "13000": [ + "https://rpc.ssquad.games" + ], + "13381": [ + "https://rpc.phoenixplorer.com/" + ], + "15551": [], + "15557": [], + "16000": [], + "17000": [ + "https://ethereum-holesky-rpc.publicnode.com", + "https://1rpc.io/holesky", + "https://holesky-rpc.nocturnode.tech" + ], + "17777": [], + "18159": [ + "https://mainnet-rpc.memescan.io/", + "https://mainnet-rpc2.memescan.io/", + "https://mainnet-rpc3.memescan.io/", + "https://mainnet-rpc4.memescan.io/" + ], + "19845": [], + "21816": [ + "https://seed.omlira.com" + ], + "23294": [ + "https://1rpc.io/oasis/sapphire" + ], + "24484": [], + "24734": [ + "https://node1.mintme.com" + ], + "31102": [], + "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" + ], + "32659": [ + "https://mainnet.fusionnetwork.io" + ], + "34443": [ + "https://1rpc.io/mode" + ], + "35011": [], + "35441": [], + "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" + ], + "42069": [], + "42161": [ + "https://arb1.arbitrum.io/rpc", + "https://arbitrum.llamarpc.com", + "https://1rpc.io/arb", + "https://arb-pokt.nodies.app", + "https://endpoints.omniatech.io/v1/arbitrum/one/public", + "https://arbitrum-one-rpc.publicnode.com", + "https://arbitrum.meowrpc.com", + "https://arbitrum.drpc.org", + "https://rpc.tornadoeth.cash/arbitrum" + ], + "42170": [ + "https://nova.arbitrum.io/rpc", + "https://arbitrum-nova-rpc.publicnode.com", + "https://arbitrum-nova.drpc.org" + ], + "42220": [ + "https://forno.celo.org", + "https://1rpc.io/celo" + ], + "42262": [ + "https://emerald.oasis.dev/", + "https://1rpc.io/oasis/emerald" + ], + "43110": [], + "43113": [ + "https://api.avax-test.network/ext/bc/C/rpc", + "https://avalanchetestapi.terminet.io/ext/bc/C/rpc", + "https://endpoints.omniatech.io/v1/avax/fuji/public", + "https://avalanche-fuji-c-chain-rpc.publicnode.com" + ], + "43114": [ + "https://api.avax.network/ext/bc/C/rpc", + "https://avalanche.public-rpc.com", + "https://avalancheapi.terminet.io/ext/bc/C/rpc", + "https://avalanche-c-chain-rpc.publicnode.com", + "https://1rpc.io/avax/c", + "https://avax-pokt.nodies.app/ext/bc/C/rpc", + "https://endpoints.omniatech.io/v1/avax/mainnet/public", + "https://avax.meowrpc.com", + "https://avalanche.drpc.org", + "https://rpc.tornadoeth.cash/avax" + ], + "45000": [ + "https://rpc.autobahn.network" + ], + "47805": [ + "https://rpc.rei.network" + ], + "50001": [ + "https://rpc.oracle.liveplex.io" + ], + "53935": [ + "https://avax-pokt.nodies.app/ext/bc/q2aTwKuyzgs8pynF7UXBZCU7DejbZbZ6EUyHr3JQzYgwNPUPi/rpc" + ], + "55555": [ + "https://rei-rpc.moonrhythm.io" + ], + "59140": [], + "59144": [ + "https://1rpc.io/linea", + "https://linea.drpc.org", + "https://linea.decubate.com" + ], + "63000": [ + "https://rpc.ecredits.com" + ], + "70000": [], + "70001": [ + "https://proxy1.thinkiumrpc.net/" + ], + "70002": [ + "https://proxy2.thinkiumrpc.net/" + ], + "70103": [ + "https://proxy103.thinkiumrpc.net/" + ], + "71394": [ + "https://mainnet.godwoken.io/rpc/eth-wallet" + ], + "80001": [ + "https://rpc-mumbai.maticvigil.com", + "https://polygontestapi.terminet.io/rpc", + "https://endpoints.omniatech.io/v1/matic/mumbai/public", + "https://polygon-mumbai-bor-rpc.publicnode.com", + "https://polygon-mumbai-pokt.nodies.app" + ], + "81457": [ + "https://rpc.blast.io", + "https://blast.din.dev/rpc", + "https://blastl2-mainnet.public.blastapi.io", + "https://blast.blockpi.network/v1/rpc/public" + ], + "84531": [ + "https://1rpc.io/base-goerli", + "https://base-goerli-rpc.publicnode.com", + "https://endpoints.omniatech.io/v1/base/goerli/public" + ], + "84532": [ + "https://rpc.notadegen.com/base/sepolia" + ], + "99999": [ + "https://rpc.uschain.network" + ], + "100000": [], + "100001": [], + "100002": [], + "100003": [], + "100004": [], + "100005": [], + "100006": [], + "100007": [], + "100008": [], + "103090": [ + "https://evm.cryptocurrencydevs.org", + "https://rpc.crystaleum.org" + ], + "108801": [], + "110000": [], + "110001": [], + "110002": [], + "110003": [], + "110004": [], + "110005": [], + "110006": [], + "110007": [], + "110008": [], + "142857": [], + "167008": [], + "200625": [ + "https://boot2.akroma.org/" + ], + "201018": [ + "https://openapi.alaya.network/rpc" + ], + "210425": [], + "246529": [], + "256256": [ + "https://mainnet.block.caduceus.foundation" + ], + "281121": [], + "314159": [], + "333999": [ + "https://rpc.polis.tech" + ], + "363636": [ + "https://dgs-rpc.digitsoul.co.th" + ], + "420420": [ + "https://mainnet.kekchain.com", + "https://rpc2.kekchain.com", + "https://kek.interchained.org", + "https://kekchain.interchained.org" + ], + "420666": [ + "https://testnet.kekchain.com" + ], + "421613": [ + "https://endpoints.omniatech.io/v1/arbitrum/goerli/public", + "https://arbitrum-goerli-rpc.publicnode.com", + "https://api.stateless.solutions/arbitrum-one/v1/77abba85-53e4-4430-a332-a46deb9900ea" + ], + "421614": [], + "431140": [ + "https://rpc.markr.io/ext/" + ], + "512512": [ + "https://galaxy.block.caduceus.foundation" + ], + "534351": [ + "https://scroll-sepolia.drpc.org", + "https://scroll-testnet.rpc.grove.city/v1/a7a7c8e2" + ], + "534352": [ + "https://rpc.scroll.io", + "https://rpc-scroll.icecreamswap.com", + "https://1rpc.io/scroll", + "https://scroll.drpc.org", + "https://scroll-mainnet.rpc.grove.city/v1/a7a7c8e2" + ], + "534353": [], + "534354": [ + "https://prealpha-rpc.scroll.io/l2" + ], + "827431": [ + "https://mainnet-rpc.curvescan.io" + ], + "888888": [ + "https://infragrid.v.network/ethereum/compatible" + ], + "900000": [ + "https://api.posichain.org", + "https://api.s0.posichain.org" + ], + "955305": [ + "https://host-76-74-28-226.contentfabric.io/eth/" + ], + "1313114": [ + "https://rpc.ethoprotocol.com" + ], + "1313500": [ + "https://rpc.xerom.org" + ], + "2099156": [ + "https://mainnet.plian.io/pchain" + ], + "7762959": [], + "8007736": [ + "https://mainnet.plian.io/child_0" + ], + "10067275": [ + "https://testnet.plian.io/child_test" + ], + "11155111": [ + "https://rpc.notadegen.com/eth/sepolia", + "https://endpoints.omniatech.io/v1/eth/sepolia/public", + "https://ethereum-sepolia-rpc.publicnode.com", + "https://1rpc.io/sepolia" + ], + "11155420": [], + "13371337": [], + "16658437": [ + "https://testnet.plian.io/testnet" + ], + "18289463": [], + "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" + ], + "28945486": [], + "35855456": [ + "https://node.joys.digital" + ], + "61717561": [ + "https://c.onical.org" + ], + "88888888": [ + "https://rpc.teamblockchain.team" + ], + "168587773": [], + "192837465": [ + "https://mainnet.gather.network" + ], + "245022926": [ + "https://devnet.neonevm.org" + ], + "245022934": [ + "https://neon-proxy-mainnet.solana.p2p.org", + "https://neon-mainnet.everstake.one" + ], + "311752642": [ + "https://mainnet-rpc.oneledger.network" + ], + "356256156": [ + "https://testnet.gather.network" + ], + "486217935": [ + "https://devnet.gather.network" + ], + "1122334455": [], + "1313161554": [ + "https://mainnet.aurora.dev", + "https://endpoints.omniatech.io/v1/aurora/mainnet/public", + "https://1rpc.io/aurora", + "https://aurora.drpc.org" + ], + "1313161555": [ + "https://endpoints.omniatech.io/v1/aurora/testnet/public" + ], + "1313161556": [], + "1666600000": [ + "https://api.harmony.one", + "https://a.api.s0.t.hmny.io", + "https://api.s0.t.hmny.io", + "https://1rpc.io/one", + "https://hmyone-pokt.nodies.app", + "https://endpoints.omniatech.io/v1/harmony/mainnet-0/public" + ], + "1666600001": [ + "https://s1.api.harmony.one" + ], + "1666600002": [ + "https://s2.api.harmony.one" + ], + "1666600003": [], + "1666700000": [ + "https://endpoints.omniatech.io/v1/harmony/testnet-0/public" + ], + "2021121117": [], + "3125659152": [], + "11297108109": [], + "836542336838601": [], + "11297108099": [], + "197710212030": [ + "https://rpc.ntity.io" + ], + "6022140761023": [ + "https://molereum.jdubedition.com" + ] +}; diff --git a/types/handler.ts b/types/handler.ts index a6752d7..8936c6c 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -72,6 +72,10 @@ export type ChainName = ChainIds[keyof ChainIds] | "scroll-sepolia" | "taiko" | "cronos-testnet" | + "blast" | + "blast-testnet" | + "anvil" | + "hardhat" | (string & {}) export type ChainId = ChainNames[keyof ChainNames] | @@ -95,5 +99,9 @@ export type ChainId = ChainNames[keyof ChainNames] | 534351 | 167000 | 338 | + 23888 | + 238 | + 31337 | + 1337 | (number & {}) From 176cfd4f1786dba7a207e0e736c9c616db259fde Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sat, 15 Jun 2024 22:04:41 +0100 Subject: [PATCH 06/14] chore: better data source --- build/types.ts | 67 +- tests/constants.test.ts | 53 +- tests/mocks/handler.ts | 15 +- tests/script-test.ts | 4 +- tsconfig.json | 18 +- types/constants.ts | 192 +- types/dynamic.ts | 30703 ++++++++++++++++++++++++++++++++++++-- types/handler.ts | 64 +- 8 files changed, 29764 insertions(+), 1352 deletions(-) diff --git a/build/types.ts b/build/types.ts index 59d9cbc..f088748 100644 --- a/build/types.ts +++ b/build/types.ts @@ -1,43 +1,68 @@ import { appendFile, writeFile } from 'fs/promises'; -import chainIdList from '../lib/chainlist/constants/chainIds.json'; -import chainlist from "../lib/chainlist/constants/extraRpcs"; +import { BlockExplorer, NativeToken } from '../types/handler'; +import { generateChainData } from '../lib/chainlist/utils/fetch'; /** * This produces dynamic types and constants for: - * - networkIds - * - networkNames - * - extraRpcs + * - CHAINS_IDS + * - NETWORKS + * - NETWORK_FAUCETS + * - NETWORK_EXPLORERS + * - NETWORK_CURRENCIES + * - EXTRA_RPCS */ + 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 [id, name] of Object.entries(chainIdList)) { - if (name === 'default') continue; - if (typeof name === 'object') continue; - const networkId = parseInt(id); - idToNetwork[networkId] = name; + 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; - } - const extraRpcs: Record = {}; + idToRpc[chainId] = rpc; + idToFaucet[chainId] = faucets; - 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); + if (explorers && explorers.length > 0) { + idToExplorers[chainId] = explorers + } - extraRpcs[networkId] = [...officialUrls, ...extraUrls].filter((rpc) => rpc.startsWith("https://")); - }); + 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; + } // Clear the file await writeFile('types/dynamic.ts', ''); - - await appendFile('types/dynamic.ts', `\nexport const chainIds = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); - await appendFile('types/dynamic.ts', `\nexport const networks = ${JSON.stringify(networkToId, null, 2)} as const;\n`); - await appendFile('types/dynamic.ts', `\nexport const extraRpcs = ${JSON.stringify(extraRpcs, null, 2)};\n`); + await appendFile('types/dynamic.ts', `\nexport const CHAINS_IDS = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); + await appendFile('types/dynamic.ts', `\nexport const NETWORKS = ${JSON.stringify(networkToId, null, 2)} as const;\n`); + await appendFile('types/dynamic.ts', `\nexport const NETWORK_FAUCETS = ${JSON.stringify(idToFaucet, null, 2)};\n`); + await appendFile('types/dynamic.ts', `\nexport const NETWORK_EXPLORERS = ${JSON.stringify(idToExplorers, null, 2)};\n`); + await appendFile('types/dynamic.ts', `\nexport const NETWORK_CURRENCIES = ${JSON.stringify(idToNativeCurrency, null, 2)};\n`); + await appendFile('types/dynamic.ts', `\nexport const EXTRA_RPCS = ${JSON.stringify(extraRpcs, null, 2)};\n`); } + +/** + * this is the same source that chainlist pulls it's data from + * but is has a lot more info that we'd benefit from such as explorers, + * faucets, rpcs etc. + * + * Writing this to a local file so that we can use it for improved static exports + */ + (async () => { await createDynamicTypes(); })().catch(console.error) + diff --git a/tests/constants.test.ts b/tests/constants.test.ts index de1b879..a4635f5 100644 --- a/tests/constants.test.ts +++ b/tests/constants.test.ts @@ -18,7 +18,7 @@ describe("Constants", () => { }); it("should return 'Unknown Network' for an unknown network ID", () => { - const networkId = 12345; + const networkId = Number.MAX_SAFE_INTEGER; const expectedNetworkName = "Unknown Network"; const result = getNetworkName(networkId as ChainId); expect(result).toBe(expectedNetworkName); @@ -45,19 +45,12 @@ describe("Constants", () => { it("should contain a name for each network", () => { const networkIdValues = Object.values(networkIds) .sort((a, b) => a.localeCompare(b)); - const networkIdKeys = Object.keys(networkIds) - .map(Number) - .sort((a, b) => a - b) const networkNameKeys = Object.keys(networkNames) .sort((a, b) => a.localeCompare(b)); - const networkNameValues = Object.values(networkNames) - .sort((a, b) => a - b); // keys of networkIds are the values of networkNames - expect(networkNameKeys).toEqual(networkIdValues); - // values of networkIds are the keys of networkNames - expect(networkIdKeys).toEqual(networkNameValues); + expect(networkIdValues).toEqual(networkNameKeys); netIds.forEach((networkId) => { const networkName = networkIds[networkId]; @@ -71,37 +64,37 @@ describe("Constants", () => { ] as ChainId[]; const expected = { - 1: "https://etherscan.io/", - 100: "https://gnosisscan.io/", - 56: "https://bscscan.com/", - 80002: "https://amoy.polygonscan.com/", - 137: "https://polygonscan.com/", - 25: "https://cronoscan.com/" + 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", - 100: "xdai", - 56: "binance", + 1: "ethereum-mainnet", + 100: "gnosis", + 56: "bnb-smart-chain-mainnet", 80002: "amoy", - 137: "polygon", - 25: "cronos", + 137: "polygon-mainnet", + 25: "cronos-mainnet", } as Partial>; const expectedNative = { - 1: { symbol: "ETH", decimals: 18 }, - 100: { symbol: "XDAI", decimals: 18 }, - 56: { symbol: "BNB", decimals: 18 }, - 80002: { symbol: "MATIC", decimals: 18 }, - 137: { symbol: "MATIC", decimals: 18 }, - 25: { symbol: "CRO", decimals: 18 } + 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 result = networkCurrencies[networkId] const expectedCurrency = expectedNative[networkId] as NativeToken; expect(result).toEqual(expectedCurrency); }); @@ -111,10 +104,10 @@ describe("Constants", () => { describe("networkExplorers", () => { it("should contain an explorer for each network", () => { netIds.forEach((networkId) => { - const networkName = getNetworkName(networkId as ChainId); const result = networkExplorers[networkId]; - expect(result).toBe(expected[networkId]); - expect(networkName).toBe(expectedName[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 5468b5a..191c382 100644 --- a/tests/mocks/handler.ts +++ b/tests/mocks/handler.ts @@ -1,6 +1,6 @@ import { JsonRpcProvider } from "@ethersproject/providers"; import { networkCurrencies, networkExplorers, networkRpcs } from "../../types/constants"; -import { chainIds, networks } from "../../types/dynamic"; +import { CHAINS_IDS, NETWORKS } from "../../types/dynamic"; export type ValidBlockData = { jsonrpc: string; @@ -45,12 +45,17 @@ export type NetworkCurrencies = typeof networkCurrencies; export type NetworkExplorers = typeof networkExplorers; export type ChainIds = { - -readonly [Key in keyof typeof chainIds]: typeof chainIds[Key] + -readonly [Key in keyof typeof CHAINS_IDS]: typeof CHAINS_IDS[Key] } export type ChainNames = { - -readonly [Key in keyof typeof networks]: typeof networks[Key] + -readonly [Key in keyof typeof NETWORKS]: typeof NETWORKS[Key] } -export type ChainName = ChainIds[keyof ChainIds] | (string & {}) -export type ChainId = ChainNames[keyof ChainNames] | (number & {}) +export type ChainName = ChainIds[keyof ChainIds] | + "anvil" | + "hardhat" + +export type ChainId = ChainNames[keyof ChainNames] | + 31337 | + 1337 diff --git a/tests/script-test.ts b/tests/script-test.ts index 51dc512..3cfb872 100644 --- a/tests/script-test.ts +++ b/tests/script-test.ts @@ -38,8 +38,8 @@ import getRPCHandler, { HandlerConstructorConfig, RPCHandler, networkIds, networ console.log("====================================="); console.log(networkCurrencies); console.log("====================================="); - console.log(networkExplorers); - console.log("====================================="); + // console.log(networkExplorers); + // console.log("====================================="); console.log(latencies); process.exit(0); })().catch(console.error); diff --git a/tsconfig.json b/tsconfig.json index 8b0f685..65dc8cf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,18 @@ "declaration": true, "resolveJsonModule": true }, - "include": ["src/**/*", "types/*.ts", "index.ts"], - "exclude": ["node_modules", "tests/**/*.ts", "tests/*.ts", "build", "lib", "dist", "jest.config.ts"] -} + "include": [ + "src/**/*", + "types/*.ts", + "index.ts" + ], + "exclude": [ + "node_modules", + "tests/**/*.ts", + "tests/*.ts", + "build", + "lib", + "dist", + "jest.config.ts" + ] +} \ No newline at end of file diff --git a/types/constants.ts b/types/constants.ts index 1f0dd3c..59f7f4c 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -1,163 +1,47 @@ -import { ChainId, ChainIds, ChainName, ChainNames, NativeToken } from "./handler"; -import { chainIds, networks, extraRpcs } from "./dynamic"; +import { BlockExplorer, ChainId, ChainIds, ChainName, ChainNames, NativeToken } from "./handler"; +import { CHAINS_IDS, EXTRA_RPCS, NETWORKS, 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 = { - ...{ ...chainIds as ChainIds }, // removing readonly - 80002: "amoy", - 11155111: "sepolia", - 41: "telos-testnet", - 10200: "chiado", - 4002: "fantom-testnet", - 97: "bsc-testnet", - 11155420: "sepolia-optimism", - 167009: "hekla", - 84532: "sepolia-base", - 43113: "fuji", - 199: "bittorrent", - 1028: "donau", - 1442: "polygon_zkevm_testnet", - 255: "kroma", - 2358: "kroma-sepolia", - 59141: "linea-sepolia", - 534351: "scroll-sepolia", - 534352: "scroll", - 167000: "taiko", - 338: "cronos-testnet", - 23888: "blast-testnet", - 238: "blast", +// @ts-expect-error - some nets are deprecated and have reused names across chain ids +const networkIds: Record = { + ...{ ...CHAINS_IDS as ChainIds }, // removing readonly 31337: "anvil", 1337: "hardhat", }; -export const networkNames: Record = { - ...{ ...networks as ChainNames }, // removing readonly - "amoy": 80002, - "sepolia": 11155111, - "telos-testnet": 41, - "chiado": 10200, - "fantom-testnet": 4002, - "bsc-testnet": 97, - "sepolia-optimism": 11155420, - "hekla": 167009, - "sepolia-base": 84532, - "fuji": 43113, - bittorrent: 199, - donau: 1028, - polygon_zkevm_testnet: 1442, - kroma: 255, - "kroma-sepolia": 2358, - "linea-sepolia": 59141, - "scroll-sepolia": 534351, - "scroll": 534352, - "taiko": 167000, - "cronos-testnet": 338, - "blast-testnet": 23888, - blast: 238, +const networkNames: Record = { + ...{ ...NETWORKS as ChainNames }, // removing readonly anvil: 31337, hardhat: 1337, }; -export const networkRpcs = Object.fromEntries( +Reflect.deleteProperty(networkNames, "geth-testnet"); // 1337 +Reflect.deleteProperty(networkNames, "gochain-testnet"); // 31337 + +const networkRpcs = Object.fromEntries( Object.entries(networkNames).map(([_, value]) => { - const chainRpcs = extraRpcs[value as unknown as keyof typeof extraRpcs]; + const chainRpcs = EXTRA_RPCS[value as unknown as keyof typeof EXTRA_RPCS]; return [value, chainRpcs] as [ChainId, string[]]; }) ) as Record; -// @ts-expect-error - not all networks are covered -export const networkExplorers: Record = { - [networkNames.ethereum]: "https://etherscan.io/", - [networkNames.xdai]: "https://gnosisscan.io/", - [networkNames.arbitrum]: "https://arbiscan.io/", - [networkNames.binance]: "https://bscscan.com/", - [networkNames.polygon]: "https://polygonscan.com/", - [networkNames.avalanche]: "https://snowtrace.io/", - [networkNames.blast]: "https://testnet.blastscan.io/", - [networkNames.optimism]: "hhttps://optimistic.etherscan.io/", - [networkNames.cronos]: "https://cronoscan.com/", - [networkNames.celo]: "https://celoscan.io/", - [networkNames.taiko]: "https://taikoscan.io/", - [networkNames.base]: "https://basescan.org/", - [networkNames.fantom]: "https://ftmscan.com/", - [networkNames.heco]: "https://hecoinfo.com/", - [networkNames.polygon_zkevm]: "https://zkevm.polygonscan.com/", - [networkNames.bittorrent]: "https://bttcscan.com/", - [networkNames.kroma]: "https://kromascan.com/", - [networkNames.linea]: "https://lineascan.build/", - [networkNames.moonbeam]: "https://moonbeam.moonscan.io/", - [networkNames.moonriver]: "https://moonriver.moonscan.io/", - [networkNames.arbitrum_nova]: "https://nova.arbiscan.io/", - [networkNames.scroll]: "https://scrollscan.com/", - [networkNames.taiko]: "https://taikoscan.io/", - - // testnets - [networkNames["scroll-sepolia"]]: "https://sepolia.scrollscan.com/", - [networkNames["linea-sepolia"]]: "https://sepolia.lineascan.build/", - [networkNames.polygon_zkevm_testnet]: "https://cardona-zkevm.polygonscan.com/", - [networkNames["kroma-sepolia"]]: "https://sepolia-kromascan.com/", - [networkNames.fuji]: "https://testnet.snowtrace.io/", - [networkNames.amoy]: "https://amoy.polygonscan.com/", - [networkNames.sepolia]: "https://sepolia.etherscan.io/", - [networkNames["telos-testnet"]]: "https://testnet.teloscan.io/", - [networkNames.chiado]: "https://gnosis-chiado.blockscout.com/", - [networkNames["fantom-testnet"]]: "https://testnet.ftmscan.com/", - [networkNames["bsc-testnet"]]: "https://testnet.bscscan.com/", - [networkNames["sepolia-optimism"]]: "https://sepolia-optimism.etherscan.io/", - [networkNames.hekla]: "https://explorer.hekla.taiko.xyz/", - [networkNames["sepolia-base"]]: "https://sepolia.basescan.org/", - [networkNames["fantom-testnet"]]: "https://testnet.ftmscan.com/", - [networkNames.donau]: "https://testnet.bttcscan.com/", - [networkNames["cronos-testnet"]]: "https://explorer.cronos.org/testnet/", - [networkNames["polygon_zkevm_testnet"]]: "https://testnet-zkevm.polygonscan.com/", -}; +const networkExplorers = Object.fromEntries( + Object.entries(networkNames).map(([_, value]) => { + const chainExplorers = NETWORK_EXPLORERS[value as unknown as keyof typeof NETWORK_EXPLORERS]; + return [value, chainExplorers] as [ChainId, BlockExplorer[]]; + }) +) as Record; -export const networkCurrencies: Partial> = { - [networkNames.ethereum]: { symbol: "ETH", decimals: 18 }, - [networkNames.xdai]: { symbol: "XDAI", decimals: 18 }, - [networkNames.binance]: { symbol: "BNB", decimals: 18 }, - [networkNames.polygon]: { symbol: "MATIC", decimals: 18 }, - [networkNames.avalanche]: { symbol: "AVAX", decimals: 18 }, - [networkNames.blast]: { symbol: "BLAST", decimals: 18 }, - [networkNames.optimism]: { symbol: "ETH", decimals: 18 }, - [networkNames.cronos]: { symbol: "CRO", decimals: 18 }, - [networkNames.celo]: { symbol: "CELO", decimals: 18 }, - [networkNames.base]: { symbol: "BASE", decimals: 18 }, - [networkNames.fantom]: { symbol: "FTM", decimals: 18 }, - [networkNames.heco]: { symbol: "HT", decimals: 18 }, - [networkNames.polygon_zkevm]: { symbol: "MATIC", decimals: 18 }, - [networkNames.bittorrent]: { symbol: "BTT", decimals: 18 }, - [networkNames.donau]: { symbol: "XDAI", decimals: 18 }, - [networkNames.kroma]: { symbol: "ETH", decimals: 18 }, - [networkNames.linea]: { symbol: "ETH", decimals: 18 }, - [networkNames.moonbeam]: { symbol: "GLMR", decimals: 18 }, - [networkNames.moonriver]: { symbol: "MOVR", decimals: 18 }, - [networkNames.arbitrum_nova]: { symbol: "ETH", decimals: 18 }, - [networkNames.scroll]: { symbol: "ETH", decimals: 18 }, - [networkNames.fuji]: { symbol: "AVAX", decimals: 18 }, - [networkNames.amoy]: { symbol: "MATIC", decimals: 18 }, - [networkNames.sepolia]: { symbol: "ETH", decimals: 18 }, - [networkNames.taiko]: { symbol: "ETH", decimals: 18 }, - [networkNames.chiado]: { symbol: "XDAI", decimals: 18 }, - [networkNames.hekla]: { symbol: "ETH", decimals: 18 }, - [networkNames.donau]: { symbol: "XDAI", decimals: 18 }, - [networkNames["scroll-sepolia"]]: { symbol: "ETH", decimals: 18 }, - [networkNames["linea-sepolia"]]: { symbol: "ETH", decimals: 18 }, - [networkNames["kroma-sepolia"]]: { symbol: "ETH", decimals: 18 }, - [networkNames["telos-testnet"]]: { symbol: "TLOS", decimals: 18 }, - [networkNames["fantom-testnet"]]: { symbol: "FTM", decimals: 18 }, - [networkNames["bsc-testnet"]]: { symbol: "BNB", decimals: 18 }, - [networkNames["sepolia-optimism"]]: { symbol: "ETH", decimals: 18 }, - [networkNames["sepolia-base"]]: { symbol: "ETH", decimals: 18 }, - [networkNames["fantom-testnet"]]: { symbol: "FTM", decimals: 18 }, - [networkNames["cronos-testnet"]]: { symbol: "CRO", decimals: 18 }, - [networkNames["polygon_zkevm_testnet"]]: { symbol: "MATIC", decimals: 18 }, -}; +const networkCurrencies: Record = Object.fromEntries( + Object.entries(NETWORK_CURRENCIES).map(([chainId, currency]) => { + return [chainId, currency as NativeToken]; + }) +) as Record; -export function getNetworkName(networkId: ChainId) { +function getNetworkName(networkId: ChainId) { const networkName = networkIds[networkId]; if (!networkName) { console.error(`Unknown network ID: ${networkId}`); @@ -165,7 +49,7 @@ export function getNetworkName(networkId: ChainId) { return networkName ?? "Unknown Network"; } -export function getNetworkId(networkName: ChainName) { +function getNetworkId(networkName: ChainName) { const networkId = networkNames[networkName]; if (!networkId) { console.error(`Unknown network name: ${networkName}`); @@ -173,19 +57,13 @@ export function getNetworkId(networkName: ChainName) { return networkId ?? -1; } -// export const tokens: Record> = { -// [networkNames.ethereum]: { -// DAI: { -// address: "0x6b175474e89094c44da98b954eedeac495271d0f", -// decimals: 18, -// symbol: "DAI", -// }, -// }, -// [networkNames.xdai]: { -// WXDAI: { -// address: "0xe91d153e0b41518a2ce8dd3d7944fa863463a97d", -// decimals: 18, -// symbol: "WXDAI", -// }, -// }, -// }; \ No newline at end of file +export { + networkIds, + networkNames, + networkRpcs, + networkCurrencies, + networkExplorers, + getNetworkName, + getNetworkId, + NETWORK_FAUCETS, +} \ No newline at end of file diff --git a/types/dynamic.ts b/types/dynamic.ts index 7a28b6d..0f0eeb0 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -1,1309 +1,29217 @@ -export const chainIds = { - "1": "ethereum", +export const CHAINS_IDS = { + "1": "ethereum-mainnet", + "2": "expanse-network", + "3": "ropsten", + "4": "rinkeby", + "5": "goerli", + "7": "thaichain", "8": "ubiq", - "10": "optimism", - "19": "songbird", - "20": "elastos", - "24": "kardiachain", - "25": "cronos", - "30": "rsk", - "40": "telos", - "50": "xdc", - "52": "csc", - "55": "zyx", - "56": "binance", - "57": "syscoin", + "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": "ethereumclassic", - "66": "okexchain", - "70": "hoo", - "82": "meter", - "87": "nova network", + "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", - "100": "xdai", - "106": "velas", - "108": "thundercore", - "122": "fuse", - "128": "heco", - "137": "polygon", - "148": "shimmer_evm", - "169": "manta", - "200": "xdaiarb", - "204": "op_bnb", - "246": "energyweb", - "248": "oasys", - "250": "fantom", - "269": "hpb", - "288": "boba", - "311": "omax", - "314": "filecoin", - "321": "kucoin", - "324": "era", + "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", - "361": "theta", - "369": "pulse", - "416": "sx", - "463": "areon", + "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", - "570": "rollux", + "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", - "820": "callisto", + "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", - "1030": "conflux", - "1088": "metis", - "1101": "polygon_zkevm", - "1116": "core", - "1231": "ultron", - "1234": "step", + "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", + "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", + "1224": "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", - "1440": "living assets mainnet", + "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", - "1975": "onus", - "2000": "dogechain", + "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", + "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", - "2332": "soma", + "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", + "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", + "3500": "paribu-net-testnet", + "3501": "jfin-chain", + "3601": "pandoproject-mainnet", + "3602": "pandoproject-testnet", + "3630": "tycooncoin", + "3636": "botanix-testnet", + "3637": "botanix-mainnet", + "3639": "ichain-network", + "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", - "4689": "iotex", + "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", - "5050": "xlc", - "5551": "nahmii", - "6969": "tombchain", + "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", - "8217": "klaytn", + "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", - "8899": "jbc", + "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", - "9790": "carbon", - "10000": "smartbch", - "15551": "loop", - "17777": "eos_evm", - "32520": "bitgert", - "32659": "fusion", - "32769": "zilliqa", - "42161": "arbitrum", - "42170": "arbitrum_nova", - "42220": "celo", - "42262": "oasis", - "43114": "avalanche", - "47805": "rei", - "55555": "reichain", + "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", + "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", - "71402": "godwoken", - "333999": "polis", + "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", + "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", - "888888": "vision", - "245022934": "neon", - "1313161554": "aurora", - "1666600000": "harmony", + "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", - "836542336838601": "curio" + "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": 1, - "ubiq": 8, - "optimism": 10, - "songbird": 19, - "elastos": 20, - "kardiachain": 24, - "cronos": 25, - "rsk": 30, - "telos": 40, - "xdc": 50, - "csc": 52, - "zyx": 55, - "binance": 56, - "syscoin": 57, - "gochain": 60, - "ethereumclassic": 61, - "okexchain": 66, - "hoo": 70, - "meter": 82, - "nova network": 87, - "viction": 88, - "xdai": 100, - "velas": 106, - "thundercore": 108, - "fuse": 122, - "heco": 128, - "polygon": 137, - "shimmer_evm": 148, - "manta": 169, - "xdaiarb": 200, - "op_bnb": 204, - "energyweb": 246, - "oasys": 248, - "fantom": 250, - "hpb": 269, - "boba": 288, - "omax": 311, - "filecoin": 314, - "kucoin": 321, - "era": 324, - "shiden": 336, - "theta": 361, - "pulse": 369, - "sx": 416, - "areon": 463, - "candle": 534, - "rollux": 570, +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, + "pulsechain": 369, + "gnosis": 100, + "filecoin---mainnet": 314, + "kava": 2222, + "rootstock-mainnet": 30, + "fantom-opera": 250, + "celo-mainnet": 42220, + "fusion-mainnet": 32659, + "metis-andromeda-mainnet": 1088, + "klaytn-mainnet-cypress": 8217, + "core-blockchain-mainnet": 1116, + "manta-pacific-mainnet": 169, + "telos-evm-mainnet": 40, "astar": 592, - "callisto": 820, - "wanchain": 888, - "conflux": 1030, - "metis": 1088, - "polygon_zkevm": 1101, - "core": 1116, - "ultron": 1231, - "step": 1234, + "iotex-network-mainnet": 4689, "moonbeam": 1284, + "canto": 7700, + "conflux-espace": 1030, + "aurora-mainnet": 1313161554, + "xdc-network": 50, + "meter-mainnet": 82, + "okxchain-mainnet": 66, "moonriver": 1285, - "living assets mainnet": 1440, - "tenet": 1559, - "onus": 1975, - "dogechain": 2000, - "kava": 2222, - "soma": 2332, + "carbon-evm": 9790, + "smart-bitcoin-cash": 10000, + "boba-network": 288, + "ultron-mainnet": 1231, + "songbird-canary-network": 19, + "zilliqa-evm": 32769, + "wanchain": 888, "beam": 4337, - "iotex": 4689, - "mantle": 5000, - "xlc": 5050, - "nahmii": 5551, - "tombchain": 6969, - "canto": 7700, - "klaytn": 8217, - "base": 8453, - "jbc": 8899, + "vision---mainnet": 888888, + "oasys-mainnet": 248, "evmos": 9001, - "carbon": 9790, - "smartbch": 10000, - "loop": 15551, - "eos_evm": 17777, - "bitgert": 32520, - "fusion": 32659, - "zilliqa": 32769, - "arbitrum": 42161, - "arbitrum_nova": 42170, - "celo": 42220, - "oasis": 42262, - "avalanche": 43114, - "rei": 47805, - "reichain": 55555, - "linea": 59144, - "godwoken": 71402, - "polis": 333999, - "kekchain": 420420, - "vision": 888888, - "neon": 245022934, - "aurora": 1313161554, - "harmony": 1666600000, + "elastos-smart-chain": 20, + "dogechain-mainnet": 2000, + "onus-chain-mainnet": 1975, + "coinex-smart-chain-mainnet": 52, + "fuse-mainnet": 122, + "theta-mainnet": 361, + "harmony-mainnet-shard-0": 1666600000, + "kcc-mainnet": 321, + "huobi-eco-chain-mainnet": 128, + "velas-evm-mainnet": 106, + "oasis-emerald": 42262, + "rollux-mainnet": 570, + "neon-evm-mainnet": 245022934, + "thundercore-mainnet": 108, + "ethereum-classic": 1, + "step-network": 1234, + "energy-web-chain": 246, + "opbnb-mainnet": 204, + "nahmii-2-mainnet": 5551, + "tomb-chain-mainnet": 6969, + "loopnetwork-mainnet": 15551, + "godwoken-mainnet": 71402, + "omax-mainnet": 311, + "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, - "curio": 836542336838601 + "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, + "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, + "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": 1224, + "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-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, + "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, + "paribu-net-testnet": 3500, + "jfin-chain": 3501, + "pandoproject-mainnet": 3601, + "pandoproject-testnet": 3602, + "tycooncoin": 3630, + "botanix-testnet": 3636, + "botanix-mainnet": 3637, + "ichain-network": 3639, + "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, + "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-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 extraRpcs = { - "1": [ - "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.notadegen.com/eth", - "https://eth.llamarpc.com", - "https://endpoints.omniatech.io/v1/eth/mainnet/public", - "https://go.getblock.io/d7dab8149ec04390aaa923ff2768f914", - "https://ethereum-rpc.publicnode.com", - "https://1rpc.io/eth", - "https://rpc.builder0x69.io/", - "https://rpc.mevblocker.io", - "https://rpc.flashbots.net/", - "https://eth-pokt.nodies.app", - "https://rpc.payload.de", - "https://api.zmok.io/mainnet/oaen6dy8ff6hju9k", - "https://eth.meowrpc.com", - "https://eth.drpc.org", - "https://eth.merkle.io", - "https://rpc.lokibuilder.xyz/wallet", - "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" - ], - "2": [ - "https://node.eggs.cool", - "https://node.expanse.tech" - ], +export const NETWORK_FAUCETS = { + "1": [], + "2": [], "3": [ - "https://rpc.ankr.com/eth_ropsten", - "https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161" + "http://fauceth.komputing.org?chain=3&address=${ADDRESS}", + "https://faucet.ropsten.be?${ADDRESS}" ], "4": [ - "https://rpc.ankr.com/eth_rinkeby", - "https://rinkeby.infura.io/3/9aa3d95b3bc440fa88ea12eaa4456161" + "http://fauceth.komputing.org?chain=4&address=${ADDRESS}", + "https://faucet.rinkeby.io" ], "5": [ - "https://endpoints.omniatech.io/v1/eth/goerli/public", - "https://ethereum-goerli-rpc.publicnode.com", - "https://rpc.tornadoeth.cash/goerli" + "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" ], - "6": [ - "https://www.ethercluster.com/kotti" + "44": [], + "45": [ + "https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2" + ], + "46": [], + "47": [], + "48": [], + "49": [], + "50": [], + "51": [ + "https://faucet.apothem.network" ], - "7": [ - "https://rpc.dome.cloud" + "52": [], + "53": [], + "54": [], + "55": [], + "56": [], + "57": [ + "https://faucet.syscoin.org" ], - "8": [ - "https://rpc.octano.dev" + "58": [], + "60": [], + "61": [], + "63": [ + "https://easy.hebeswap.com/#/faucet", + "https://faucet.mordortest.net" ], - "10": [ - "https://mainnet.optimism.io/", - "https://optimism.llamarpc.com", - "https://1rpc.io/op", - "https://op-pokt.nodies.app", - "https://endpoints.omniatech.io/v1/op/mainnet/public", - "https://optimism-rpc.publicnode.com", - "https://optimism.meowrpc.com", - "https://optimism.drpc.org", - "https://api.stateless.solutions/optimism/v1/f373feb1-c8e4-41c9-bb74-2c691988dd34", - "https://rpc.tornadoeth.cash/optimism" + "64": [], + "65": [ + "https://www.okex.com/drawdex" ], - "11": [ - "https://api.metadium.com/dev" + "66": [], + "67": [], + "68": [], + "69": [ + "http://fauceth.komputing.org?chain=69&address=${ADDRESS}" ], - "14": [], - "15": [ - "https://prenet.diode.io:8443/" + "70": [], + "71": [ + "https://faucet.confluxnetwork.org" ], - "17": [ - "https://rpc.thaifi.com" + "72": [ + "https://faucet.dxscan.io" ], - "19": [ - "https://songbird.towolabs.com/rpc" + "73": [ + "https://faucet-testnet.fncy.world" ], - "20": [ - "https://api.elastos.io/esc", - "https://api.trinity-tech.io/esc" + "74": [], + "75": [], + "76": [], + "77": [], + "78": [], + "79": [], + "80": [], + "81": [], + "82": [ + "https://faucet.meter.io" ], - "22": [ - "https://api.trinity-tech.io/eid", - "https://api.elastos.io/eid" + "83": [ + "https://faucet-warringstakes.meter.io" ], - "24": [ - "https://rpc.kardiachain.io" + "84": [], + "85": [ + "https://www.gatescan.org/testnet/faucet" ], - "25": [ - "https://evm.cronos.org", - "https://cronos-rpc.elk.finance/", - "https://cronos-evm-rpc.publicnode.com", - "https://1rpc.io/cro" + "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" ], - "27": [ - "https://rpc.shibachain.net" + "98": [], + "99": [], + "100": [ + "https://gnosisfaucet.com", + "https://stakely.io/faucet/gnosis-chain-xdai", + "https://faucet.prussia.dev/xdai" ], - "29": [ - "https://rpc.genesisl1.org" + "101": [], + "102": [], + "103": [], + "104": [], + "105": [], + "106": [], + "107": [ + "https://faucet.novanetwork.io" + ], + "108": [], + "109": [], + "110": [], + "111": [ + "https://etherlite.org/faucets" ], - "30": [ - "https://public-node.rsk.co" + "112": [], + "113": [ + "https://buy.dehvo.com" ], - "33": [ - "https://rpc.goodata.io" + "114": [ + "https://faucet.flare.network" ], - "35": [ - "https://rpc.tbwg.io" + "117": [], + "118": [], + "119": [], + "120": [ + "http://faucet.nuls.io" ], - "38": [ - "https://rpc.valorbit.com/v2" + "121": [], + "122": [], + "123": [ + "https://get.fusespark.io" ], - "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" + "124": [], + "125": [ + "https://faucet.oychain.io" ], - "44": [], - "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" + "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" ], - "51": [ - "https://rpc.apothem.network", - "https://erpc.apothem.network", - "https://apothem.xdcrpc.com" + "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/" ], - "52": [ - "https://rpc.coinex.net/", - "https://rpc1.coinex.net/", - "https://rpc2.coinex.net/", - "https://rpc3.coinex.net/", - "https://rpc4.coinex.net/" + "313": [], + "314": [], + "321": [], + "322": [ + "https://faucet-testnet.kcc.network" ], - "55": [ - "https://rpc-1.zyx.network/", - "https://rpc-2.zyx.network/", - "https://rpc-3.zyx.network/", - "https://rpc-5.zyx.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" ], - "56": [ - "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://bscrpc.com", - "https://bsc.rpcgator.com/", - "https://bsc-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", - "https://nodes.vefinetwork.org/smartchain", - "https://binance.llamarpc.com", - "https://endpoints.omniatech.io/v1/bsc/mainnet/public", - "https://bsc-pokt.nodies.app", - "https://1rpc.io/bnb", - "https://bsc-rpc.publicnode.com", - "https://bsc.meowrpc.com", - "https://bsc.drpc.org", - "https://rpc.polysplit.cloud/v1/chain/56", - "https://rpc.tornadoeth.cash/bsc" + "570": [ + "https://rollux.id/faucetapp" ], - "57": [ - "https://rpc.syscoin.org", - "https://syscoin-evm-rpc.publicnode.com" + "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" ], - "58": [ - "https://dappnode1.ont.io:10339", - "https://dappnode2.ont.io:10339", - "https://dappnode3.ont.io:10339", - "https://dappnode4.ont.io:10339" + "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" ], - "59": [ - "https://api.eosargentina.io", - "https://api.metahub.cash" + "880": [], + "888": [], + "898": [ + "https://faucet.maxi.network" ], - "60": [ - "https://rpc.gochain.io" + "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": [], + "1201": [], + "1202": [], + "1209": [], + "1210": [ + "https://cuckoo.network/portal/faucet/" + ], + "1213": [], + "1214": [], + "1221": [], + "1224": [], + "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": [], + "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" + ], + "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" + ], + "3500": [ + "https://faucet.paribuscan.com" + ], + "3501": [], + "3601": [], + "3602": [], + "3630": [], + "3636": [ + "https://faucet.botanixlabs.dev" + ], + "3637": [ + "https://faucet.btxtestchain.com" + ], + "3639": [], + "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" + ], + "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/" + ], + "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_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": "subscan", + "url": "https://crab.subscan.io", + "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" + } + ], + "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" + } + ], + "1224": [ + { + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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_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 + }, + "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 + }, + "1224": { + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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 + }, + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "1224": [ + "https://testnet-rpc.buildonhybrid.com" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" ], - "61": [ - "https://etc.mytokenpocket.vip", - "https://rpc.etcinscribe.com", - "https://etc.etcdesktop.com", - "https://etc.rivet.link" + "54555": [ + "https://rpc-test.photonchain.io" ], - "62": [ - "https://www.ethercluster.com/morden" + "55004": [ + "https://rpc.titan.tokamak.network", + "wss://rpc.titan.tokamak.network" ], - "63": [ - "https://rpc.mordor.etccooperative.org" + "55555": [ + "https://rei-rpc.moonrhythm.io" ], - "64": [], - "66": [ - "https://exchainrpc.okex.org", - "https://1rpc.io/oktc" + "55556": [ + "https://rei-testnet-rpc.moonrhythm.io" ], - "68": [], - "70": [ - "https://http-mainnet.hoosmartchain.com" + "56026": [ + "https://nrpc.lambda.im" ], - "74": [ - "https://idchain.one/rpc/" + "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" ], - "76": [], - "77": [ - "https://sokol.poa.network" + "56400": [ + "https://subnets.avax.network/testnetzer/testnet/rpc" ], - "78": [ - "https://ethnode.primusmoney.com/mainnet" + "56789": [ + "https://nova.velo.org" ], - "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/" + "56797": [ + "https://rpc.testnet.doid.tech" ], - "80": [], - "82": [ - "https://rpc.meter.io" + "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" ], - "86": [ - "https://evm.gatenode.cc" + "57451": [ + "https://mainnet-rpc.coinsec.network" ], - "87": [ - "https://rpc.novanetwork.io:9070", - "https://dev.rpc.novanetwork.io/" + "58008": [ + "https://sepolia.publicgoods.network" ], - "88": [ - "https://rpc.tomochain.com" + "59140": [ + "https://linea-goerli.blockpi.network/v1/rpc/public", + "https://rpc.goerli.linea.build", + "wss://rpc.goerli.linea.build" ], - "90": [ - "https://s0.garizon.net/rpc" + "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}" ], - "91": [ - "https://s1.garizon.net/rpc" + "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" ], - "92": [ - "https://s2.garizon.net/rpc" + "59971": [ + "https://mainnet.genesyscode.io" ], - "93": [ - "https://s3.garizon.net/rpc" + "60000": [ + "https://test.thinkiumrpc.net" ], - "96": [ - "https://rpc.bitkubchain.io" + "60001": [ + "https://test1.thinkiumrpc.net" ], - "97": [ - "https://bsctestapi.terminet.io/rpc", - "https://endpoints.omniatech.io/v1/bsc/testnet/public", - "https://bsc-testnet-rpc.publicnode.com" + "60002": [ + "https://test2.thinkiumrpc.net" ], - "99": [ - "https://core.poanetwork.dev" + "60103": [ + "https://test103.thinkiumrpc.net" ], - "100": [ - "https://rpc.gnosischain.com", - "https://xdai-archive.blockscout.com", - "https://gnosis-pokt.nodies.app", - "https://gnosis.drpc.org", - "https://endpoints.omniatech.io/v1/gnosis/mainnet/public", - "https://gnosis-rpc.publicnode.com", - "https://1rpc.io/gnosis", - "https://rpc.tornadoeth.cash/gnosis" + "60808": [ + "https://rpc.gobob.xyz", + "wss://rpc.gobob.xyz", + "https://bob-mainnet.public.blastapi.io", + "wss://bob-mainnet.public.blastapi.io" ], - "101": [], - "106": [ - "https://evmexplorer.velas.com/rpc", - "https://velas-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf" + "61406": [ + "https://mainnet-rpc.kaichain.net" ], - "108": [ - "https://mainnet-rpc.thundercore.com" + "61800": [ + "https://aium-rpc-dev.viacube.com" ], - "111": [ - "https://rpc.etherlite.org" + "61803": [ + "https://eticamainnet.eticascan.org", + "https://eticamainnet.eticaprotocol.org" ], - "119": [ - "https://evmapi.nuls.io", - "https://evmapi2.nuls.io" + "61916": [ + "https://sgrpc.doken.dev", + "https://nyrpc.doken.dev", + "https://ukrpc.doken.dev" ], - "122": [ - "https://rpc.fuse.io", - "https://fuse-pokt.nodies.app" + "62049": [ + "https://rpc-testnet.optopia.ai" ], - "123": [ - "https://rpc.fusespark.io" + "62050": [ + "https://rpc-mainnet.optopia.ai", + "https://rpc-mainnet-2.optopia.ai" ], - "124": [], - "126": [ - "https://rpc.mainnet.oychain.io", - "https://rpc.oychain.io" + "62298": [ + "https://rpc.devnet.citrea.xyz" ], - "127": [], - "128": [ - "https://http-mainnet.hecochain.com", - "https://http-mainnet-node.huobichain.com", - "https://hecoapi.terminet.io/rpc" + "62320": [ + "https://baklava-forno.celo-testnet.org" ], - "131": [ - "https://tokioswift.engram.tech", - "https://tokio-archive.engram.tech" + "62621": [ + "https://rpc.mtv.ac", + "https://rpc-eu.mtv.ac" ], - "137": [ - "https://rpc-mainnet.maticvigil.com", - "https://polygon-rpc.com", - "https://rpc-mainnet.matic.network", - "https://matic-mainnet-full-rpc.bwarelabs.com", - "https://matic-mainnet-archive-rpc.bwarelabs.com", - "https://polygonapi.terminet.io/rpc", - "https://polygon-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", - "https://polygon-mainnet-public.unifra.io", - "https://polygon.llamarpc.com", - "https://endpoints.omniatech.io/v1/matic/mainnet/public", - "https://polygon-pokt.nodies.app", - "https://1rpc.io/matic", - "https://polygon-bor-rpc.publicnode.com", - "https://polygon.drpc.org", - "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" + "62831": [ + "https://subnets.avax.network/plyr/testnet/rpc" ], - "142": [ - "https://rpc.prodax.io" + "63000": [ + "https://rpc.ecredits.com" ], - "163": [ - "https://node.mainnet.lightstreams.io" + "63001": [ + "https://rpc.tst.ecredits.com" ], - "167": [ - "https://node.atoshi.io", - "https://node2.atoshi.io", - "https://node3.atoshi.io" + "65450": [ + "https://mainnet-rpc.scolcoin.com" ], - "169": [ - "https://pacific-rpc.manta.network/http", - "https://1rpc.io/manta" + "66988": [ + "https://rpc.test.janusnetwork.io" ], - "186": [ - "https://rpc.seelen.pro/" + "67588": [ + "http://testnet.cosmicchain.site:3344" ], - "188": [ - "https://mainnet.bmcchain.com/" + "68770": [ + "https://rpc.dm2verse.dmm.com" ], - "195": [], - "199": [ - "https://rpc.bittorrentchain.io/" + "69420": [ + "https://rpc.condrieu.ethdevops.io:8545" ], - "200": [ - "https://arbitrum.xdaichain.com" + "70000": [ + "https://proxy.thinkiumrpc.net" ], - "204": [ - "https://opbnb-rpc.publicnode.com", - "https://1rpc.io/opbnb" + "70001": [ + "https://proxy1.thinkiumrpc.net" ], - "211": [], - "217": [ - "https://rpc2.siriusnet.io" + "70002": [ + "https://proxy2.thinkiumrpc.net" ], - "222": [ - "https://blockchain-api-mainnet.permission.io/rpc" + "70103": [ + "https://proxy103.thinkiumrpc.net" ], - "246": [ - "https://rpc.energyweb.org" + "70700": [ + "https://rpc.apex.proofofplay.com" ], - "248": [ - "https://oasys-mainnet.gateway.pokt.network/v1/lb/c967bd31", - "https://oasys-mainnet-archival.gateway.pokt.network/v1/lb/c967bd31" + "71111": [ + "https://rpc-mainnet.guapcoinx.com", + "https://rpc-mainnet-1.guapcoinx.com", + "https://rpc-mainnet-2.guapcoinx.com" ], - "250": [ - "https://rpcapi.fantom.network", - "https://rpc.ftm.tools/", - "https://rpc.fantom.network", - "https://rpc2.fantom.network", - "https://rpc3.fantom.network", - "https://endpoints.omniatech.io/v1/fantom/mainnet/public", - "https://fantom-pokt.nodies.app", - "https://1rpc.io/ftm", - "https://fantom-rpc.publicnode.com", - "https://fantom.drpc.org" + "71393": [ + "https://godwoken-testnet-web3-rpc.ckbapp.dev", + "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" ], - "255": [ - "https://1rpc.io/kroma" + "71401": [ + "https://godwoken-testnet-v1.ckbapp.dev", + "https://v1.testnet.godwoken.io/rpc" ], - "256": [ - "https://hecotestapi.terminet.io/rpc" + "71402": [ + "https://v1.mainnet.godwoken.io/rpc" ], - "258": [], - "262": [ - "https://sur.nilin.org" + "72778": [ + "https://www.ankara-cagacrypto.com", + "wss://wss.ankara-cagacrypto.com" ], - "288": [ - "https://mainnet.boba.network/", - "https://1rpc.io/boba/eth" + "72992": [ + "https://mainnet-rpc.grokchain.dev" ], - "300": [], - "311": [ - "https://mainapi.omaxray.com/" + "73114": [ + "https://rpc1-testnet.icbnetwork.info", + "https://rpc2-testnet.icbnetwork.info" ], - "314": [ - "https://api.node.glif.io", - "https://node.filutils.com/rpc/v1", - "https://api.chain.love/rpc/v1" + "73115": [ + "https://rpc1-mainnet.icbnetwork.info", + "https://rpc2-mainnet.icbnetwork.info" ], - "321": [ - "https://rpc-mainnet.kcc.network", - "https://kcc.mytokenpocket.vip", - "https://kcc-rpc.com" + "73799": [ + "https://volta-rpc.energyweb.org", + "wss://volta-rpc.energyweb.org/ws" ], - "324": [ - "https://zksync.meowrpc.com", - "https://zksync.drpc.org", - "https://1rpc.io/zksync2-era" + "73927": [ + "https://geth.mvm.dev" ], - "333": [], - "336": [ - "https://rpc.shiden.astar.network:8545/" + "75512": [ + "https://rpc.geekout-pte.com" ], - "338": [ - "https://evm-t3.cronos.org/" + "75513": [ + "https://rpc-testnet.geekout-pte.com" ], - "361": [ - "https://eth-rpc-api.thetatoken.org/rpc" + "77001": [ + "https://public-node.api.boraportal.com/bora/mainnet", + "https://public-node.api.boraportal.io/bora/mainnet" ], - "369": [ - "https://rpc.pulsechain.com", - "https://rpc-pulsechain.g4mm4.io", - "https://evex.cloud/pulserpc", - "https://pulse-s.projectpi.xyz", - "https://pulsechain-rpc.publicnode.com" + "77238": [ + "https://testnet-rpc.foundryscan.org" ], - "385": [], - "416": [ - "https://rpc.sx.technology" + "77612": [ + "https://mainnet-rpc.vention.network" ], - "420": [ - "https://endpoints.omniatech.io/v1/op/goerli/public", - "https://optimism-goerli-rpc.publicnode.com" + "77777": [ + "http://toronet.org/rpc" ], - "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" + "78110": [ + "https://ethnode.primusmoney.com/firenze" ], - "499": [], - "512": [ - "https://rpc.acuteangle.com" + "78281": [ + "https://dragonfly-rpc.switch.ch", + "https://dragonfly-rpc.kore-technologies.ch", + "https://dragonfly-rpc.phoenix-systems.io", + "https://dragonfly-rpc.block-spirit.ch" ], - "530": [ - "https://fx-json-web3.portfolio-x.xyz:8545/" + "78430": [ + "https://subnets.avax.network/amplify/testnet/rpc" ], - "555": [ - "https://rpc.velaverse.io" + "78431": [ + "https://subnets.avax.network/bulletin/testnet/rpc" ], - "558": [ - "https://rpc.tao.network" + "78432": [ + "https://subnets.avax.network/conduit/testnet/rpc" ], - "570": [ - "https://rpc.rollux.com", - "https://rollux.rpc.syscoin.org" + "78600": [ + "https://rpc-vanguard.vanarchain.com", + "wss://ws-vanguard.vanarchain.com" ], - "592": [ - "https://evm.astar.network/", - "https://rpc.astar.network:8545", - "https://getblock.io/nodes/bsc/", - "https://1rpc.io/astr" + "79879": [ + "https://rpc-testnet.goldsmartchain.com" ], - "595": [], - "686": [ - "https://eth-rpc-karura.aca-staging.network", - "https://rpc.evm.karura.network" + "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" ], - "707": [], - "777": [ - "https://node.cheapeth.org/rpc" + "80002": [ + "https://rpc-amoy.polygon.technology", + "https://polygon-amoy-bor-rpc.publicnode.com", + "wss://polygon-amoy-bor-rpc.publicnode.com" ], - "787": [ - "https://eth-rpc-acala.aca-staging.network", - "https://rpc.evm.acala.network" + "80085": [ + "https://artio.rpc.berachain.com", + "https://rpc.ankr.com/berachain_testnet" ], - "803": [], - "813": [ - "https://mainnet.meerlabs.com" + "80096": [ + "https://hizoco.net/rpc" ], - "820": [ - "https://rpc.callisto.network", - "https://clo-geth.0xinfra.com/" + "81041": [ + "https://mainnet-rpc.nordekscan.com" ], - "880": [], - "888": [ - "https://gwan-ssl.wandevs.org:56891", - "https://gwan2-ssl.wandevs.org" + "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" ], - "943": [ - "https://pulsetest-s.projectpi.xyz", - "https://pulsechain-testnet-rpc.publicnode.com" + "81720": [ + "https://rpc.quantumscan.org" ], - "977": [], - "998": [], - "1001": [ - "https://public-en-baobab.klaytn.net" + "82459": [ + "https://rpc.test.smartlayer.network" ], - "1003": [], - "1010": [ - "https://meta.evrice.com" + "83872": [ + "https://mainnet-rpc.zedscan.net" ], - "1012": [ - "https://global.rpc.mainnet.newtonproject.org" + "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" ], - "1022": [], - "1024": [ - "https://api-para.clover.finance" + "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" ], - "1030": [ - "https://evm.confluxrpc.com", - "https://conflux-espace-public.unifra.io" + "84886": [ + "https://mainnet.aerielab.io" ], - "1072": [ - "https://json-rpc.evm.testnet.shimmer.network/" + "85449": [ + "http://testnet.cybertrust.space:48501" ], - "1088": [ - "https://andromeda.metis.io/?owner=1088", - "https://metis-pokt.nodies.app" + "88002": [ + "https://api.proteus.nautchain.xyz/solana" ], - "1089": [ - "https://humans-mainnet-evm.itrocket.net" + "88559": [ + "https://inoai-network.com" ], - "1100": [ - "https://jsonrpc.dymension.nodestake.org", - "https://evm-archive.dymd.bitszn.com", - "https://dymension.liquify.com/json-rpc", - "https://dymension-evm.kynraze.com" + "88817": [ + "https://rpc-testnet.unit0.dev" ], - "1101": [ - "https://1rpc.io/polygon/zkevm", - "https://polygon-zkevm.drpc.org" + "88819": [ + "https://rpc-stagenet.unit0.dev" ], - "1115": [ - "https://rpc.test.btcs.network" + "88882": [ + "https://spicy-rpc.chiliz.com" ], - "1116": [ - "https://rpc.coredao.org", - "https://core.public.infstones.com", - "https://1rpc.io/core" + "88888": [ + "https://rpc.chiliz.com", + "https://rpc.ankr.com/chiliz", + "https://chiliz.publicnode.com" ], - "1130": [ - "https://dmc.mydefichain.com/mainnet", - "https://dmc01.mydefichain.com/mainnet" + "90001": [ + "https://testnet-fx-json-web3.functionx.io:8545" ], - "1131": [ - "https://dmc.mydefichain.com/testnet", - "https://dmc01.mydefichain.com/testnet", - "https://eth.testnet.ocean.jellyfishsdk.com/" + "90210": [ + "https://rpc.beverlyhills.ethdevops.io:8545" ], - "1139": [ - "https://mathchain.maiziqianbao.net/rpc" + "90354": [ + "https://rpc-camp-network-4xje7wy105.t.conduit.xyz" ], - "1197": [], - "1202": [], - "1213": [ - "https://dataseed.popcateum.org" + "91002": [ + "https://triton.api.nautchain.xyz" ], - "1214": [], - "1231": [ - "https://ultron-rpc.net" + "91120": [ + "https://rpc.chain.metadap.io", + "wss://rpc-ws.chain.metadap.io" ], - "1246": [ - "https://rpc-cnx.omplatform.com" + "91715": [ + "https://test-rpc.combonetwork.io" ], - "1280": [ - "https://nodes.halo.land" + "92001": [ + "https://evm.lambda.top" ], - "1284": [ - "https://rpc.api.moonbeam.network", - "https://1rpc.io/glmr", - "https://endpoints.omniatech.io/v1/moonbeam/mainnet/public", - "https://moonbeam-rpc.publicnode.com" + "93572": [ + "https://testnet.liquidlayer.network" ], - "1285": [ - "https://moonriver-rpc.publicnode.com" + "96970": [ + "https://mantis-rpc.switch.ch", + "https://mantis-rpc.kore-technologies.ch", + "https://mantis-rpc.phoenix-systems.io" ], - "1287": [ - "https://rpc.testnet.moonbeam.network" + "97531": [ + "https://node.greenchain.app/rpc" ], - "1288": [], - "1338": [ - "https://rpc.atlantischain.network/" + "97970": [ + "https://testnet-rpc.optimusz7.com" ], - "1339": [ - "https://rpc.elysiumchain.tech/", - "https://rpc.elysiumchain.us/" + "98881": [ + "https://rpc.ebi.xyz" ], - "1440": [], - "1442": [], - "1501": [ - "https://rpc-canary-1.bevm.io/", - "https://rpc-canary-2.bevm.io/" + "99099": [ + "https://testnet-rpc.eliberty.ngo" ], - "1506": [ - "https://mainnet.sherpax.io/rpc" + "99998": [ + "https://testnet.rpc.uschain.network" ], - "1515": [ - "https://beagle.chat/eth" + "99999": [ + "https://rpc.uschain.network" ], - "1618": [ - "https://send.catechain.com" + "100000": [ + "http://jrpc.mainnet.quarkchain.io:38391" ], - "1620": [], - "1657": [ - "https://dataseed1.btachain.com/" + "100001": [ + "http://eth-jrpc.mainnet.quarkchain.io:39000", + "https://mainnet-s0-ethapi.quarkchain.io" ], - "1707": [ - "https://rpc.blockchain.or.th" + "100002": [ + "http://eth-jrpc.mainnet.quarkchain.io:39001", + "https://mainnet-s1-ethapi.quarkchain.io" ], - "1708": [ - "https://rpc.testnet.blockchain.or.th" + "100003": [ + "http://eth-jrpc.mainnet.quarkchain.io:39002", + "https://mainnet-s2-ethapi.quarkchain.io" ], - "1856": [], - "1881": [ - "https://rpc.cartenz.works" + "100004": [ + "http://eth-jrpc.mainnet.quarkchain.io:39003", + "https://mainnet-s3-ethapi.quarkchain.io" ], - "1972": [ - "https://rpc2.redecoin.eu" + "100005": [ + "http://eth-jrpc.mainnet.quarkchain.io:39004", + "https://mainnet-s4-ethapi.quarkchain.io" ], - "1975": [ - "https://rpc.onuschain.io" + "100006": [ + "http://eth-jrpc.mainnet.quarkchain.io:39005", + "https://mainnet-s5-ethapi.quarkchain.io" ], - "1987": [], - "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" + "100007": [ + "http://eth-jrpc.mainnet.quarkchain.io:39006", + "https://mainnet-s6-ethapi.quarkchain.io" ], - "2016": [ - "https://eu-rpc.mainnetz.io" + "100008": [ + "http://eth-jrpc.mainnet.quarkchain.io:39007", + "https://mainnet-s7-ethapi.quarkchain.io" ], - "2021": [ - "https://mainnet2.edgewa.re/evm", - "https://mainnet3.edgewa.re/evm", - "https://edgeware-evm.jelliedowl.net/" + "100011": [ + "https://mainnet-l2-ethapi.quarkchain.io" ], - "2025": [ - "https://mainnet.rangersprotocol.com/api/jsonrpc" + "101010": [ + "https://gtn.stabilityprotocol.com" ], - "2049": [ - "https://msc-rpc.movoscan.com/" + "102031": [ + "https://rpc.cc3-testnet.creditcoin.network" ], - "2077": [], - "2100": [ - "https://api.ecoball.org/ecoball/" + "103090": [ + "https://evm.cryptocurrencydevs.org", + "https://rpc.crystaleum.org" ], - "2213": [ - "https://seed4.evanesco.org:8546" + "103454": [ + "https://subnets.avax.network/masatestne/testnet/rpc" ], - "2222": [ - "https://evm.kava.io", - "https://kava-evm-rpc.publicnode.com", - "https://kava-pokt.nodies.app" + "104566": [ + "https://api.kaspaclassic.world", + "http://80.178.101.118:8000" ], - "2323": [], - "2332": [], - "2458": [], - "2468": [], - "2559": [], - "2612": [ - "https://api.ezchain.com/ext/bc/C/rpc" + "105105": [ + "https://rpc.stratisevm.com" ], - "3501": [ - "https://rpc.jfinchain.com" + "108801": [ + "rpcWorking:false", + "https://rpc.brochain.org", + "http://rpc.brochain.org", + "https://rpc.brochain.org/mainnet", + "http://rpc.brochain.org/mainnet" ], - "3639": [ - "https://rpc.ichainscan.com" + "110000": [ + "rpcWorking:false", + "http://jrpc.devnet.quarkchain.io:38391" ], - "3690": [], - "4002": [ - "https://rpc.testnet.fantom.network/", - "https://endpoints.omniatech.io/v1/fantom/testnet/public", - "https://fantom-testnet-rpc.publicnode.com" + "110001": [ + "http://eth-jrpc.devnet.quarkchain.io:39900", + "https://devnet-s0-ethapi.quarkchain.io" ], - "4139": [ - "https://humans-testnet-evm.itrocket.net" + "110002": [ + "http://eth-jrpc.devnet.quarkchain.io:39901", + "https://devnet-s1-ethapi.quarkchain.io" ], - "4181": [ - "https://rpc1.phi.network" + "110003": [ + "http://eth-jrpc.devnet.quarkchain.io:39902", + "https://devnet-s2-ethapi.quarkchain.io" ], - "4444": [ - "https://janus.htmlcoin.dev/janus/" + "110004": [ + "http://eth-jrpc.devnet.quarkchain.io:39903", + "https://devnet-s3-ethapi.quarkchain.io" ], - "4689": [ - "https://babel-api.mainnet.iotex.io", - "https://babel-api.mainnet.iotex.one", - "https://babel-api.fastblocks.io" + "110005": [ + "http://eth-jrpc.devnet.quarkchain.io:39904", + "https://devnet-s4-ethapi.quarkchain.io" ], - "5000": [ - "https://mantle-rpc.publicnode.com", - "https://mantle.drpc.org", - "https://1rpc.io/mantle" + "110006": [ + "http://eth-jrpc.devnet.quarkchain.io:39905", + "https://devnet-s5-ethapi.quarkchain.io" ], - "5050": [ - "https://rpc.liquidchain.net/", - "https://rpc.xlcscan.com/" + "110007": [ + "http://eth-jrpc.devnet.quarkchain.io:39906", + "https://devnet-s6-ethapi.quarkchain.io" ], - "5165": [ - "https://bahamut-rpc.publicnode.com" + "110008": [ + "http://eth-jrpc.devnet.quarkchain.io:39907", + "https://devnet-s7-ethapi.quarkchain.io" ], - "5177": [], - "5197": [ - "https://mainnet.eraswap.network" + "110011": [ + "https://testnet-l2-ethapi.quarkchain.io" ], - "5315": [], - "5551": [ - "https://l2.nahmii.io/" + "111000": [ + "https://rpc.test.siberium.net" ], - "5700": [ - "https://rollux.rpc.tanenbaum.io", - "https://syscoin-tanenbaum-evm-rpc.publicnode.com" + "111111": [ + "https://rpc.main.siberium.net", + "https://rpc.main.siberium.net.ru" ], - "5729": [ - "https://rpc-testnet.hika.network" + "111188": [ + "https://real.drpc.org", + "wss://real.drpc.org" ], - "5869": [ - "https://proxy.wegochain.io" + "112358": [ + "https://rpc.metachain.one", + "https://rpc2.metachain.one" ], - "6363": [ - "https://dsc-rpc.digitsoul.co.th" + "119139": [ + "https://rpc.testnet.chain.metadap.io", + "wss://rpc-ws.testnet.chain.metadap.io" ], - "6626": [ - "https://http-mainnet.chain.pixie.xyz" + "123456": [ + "https://devnet.adilchain-rpc.io" ], - "6688": [ - "https://iris-evm-rpc.publicnode.com" + "128123": [ + "https://node.ghostnet.etherlink.com" ], - "7000": [ - "https://zeta.rpcgrid.com" + "131313": [ + "https://testnode.dioneprotocol.com/ext/bc/D/rpc" ], - "7001": [], - "7070": [ - "https://planq-rpc.nodies.app", - "https://jsonrpc.planq.nodestake.top/" + "131419": [ + "https://rpc.node1.etnd.pro" ], - "7341": [ - "https://rpc.shyft.network/" + "132902": [ + "https://testnet-rpc.form.network/http", + "wss://testnet-rpc.form.network/ws" ], - "7700": [ - "https://canto.gravitychain.io/", - "https://canto.evm.chandrastation.com/", - "https://jsonrpc.canto.nodestake.top/", - "https://canto.dexvaults.com/", - "https://canto-rpc.ansybl.io" + "141319": [ + "https://testnet-api.magape.io/chain" ], - "7777": [ - "https://testnet1.rotw.games", - "https://testnet2.rotw.games", - "https://testnet3.rotw.games", - "https://testnet4.rotw.games", - "https://testnet5.rotw.games" + "142857": [ + "https://rpc1.icplaza.pro", + "https://rpcmainnet.ic-plaza.org" ], - "7895": [], - "8000": [ - "https://dataseed.testnet.teleport.network" + "165279": [ + "https://mainnet-rpc.eclatscan.com" ], - "8081": [], - "8082": [], - "8131": [ - "https://testnet.meerlabs.com" + "167000": [ + "https://rpc.mainnet.taiko.xyz", + "wss://ws.mainnet.taiko.xyz" ], - "8217": [ - "https://public-en-cypress.klaytn.net", - "https://1rpc.io/klay", - "https://klaytn-pokt.nodies.app", - "https://klaytn.drpc.org" + "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" ], - "8453": [ - "https://mainnet.base.org", - "https://developer-access-mainnet.base.org", - "https://rpc.notadegen.com/base", - "https://base.llamarpc.com", - "https://1rpc.io/base", - "https://base-pokt.nodies.app", - "https://base.meowrpc.com", - "https://base-rpc.publicnode.com", - "https://base.drpc.org", - "https://endpoints.omniatech.io/v1/base/mainnet/public" + "167009": [ + "https://rpc.hekla.taiko.xyz", + "wss://ws.hekla.taiko.xyz" ], - "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" + "188710": [ + "https://mainnet-rpc.biticablockchain.com" ], - "8995": [ - "https://core.bloxberg.org" + "188881": [ + "https://testnet.condor.systems/rpc" ], - "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" + "192940": [ + "https://rpc-testnet.mindnetwork.xyz", + "wss://rpc-testnet.mindnetwork.xyz" ], - "9001": [ - "https://jsonrpc-evmos.goldenratiostaking.net", - "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-pokt.nodies.app", - "https://evmos-evm-rpc.publicnode.com" + "200000": [ + "https://rpc_testnet.xfair.ai", + "wss://rpc_testnet.xfair.ai" ], - "9100": [], - "10000": [ - "https://smartbch.fountainhead.cash/mainnet", - "https://global.uat.cash", - "https://rpc.uatvo.com" + "200101": [ + "https://rpc-devnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" ], - "10086": [], - "10101": [ - "https://eu.mainnet.xixoio.com" + "200202": [ + "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" ], - "10200": [ - "https://rpc.chiadochain.net", - "https://gnosis-chiado-rpc.publicnode.com", - "https://1rpc.io/gnosis" + "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" ], - "10248": [], - "11111": [ - "https://api.trywagmi.xyz/rpc" + "201018": [ + "https://openapi.alaya.network/rpc", + "wss://openapi.alaya.network/ws" ], - "11235": [ - "https://haqq-evm-rpc.publicnode.com" + "201030": [ + "https://devnetopenapi.alaya.network/rpc", + "wss://devnetopenapi.alaya.network/ws" ], - "12052": [ - "https://zerorpc.singularity.gold" + "201804": [ + "https://chain-rpc.mythicalgames.com" ], - "13000": [ - "https://rpc.ssquad.games" + "202020": [ + "https://testnet-val.decimalchain.com/web3" ], - "13381": [ - "https://rpc.phoenixplorer.com/" + "202212": [ + "https://x1-devnet.xen.network" ], - "15551": [], - "15557": [], - "16000": [], - "17000": [ - "https://ethereum-holesky-rpc.publicnode.com", - "https://1rpc.io/holesky", - "https://holesky-rpc.nocturnode.tech" + "202401": [ + "http://39.119.118.216:8545" ], - "17777": [], - "18159": [ - "https://mainnet-rpc.memescan.io/", - "https://mainnet-rpc2.memescan.io/", - "https://mainnet-rpc3.memescan.io/", - "https://mainnet-rpc4.memescan.io/" + "202624": [ + "https://jellie-rpc.twala.io", + "wss://jellie-rpc-wss.twala.io" ], - "19845": [], - "21816": [ - "https://seed.omlira.com" + "204005": [ + "https://x1-testnet.xen.network" ], - "23294": [ - "https://1rpc.io/oasis/sapphire" + "205205": [ + "https://auroria.rpc.stratisevm.com" ], - "24484": [], - "24734": [ - "https://node1.mintme.com" + "210049": [ + "https://rpc.gitagi.org" ], - "31102": [], - "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" + "210425": [ + "https://openapi2.platon.network/rpc", + "wss://openapi2.platon.network/ws" ], - "32659": [ - "https://mainnet.fusionnetwork.io" + "220315": [ + "http://node.masnet.ai:8545" ], - "34443": [ - "https://1rpc.io/mode" + "221230": [ + "https://eth.reapchain.org" ], - "35011": [], - "35441": [], - "39797": [ - "https://nodeapi.energi.network", - "https://explorer.energi.network/api/eth-rpc" + "221231": [ + "https://test-eth.reapchain.org" ], - "39815": [ - "https://mainnet.oho.ai", - "https://mainnet-rpc.ohoscan.com", - "https://mainnet-rpc2.ohoscan.com" + "222222": [ + "https://rpc.hydradx.cloud", + "wss://rpc.hydradx.cloud" ], - "42069": [], - "42161": [ - "https://arb1.arbitrum.io/rpc", - "https://arbitrum.llamarpc.com", - "https://1rpc.io/arb", - "https://arb-pokt.nodies.app", - "https://endpoints.omniatech.io/v1/arbitrum/one/public", - "https://arbitrum-one-rpc.publicnode.com", - "https://arbitrum.meowrpc.com", - "https://arbitrum.drpc.org", - "https://rpc.tornadoeth.cash/arbitrum" + "222555": [ + "https://rpc.deeplnetwork.org" ], - "42170": [ - "https://nova.arbitrum.io/rpc", - "https://arbitrum-nova-rpc.publicnode.com", - "https://arbitrum-nova.drpc.org" + "222666": [ + "https://testnet.deeplnetwork.org" ], - "42220": [ - "https://forno.celo.org", - "https://1rpc.io/celo" + "224168": [ + "https://mainnet.tafchain.com/v1" ], - "42262": [ - "https://emerald.oasis.dev/", - "https://1rpc.io/oasis/emerald" + "224422": [ + "https://rpc1.conet.network" ], - "43110": [], - "43113": [ - "https://api.avax-test.network/ext/bc/C/rpc", - "https://avalanchetestapi.terminet.io/ext/bc/C/rpc", - "https://endpoints.omniatech.io/v1/avax/fuji/public", - "https://avalanche-fuji-c-chain-rpc.publicnode.com" + "224433": [ + "https://rpc.conet.network" ], - "43114": [ - "https://api.avax.network/ext/bc/C/rpc", - "https://avalanche.public-rpc.com", - "https://avalancheapi.terminet.io/ext/bc/C/rpc", - "https://avalanche-c-chain-rpc.publicnode.com", - "https://1rpc.io/avax/c", - "https://avax-pokt.nodies.app/ext/bc/C/rpc", - "https://endpoints.omniatech.io/v1/avax/mainnet/public", - "https://avax.meowrpc.com", - "https://avalanche.drpc.org", - "https://rpc.tornadoeth.cash/avax" + "230315": [ + "https://testnet.hashkeychain/rpc" ], - "45000": [ - "https://rpc.autobahn.network" + "234666": [ + "https://testnet1.haymo.network" ], - "47805": [ - "https://rpc.rei.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" ], - "50001": [ - "https://rpc.oracle.liveplex.io" + "256256": [ + "https://mainnet.block.caduceus.foundation", + "wss://mainnet.block.caduceus.foundation" ], - "53935": [ - "https://avax-pokt.nodies.app/ext/bc/q2aTwKuyzgs8pynF7UXBZCU7DejbZbZ6EUyHr3JQzYgwNPUPi/rpc" + "262371": [ + "https://testnet-rpc.eclatscan.com" ], - "55555": [ - "https://rei-rpc.moonrhythm.io" + "266256": [ + "https://gzn-test.linksme.info" ], - "59140": [], - "59144": [ - "https://1rpc.io/linea", - "https://linea.drpc.org", - "https://linea.decubate.com" + "271271": [ + "https://rpctest.egonscan.com" ], - "63000": [ - "https://rpc.ecredits.com" + "281121": [ + "rpcWorking:false", + "https://socialsmartchain.digitalnext.business" ], - "70000": [], - "70001": [ - "https://proxy1.thinkiumrpc.net/" + "282828": [ + "https://sepolia.zillnet.io/rpc" ], - "70002": [ - "https://proxy2.thinkiumrpc.net/" + "309075": [ + "https://mainnet-rpc.oneworldchain.org" ], - "70103": [ - "https://proxy103.thinkiumrpc.net/" + "313313": [ + "https://testnet.saharalabs.ai" ], - "71394": [ - "https://mainnet.godwoken.io/rpc/eth-wallet" + "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" ], - "80001": [ - "https://rpc-mumbai.maticvigil.com", - "https://polygontestapi.terminet.io/rpc", - "https://endpoints.omniatech.io/v1/matic/mumbai/public", - "https://polygon-mumbai-bor-rpc.publicnode.com", - "https://polygon-mumbai-pokt.nodies.app" + "322202": [ + "https://mainnet-rpc.parex.network" ], - "81457": [ - "https://rpc.blast.io", - "https://blast.din.dev/rpc", - "https://blastl2-mainnet.public.blastapi.io", - "https://blast.blockpi.network/v1/rpc/public" + "323213": [ + "https://testnet-rpc.bloomgenesis.com" ], - "84531": [ - "https://1rpc.io/base-goerli", - "https://base-goerli-rpc.publicnode.com", - "https://endpoints.omniatech.io/v1/base/goerli/public" + "330844": [ + "https://mainnet-rpc.tscscan.com" ], - "84532": [ - "https://rpc.notadegen.com/base/sepolia" + "333313": [ + "https://mainnet-rpc.bloomgenesis.com" ], - "99999": [ - "https://rpc.uschain.network" + "333331": [ + "https://test.rpc.avescoin.io" ], - "100000": [], - "100001": [], - "100002": [], - "100003": [], - "100004": [], - "100005": [], - "100006": [], - "100007": [], - "100008": [], - "103090": [ - "https://evm.cryptocurrencydevs.org", - "https://rpc.crystaleum.org" + "333333": [ + "https://rpctest.nativ3.network", + "wss://wstest.nativ3.network" ], - "108801": [], - "110000": [], - "110001": [], - "110002": [], - "110003": [], - "110004": [], - "110005": [], - "110006": [], - "110007": [], - "110008": [], - "142857": [], - "167008": [], - "200625": [ - "https://boot2.akroma.org/" + "333666": [ + "https://rpc.testnet.oonechain.com" ], - "201018": [ - "https://openapi.alaya.network/rpc" + "333777": [ + "https://rpc.dev.oonechain.com" ], - "210425": [], - "246529": [], - "256256": [ - "https://mainnet.block.caduceus.foundation" + "333888": [ + "https://sparta-rpc.polis.tech" ], - "281121": [], - "314159": [], "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", @@ -1313,36 +29221,212 @@ export const extraRpcs = { "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", - "https://api.stateless.solutions/arbitrum-one/v1/77abba85-53e4-4430-a332-a46deb9900ea" + "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" ], - "421614": [], "431140": [ - "https://rpc.markr.io/ext/" + "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" + "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" + "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://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" ], - "534353": [], - "534354": [ - "https://prealpha-rpc.scroll.io/l2" + "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" ], @@ -1350,8 +29434,66 @@ export const extraRpcs = { "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-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" @@ -1359,28 +29501,192 @@ export const extraRpcs = { "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" ], - "7762959": [], + "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://rpc.notadegen.com/eth/sepolia", + "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", - "https://1rpc.io/sepolia" + "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" ], - "11155420": [], - "13371337": [], "16658437": [ "https://testnet.plian.io/testnet" ], - "18289463": [], + "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", @@ -1388,76 +29694,307 @@ export const extraRpcs = { "https://rpc3.qkiscan.cn", "https://rpc1.qkiscan.io", "https://rpc2.qkiscan.io", - "https://rpc3.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" ], - "28945486": [], "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://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" ], - "168587773": [], + "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://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-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" ], - "1122334455": [], + "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" + "https://aurora.drpc.org", + "wss://aurora.drpc.org" ], "1313161555": [ - "https://endpoints.omniatech.io/v1/aurora/testnet/public" + "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" ], - "1313161556": [], "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://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://s1.api.harmony.one", + "https://api.s1.t.hmny.io", + "https://harmony-1.drpc.org", + "wss://harmony-1.drpc.org" ], - "1666600002": [ - "https://s2.api.harmony.one" - ], - "1666600003": [], "1666700000": [ - "https://endpoints.omniatech.io/v1/harmony/testnet-0/public" + "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" ], - "2021121117": [], - "3125659152": [], - "11297108109": [], - "836542336838601": [], - "11297108099": [], "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 8936c6c..994ccf5 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -1,6 +1,13 @@ import { JsonRpcProvider } from "@ethersproject/providers"; import { networkCurrencies, networkExplorers, networkRpcs } from "./constants"; -import { chainIds, networks } from "./dynamic"; +import { CHAINS_IDS, NETWORKS } from "./dynamic"; + +export type BlockExplorer = { + name: string; + url: string; + standard?: string; + icon?: string; +} export type ValidBlockData = { jsonrpc: string; @@ -19,6 +26,7 @@ export type Token = { }; export type NativeToken = { + name: string; symbol: string; decimals: number; }; @@ -45,63 +53,17 @@ export type NetworkCurrencies = typeof networkCurrencies; export type NetworkExplorers = typeof networkExplorers; export type ChainIds = { - -readonly [Key in keyof typeof chainIds]: typeof chainIds[Key] + -readonly [Key in keyof typeof CHAINS_IDS]: typeof CHAINS_IDS[Key] } export type ChainNames = { - -readonly [Key in keyof typeof networks]: typeof networks[Key] + -readonly [Key in keyof typeof NETWORKS]: typeof NETWORKS[Key] } export type ChainName = ChainIds[keyof ChainIds] | - "amoy" | - "sepolia" | - "telos-testnet" | - "chiado" | - "fantom-testnet" | - "bsc-testnet" | - "sepolia-optimism" | - "hekla" | - "sepolia-base" | - "fuji" | - "bittorrent" | - "donau" | - "polygon_zkevm_testnet" | - "kroma" | - "kroma-sepolia" | - "linea-sepolia" | - "scroll" | - "scroll-sepolia" | - "taiko" | - "cronos-testnet" | - "blast" | - "blast-testnet" | "anvil" | - "hardhat" | - (string & {}) + "hardhat" export type ChainId = ChainNames[keyof ChainNames] | - 80002 | - 11155111 | - 41 | - 10200 | - 4002 | - 97 | - 11155420 | - 167009 | - 84532 | - 43113 | - 199 | - 1028 | - 1442 | - 255 | - 2358 | - 59141 | - 534352 | - 534351 | - 167000 | - 338 | - 23888 | - 238 | 31337 | - 1337 | - (number & {}) + 1337 From 4f1bef3391265ae431b6d15c02f6d5bccf2fe001 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sat, 15 Jun 2024 22:15:55 +0100 Subject: [PATCH 07/14] chore: cspell, eslint --- .cspell.json | 4 +- .github/workflows/jest-testing.yml | 2 +- README.md | 3 +- build/esbuild-build-tests.ts | 1 - build/types.ts | 78 +- index.ts | 15 +- package.json | 2 +- tests/constants.test.ts | 194 +- tests/mocks/handler.ts | 17 +- tsconfig.json | 18 +- types/constants.ts | 19 +- types/dynamic.ts | 30705 ++++++++++++--------------- types/handler.ts | 19 +- types/rpc-handler.ts | 2 +- 14 files changed, 13489 insertions(+), 17590 deletions(-) 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..293dcde 100644 --- a/.github/workflows/jest-testing.yml +++ b/.github/workflows/jest-testing.yml @@ -31,7 +31,7 @@ jobs: - 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/esbuild-build-tests.ts b/build/esbuild-build-tests.ts index 4240194..ed3a51a 100644 --- a/build/esbuild-build-tests.ts +++ b/build/esbuild-build-tests.ts @@ -5,7 +5,6 @@ import * as fs from "fs"; const typescriptEntries = ["tests/mocks/rpc-service.ts", "tests/mocks/rpc-handler.ts", "tests/mocks/handler.ts"]; export const entries = [...typescriptEntries]; - export const esBuildContext: esbuild.BuildOptions = { entryPoints: entries, bundle: true, diff --git a/build/types.ts b/build/types.ts index f088748..b0fa656 100644 --- a/build/types.ts +++ b/build/types.ts @@ -1,6 +1,6 @@ -import { appendFile, writeFile } from 'fs/promises'; -import { BlockExplorer, NativeToken } from '../types/handler'; -import { generateChainData } from '../lib/chainlist/utils/fetch'; +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: @@ -13,56 +13,54 @@ import { generateChainData } from '../lib/chainlist/utils/fetch'; */ 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 = {}; + 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; + 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); - } + if (explorers && explorers.length > 0) { + idToExplorers[chainId] = explorers; + } - idToNativeCurrency[chainId] = nativeCurrency; + if (rpc && rpc.length > 0) { + const rpcs = rpc.filter((rpc: { url: string }) => rpc.url); + extraRpcs[chainId] = rpcs.map((rpc: { url: string }) => rpc.url); } - // Clear the file - await writeFile('types/dynamic.ts', ''); + idToNativeCurrency[chainId] = nativeCurrency; + } - await appendFile('types/dynamic.ts', `\nexport const CHAINS_IDS = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); - await appendFile('types/dynamic.ts', `\nexport const NETWORKS = ${JSON.stringify(networkToId, null, 2)} as const;\n`); - await appendFile('types/dynamic.ts', `\nexport const NETWORK_FAUCETS = ${JSON.stringify(idToFaucet, null, 2)};\n`); - await appendFile('types/dynamic.ts', `\nexport const NETWORK_EXPLORERS = ${JSON.stringify(idToExplorers, null, 2)};\n`); - await appendFile('types/dynamic.ts', `\nexport const NETWORK_CURRENCIES = ${JSON.stringify(idToNativeCurrency, null, 2)};\n`); - await appendFile('types/dynamic.ts', `\nexport const EXTRA_RPCS = ${JSON.stringify(extraRpcs, null, 2)};\n`); -} + // Clear the file + await writeFile("types/dynamic.ts", "/* eslint-disable sonarjs/no-duplicate-string */\n\n"); + await appendFile("types/dynamic.ts", `\nexport const CHAINS_IDS = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); + await appendFile("types/dynamic.ts", `\nexport const NETWORKS = ${JSON.stringify(networkToId, null, 2)} as const;\n`); + await appendFile("types/dynamic.ts", `\nexport const NETWORK_FAUCETS = ${JSON.stringify(idToFaucet, null, 2)};\n`); + await appendFile("types/dynamic.ts", `\nexport const NETWORK_EXPLORERS = ${JSON.stringify(idToExplorers, null, 2)};\n`); + await appendFile("types/dynamic.ts", `\nexport const NETWORK_CURRENCIES = ${JSON.stringify(idToNativeCurrency, null, 2)};\n`); + await appendFile("types/dynamic.ts", `\nexport const EXTRA_RPCS = ${JSON.stringify(extraRpcs, null, 2)};\n`); +} /** * this is the same source that chainlist pulls it's data from * but is has a lot more info that we'd benefit from such as explorers, * faucets, rpcs etc. - * + * * Writing this to a local file so that we can use it for improved static exports */ (async () => { - await createDynamicTypes(); -})().catch(console.error) - + await createDynamicTypes(); +})().catch(console.error); diff --git a/index.ts b/index.ts index 6ad1c30..22c7566 100644 --- a/index.ts +++ b/index.ts @@ -23,7 +23,7 @@ import { Token, ValidBlockData, ChainIds, - ChainName + ChainName, } from "./types/handler"; import { @@ -41,18 +41,7 @@ import { import { RPCHandler } from "./types/rpc-handler"; -export { - LOCAL_HOST, - getNetworkName, - getNetworkId, - networkCurrencies, - networkExplorers, - networkIds, - networkNames, - networkRpcs, - nftAddress, - permit2Address, -}; +export { LOCAL_HOST, getNetworkName, getNetworkId, networkCurrencies, networkExplorers, networkIds, networkNames, networkRpcs, nftAddress, permit2Address }; export type { ChainId, diff --git a/package.json b/package.json index e9cac70..50f7d42 100644 --- a/package.json +++ b/package.json @@ -87,4 +87,4 @@ ] }, "packageManager": "yarn@4.2.2" -} \ No newline at end of file +} diff --git a/tests/constants.test.ts b/tests/constants.test.ts index a4635f5..16e00bc 100644 --- a/tests/constants.test.ts +++ b/tests/constants.test.ts @@ -1,115 +1,107 @@ -import { getNetworkId, getNetworkName, networkCurrencies, networkExplorers, networkIds, networkNames } from "../types/constants" +import { getNetworkId, getNetworkName, networkCurrencies, networkExplorers, networkIds, networkNames } from "../types/constants"; import { ChainId, ChainName, NativeToken, ChainIds, ChainNames } 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 ChainId); - expect(result).toBe(expectedNetworkName); - }); + 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); }); - 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 ChainName); - expect(result).toBe(expectedNetworkId); - }); + 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 ChainId); + expect(result).toBe(expectedNetworkName); }); - - 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]); - }); - }); + }); + + 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); }); - const netIds = [ - 1, 100, 56, 80002, 137, 25 - ] as ChainId[]; - - 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>; + it("should return 0 for an unknown network name", () => { + const networkName = "unknown"; + const expectedNetworkId = -1; + const result = getNetworkId(networkName as ChainName); + expect(result).toBe(expectedNetworkId); + }); + }); - const expectedName = { - 1: "ethereum-mainnet", - 100: "gnosis", - 56: "bnb-smart-chain-mainnet", - 80002: "amoy", - 137: "polygon-mainnet", - 25: "cronos-mainnet", - } as Partial>; + describe("networkNames", () => { + it("should contain a name for each network", () => { + const networkIdValues = Object.values(networkIds).sort((a, b) => a.localeCompare(b)); - 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>; + const networkNameKeys = Object.keys(networkNames).sort((a, b) => a.localeCompare(b)); + // keys of networkIds are the values of networkNames + expect(networkIdValues).toEqual(networkNameKeys); - 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); - }); - }); + netIds.forEach((networkId) => { + const networkName = networkIds[networkId]; + expect(networkName).toBe(expectedName[networkId]); + }); }); - - 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); - }); - }); + }); + + const netIds = [1, 100, 56, 80002, 137, 25] as ChainId[]; + + 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); + }); }); - -}); \ No newline at end of file + }); + + 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 191c382..f585d35 100644 --- a/tests/mocks/handler.ts +++ b/tests/mocks/handler.ts @@ -45,17 +45,12 @@ export type NetworkCurrencies = typeof networkCurrencies; export type NetworkExplorers = typeof networkExplorers; export type ChainIds = { - -readonly [Key in keyof typeof CHAINS_IDS]: typeof CHAINS_IDS[Key] -} + -readonly [Key in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[Key]; +}; export type ChainNames = { - -readonly [Key in keyof typeof NETWORKS]: typeof NETWORKS[Key] -} - -export type ChainName = ChainIds[keyof ChainIds] | - "anvil" | - "hardhat" + -readonly [Key in keyof typeof NETWORKS]: (typeof NETWORKS)[Key]; +}; -export type ChainId = ChainNames[keyof ChainNames] | - 31337 | - 1337 +export type ChainName = ChainIds[keyof ChainIds] | "anvil" | "hardhat"; +export type ChainId = ChainNames[keyof ChainNames] | 31337 | 1337; diff --git a/tsconfig.json b/tsconfig.json index 65dc8cf..8b0f685 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,18 +12,6 @@ "declaration": true, "resolveJsonModule": true }, - "include": [ - "src/**/*", - "types/*.ts", - "index.ts" - ], - "exclude": [ - "node_modules", - "tests/**/*.ts", - "tests/*.ts", - "build", - "lib", - "dist", - "jest.config.ts" - ] -} \ No newline at end of file + "include": ["src/**/*", "types/*.ts", "index.ts"], + "exclude": ["node_modules", "tests/**/*.ts", "tests/*.ts", "build", "lib", "dist", "jest.config.ts"] +} diff --git a/types/constants.ts b/types/constants.ts index 59f7f4c..d056071 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -7,13 +7,13 @@ export const LOCAL_HOST = "http://127.0.0.1:8545"; // @ts-expect-error - some nets are deprecated and have reused names across chain ids const networkIds: Record = { - ...{ ...CHAINS_IDS as ChainIds }, // removing readonly + ...{ ...(CHAINS_IDS as ChainIds) }, // removing readonly 31337: "anvil", 1337: "hardhat", }; const networkNames: Record = { - ...{ ...NETWORKS as ChainNames }, // removing readonly + ...{ ...(NETWORKS as ChainNames) }, // removing readonly anvil: 31337, hardhat: 1337, }; @@ -22,14 +22,14 @@ Reflect.deleteProperty(networkNames, "geth-testnet"); // 1337 Reflect.deleteProperty(networkNames, "gochain-testnet"); // 31337 const networkRpcs = Object.fromEntries( - Object.entries(networkNames).map(([_, value]) => { + Object.entries(networkNames).map(([, value]) => { const chainRpcs = EXTRA_RPCS[value as unknown as keyof typeof EXTRA_RPCS]; return [value, chainRpcs] as [ChainId, string[]]; }) ) as Record; const networkExplorers = Object.fromEntries( - Object.entries(networkNames).map(([_, value]) => { + Object.entries(networkNames).map(([, value]) => { const chainExplorers = NETWORK_EXPLORERS[value as unknown as keyof typeof NETWORK_EXPLORERS]; return [value, chainExplorers] as [ChainId, BlockExplorer[]]; }) @@ -57,13 +57,4 @@ function getNetworkId(networkName: ChainName) { return networkId ?? -1; } -export { - networkIds, - networkNames, - networkRpcs, - networkCurrencies, - networkExplorers, - getNetworkName, - getNetworkId, - NETWORK_FAUCETS, -} \ No newline at end of file +export { networkIds, networkNames, networkRpcs, networkCurrencies, networkExplorers, getNetworkName, getNetworkId, NETWORK_FAUCETS }; diff --git a/types/dynamic.ts b/types/dynamic.ts index 0f0eeb0..9e632ea 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -1,3 +1,4 @@ +/* eslint-disable sonarjs/no-duplicate-string */ export const CHAINS_IDS = { "1": "ethereum-mainnet", @@ -1588,24 +1589,24 @@ export const CHAINS_IDS = { "666301171999": "pdc-mainnet", "6022140761023": "molereum-network", "2713017997578000": "dchain-testnet", - "2716446429837000": "dchain" + "2716446429837000": "dchain", } as const; export const NETWORKS = { "ethereum-mainnet": 1, "bnb-smart-chain-mainnet": 56, "arbitrum-one": 42161, - "base": 8453, + base: 8453, "avalanche-c-chain": 43114, "polygon-mainnet": 137, - "linea": 59144, + linea: 59144, "op-mainnet": 10, "cronos-mainnet": 25, - "mantle": 5000, - "pulsechain": 369, - "gnosis": 100, + mantle: 5000, + pulsechain: 369, + gnosis: 100, "filecoin---mainnet": 314, - "kava": 2222, + kava: 2222, "rootstock-mainnet": 30, "fantom-opera": 250, "celo-mainnet": 42220, @@ -1615,27 +1616,27 @@ export const NETWORKS = { "core-blockchain-mainnet": 1116, "manta-pacific-mainnet": 169, "telos-evm-mainnet": 40, - "astar": 592, + astar: 592, "iotex-network-mainnet": 4689, - "moonbeam": 1284, - "canto": 7700, + moonbeam: 1284, + canto: 7700, "conflux-espace": 1030, "aurora-mainnet": 1313161554, "xdc-network": 50, "meter-mainnet": 82, "okxchain-mainnet": 66, - "moonriver": 1285, + moonriver: 1285, "carbon-evm": 9790, "smart-bitcoin-cash": 10000, "boba-network": 288, "ultron-mainnet": 1231, "songbird-canary-network": 19, "zilliqa-evm": 32769, - "wanchain": 888, - "beam": 4337, + wanchain: 888, + beam: 4337, "vision---mainnet": 888888, "oasys-mainnet": 248, - "evmos": 9001, + evmos: 9001, "elastos-smart-chain": 20, "dogechain-mainnet": 2000, "onus-chain-mainnet": 1975, @@ -1659,23 +1660,23 @@ export const NETWORKS = { "loopnetwork-mainnet": 15551, "godwoken-mainnet": 71402, "omax-mainnet": 311, - "shiden": 336, - "ubiq": 8, + shiden: 336, + ubiq: 8, "syscoin-mainnet": 57, "jibchain-l1": 8899, "rei-network": 47805, "high-performance-blockchain": 269, "callisto-mainnet": 1, - "tenet": 1559, - "gochain": 60, + tenet: 1559, + gochain: 60, "bitgert-mainnet": 32520, "rei-chain-mainnet": 55555, - "palm": 11297108109, + palm: 11297108109, "expanse-network": 1, - "ropsten": 3, - "rinkeby": 4, - "goerli": 5, - "thaichain": 7, + ropsten: 3, + rinkeby: 4, + goerli: 5, + thaichain: 7, "ubiq-network-testnet": 2, "metadium-mainnet": 11, "metadium-testnet": 12, @@ -1690,7 +1691,7 @@ export const NETWORKS = { "ela-did-sidechain-testnet": 23, "kardiachain-mainnet": 0, "genesis-l1-testnet": 26, - "shibachain": 27, + shibachain: 27, "genesis-l1": 29, "rootstock-testnet": 31, "gooddata-testnet": 32, @@ -1699,7 +1700,7 @@ export const NETWORKS = { "tbwg-chain": 35, "dxchain-mainnet": 36, "xpla-mainnet": 37, - "valorbit": 38, + valorbit: 38, "u2u-solaris-mainnet": 39, "telos-evm-testnet": 41, "lukso-mainnet": 42, @@ -1716,7 +1717,7 @@ export const NETWORKS = { "zyx-mainnet": 55, "ontology-mainnet": 58, "mordor-testnet": 7, - "ellaism": 64, + ellaism: 64, "okexchain-testnet": 65, "dbchain-testnet": 67, "soterone-mainnet": 68, @@ -1724,43 +1725,43 @@ export const NETWORKS = { "hoo-smart-chain": 70, "conflux-espace-(testnet)": 71, "dxchain-testnet": 72, - "fncy": 73, + fncy: 73, "idchain-mainnet": 74, "decimal-smart-chain-mainnet": 75, - "mix": 76, + mix: 76, "poa-network-sokol": 77, "primuschain-mainnet": 78, "zenith-mainnet": 79, - "genechain": 80, + 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: 88, "viction-testnet": 89, "garizon-stage0": 90, "garizon-stage1": 91, "garizon-stage2": 92, "garizon-stage3": 93, - "swissdlt": 94, + swissdlt: 94, "camdl-mainnet": 95, "bitkub-chain": 96, "bnb-smart-chain-testnet": 97, "six-protocol": 98, "poa-network-core": 99, - "etherinc": 1, + etherinc: 1, "web3games-testnet": 102, "worldland-mainnet": 103, "kaiba-lightning-chain-testnet": 104, "web3games-devnet": 105, "nebula-testnet": 107, - "shibarium": 109, + shibarium: 109, "proton-testnet": 110, "etherlite-chain": 111, "coinbit-mainnet": 112, - "dehvo": 113, + dehvo: 113, "flare-testnet-coston2": 114, "uptick-mainnet": 117, "arcology-testnet": 118, @@ -1787,7 +1788,7 @@ export const NETWORKS = { "phi-network-v2": 144, "soraai-testnet": 145, "flag-mainnet": 147, - "shimmerevm": 148, + shimmerevm: 148, "six-protocol-testnet": 150, "redbelly-network-mainnet": 151, "redbelly-network-devnet": 152, @@ -1803,7 +1804,7 @@ export const NETWORKS = { "lightstreams-testnet": 162, "lightstreams-mainnet": 163, "omni-testnet": 164, - "omni": 166, + omni: 166, "atoshi-testnet": 167, "aioz-network": 168, "hoo-smart-chain-testnet": 170, @@ -1815,7 +1816,7 @@ export const NETWORKS = { "seele-mainnet": 186, "bmc-mainnet": 188, "bmc-testnet": 189, - "filefilego": 191, + filefilego: 191, "crypto-emergency": 193, "x-layer-testnet": 195, "x-layer-mainnet": 196, @@ -1828,7 +1829,7 @@ export const NETWORKS = { "vinuchain-testnet": 206, "vinuchain-network": 207, "structx-mainnet": 208, - "bitnet": 210, + bitnet: 210, "freight-trust-network": 0, "mapo-makalu": 212, "b2-hub-mainnet": 213, @@ -1840,21 +1841,21 @@ export const NETWORKS = { "lachain-mainnet": 225, "lachain-testnet": 226, "mind-network-mainnet": 228, - "swapdex": 230, + swapdex: 230, "protojumbo-testnet": 234, "deamchain-testnet": 236, "plinga-mainnet": 242, - "fraxtal": 252, - "kroma": 255, + fraxtal: 252, + kroma: 255, "huobi-eco-chain-testnet": 256, - "setheum": 258, + setheum: 258, "neonlink-mainnet": 259, "sur-blockchain-network": 1, - "neura": 266, + neura: 266, "neura-testnet": 267, "neura-devnet": 268, "egoncoin-mainnet": 271, - "lachain": 274, + lachain: 274, "xfair.ai-mainnet": 278, "bpx-blockchain": 279, "cronos-zkevm-testnet": 282, @@ -1868,7 +1869,7 @@ export const NETWORKS = { "neurochain-testnet": 303, "zksats-mainnet": 305, "lovely-network-testnet": 307, - "furtheon": 308, + furtheon: 308, "wyzth-testnet": 309, "neurochain-mainnet": 313, "kcc-testnet": 322, @@ -1884,7 +1885,7 @@ export const NETWORKS = { "consta-testnet": 371, "zkamoeba-testnet": 380, "zkamoeba-mainnet": 381, - "lisinski": 385, + lisinski: 385, "camdl-testnet": 395, "near-mainnet": 397, "near-testnet": 398, @@ -1894,7 +1895,7 @@ export const NETWORKS = { "syndr-l3": 404, "pepe-chain-mainnet": 411, "sx-network-mainnet": 416, - "latestnet": 418, + latestnet: 418, "optimism-goerli-testnet": 420, "viridis-mainnet": 422, "pgn-(public-goods-network)": 424, @@ -1906,7 +1907,7 @@ export const NETWORKS = { "arzio-chain": 456, "areon-network-testnet": 462, "areon-network-mainnet": 463, - "rupaya": 499, + rupaya: 499, "camino-c-chain": 1000, "columbus-test-network": 1001, "syndicate-chain": 510, @@ -1916,10 +1917,10 @@ export const NETWORKS = { "xt-smart-chain-mainnet": 1024, "firechain-mainnet": 529, "f(x)core-mainnet-network": 530, - "candle": 534, + candle: 534, "optrust-mainnet": 537, "pawchain-testnet": 542, - "testnet": 545, + testnet: 545, "vela1-chain-mainnet": 555, "tao-network": 558, "dogechain-testnet": 568, @@ -1932,42 +1933,42 @@ export const NETWORKS = { "vine-testnet": 601, "eiob-mainnet": 612, "graphlinq-blockchain-mainnet": 614, - "avocado": 634, - "previewnet": 646, + avocado: 634, + previewnet: 646, "sx-network-testnet": 647, "endurance-smart-chain-mainnet": 648, "kalichain-testnet": 653, - "kalichain": 654, - "ultronsmartchain": 662, + kalichain: 654, + ultronsmartchain: 662, "pixie-chain-testnet": 666, "laos-arrakis": 667, - "juncachain": 668, + juncachain: 668, "juncachain-testnet": 669, "karura-network": 686, - "redstone": 690, + redstone: 690, "star-social-testnet": 700, "darwinia-koi-testnet": 701, "blockchain-station-mainnet": 707, "blockchain-station-testnet": 708, - "highbury": 710, + highbury: 710, "vrcscan-mainnet": 713, "shibarium-beta": 719, "lycan-chain": 721, - "blucrates": 727, + blucrates: 727, "lovely-network-mainnet": 730, "vention-smart-chain-testnet": 741, "script-testnet": 742, - "mainnet": 747, - "ql1": 766, + mainnet: 747, + ql1: 766, "openchain-testnet": 776, - "cheapeth": 777, + cheapeth: 777, "maal-chain": 786, "acala-network": 787, "aerochain-testnet": 788, - "patex": 789, + patex: 789, "rupaya-testnet": 799, "lucid-blockchain": 800, - "haic": 803, + haic: 803, "portal-fantasy-chain-test": 808, "haven1-testnet": 810, "qitmeer-network-mainnet": 813, @@ -1998,7 +1999,7 @@ export const NETWORKS = { "munode-testnet": 956, "lyra-chain": 957, "btc20-smart-chain": 963, - "ethxy": 969, + ethxy: 969, "oort-mainnet": 970, "oort-huygens": 971, "oort-ascraeus": 972, @@ -2020,8 +2021,8 @@ export const NETWORKS = { "jumbochain-mainnet": 1009, "evrice-network": 1010, "rebus-mainnet": 1011, - "newton": 1012, - "sakura": 1022, + newton: 1012, + sakura: 1022, "clover-testnet": 1023, "clv-parachain": 1024, "bittorrent-chain-testnet": 1028, @@ -2034,7 +2035,7 @@ export const NETWORKS = { "mintara-mainnet": 1080, "humans.ai-mainnet": 1089, "moac-mainnet": 1099, - "dymension": 1100, + dymension: 1100, "polygon-zkevm": 1101, "blxq-testnet": 1107, "blxq-mainnet": 1108, @@ -2047,9 +2048,9 @@ export const NETWORKS = { "defichain-evm-network-mainnet": 1130, "defichain-evm-network-testnet": 1131, "defimetachain-changi-testnet": 1133, - "lisk": 1135, + lisk: 1135, "amstar-testnet": 1138, - "mathchain": 1139, + mathchain: 1139, "mathchain-testnet": 1140, "flag-testnet": 1147, "symplexia-smart-chain": 1149, @@ -2075,7 +2076,7 @@ export const NETWORKS = { "cic-chain-testnet": 1252, "halo-mainnet": 1280, "moonbase-alpha": 1287, - "moonrock": 1288, + moonrock: 1288, "swisstronik-testnet": 1291, "dos-fuji-subnet": 1311, "alyx-mainnet": 1314, @@ -2109,10 +2110,10 @@ export const NETWORKS = { "beagle-messaging-chain": 1515, "ethereum-inscription-mainnet": 1617, "catecoin-chain-mainnet": 1618, - "atheios": 11235813, + atheios: 11235813, "gravity-alpha-mainnet": 1625, - "btachain": 1657, - "liquichain": 1662, + btachain: 1657, + liquichain: 1662, "horizen-gobi-testnet": 1663, "mint-testnet": 1686, "mint-sepolia-testnet": 1687, @@ -2125,16 +2126,16 @@ export const NETWORKS = { "reya-network": 1729, "metal-l2-testnet": 1740, "metal-l2": 1750, - "partychain": 1773, + partychain: 1773, "gauss-mainnet": 1777, "zkbase-sepolia-testnet": 1789, - "kerleano": 1804, + kerleano: 1804, "rabbit-analog-testnet-chain": 1807, "cube-chain-mainnet": 1818, "cube-chain-testnet": 1819, "ruby-smart-chain-mainnet": 1821, - "teslafunds": 1, - "whitechain": 1875, + teslafunds: 1, + whitechain: 1875, "gitshock-cartenz-testnet": 1881, "lightlink-phoenix-mainnet": 1890, "lightlink-pegasus-testnet": 1891, @@ -2143,7 +2144,7 @@ export const NETWORKS = { "bitcichain-mainnet": 1907, "bitcichain-testnet": 1908, "merkle-scan": 1909, - "scalind": 1911, + scalind: 1911, "ruby-smart-chain-testnet": 1912, "upb-crescdi-testnet": 1918, "onus-chain-testnet": 1945, @@ -2152,29 +2153,29 @@ export const NETWORKS = { "dexilla-testnet": 1954, "aiw3-testnet": 1956, "selendra-network-mainnet": 1961, - "eleanor": 1967, + eleanor: 1967, "super-smart-chain-testnet": 1969, "super-smart-chain-mainnet": 1970, - "atelier": 1971, - "redecoin": 1972, + atelier: 1971, + redecoin: 1972, "eurus-testnet": 1984, - "satoshie": 1985, + satoshie: 1985, "satoshie-testnet": 1986, - "ethergem": 1987, + ethergem: 1987, "hubble-exchange": 1992, - "ekta": 1994, + ekta: 1994, "edexa-testnet": 1995, - "sanko": 1996, + sanko: 1996, "kyoto-testnet": 1998, "milkomeda-c1-mainnet": 2001, "milkomeda-a1-mainnet": 2002, "metalink-network": 2004, "cloudwalk-testnet": 2008, "cloudwalk-mainnet": 2009, - "panarchy": 1, + panarchy: 1, "now-chain": 2014, "mainnetz-mainnet": 2016, - "adiri": 2017, + adiri: 2017, "publicmint-devnet": 2018, "publicmint-testnet": 2019, "publicmint-mainnet": 2020, @@ -2184,21 +2185,21 @@ export const NETWORKS = { "swan-saturn-testnet": 2024, "rangers-protocol-mainnet": 2025, "edgeless-network": 2026, - "centrifuge": 2031, - "catalyst": 2032, + centrifuge: 2031, + catalyst: 2032, "phala-network": 2035, "kiwi-subnet": 2037, "shrapnel-testnet": 2038, "aleph-zero-testnet": 2039, "vanar-mainnet": 2040, - "neuroweb": 2043, + neuroweb: 2043, "shrapnel-subnet": 2044, "aiw3-mainnet": 2045, "stratos-testnet": 2047, - "stratos": 2048, + stratos: 2048, "movo-smart-chain-mainnet": 2049, "quokkacoin-mainnet": 2077, - "altair": 2088, + altair: 2088, "ecoball-mainnet": 2100, "ecoball-testnet-espuma": 2101, "exosama-network": 2109, @@ -2207,7 +2208,7 @@ export const NETWORKS = { "metaplayerone-mainnet": 2122, "metaplayerone-dubai-testnet": 2124, "bigshortbets-testnet": 2136, - "bigshortbets": 2137, + bigshortbets: 2137, "defi-oracle-meta-testnet": 21, "oneness-network": 2140, "oneness-testnet": 2141, @@ -2224,9 +2225,9 @@ export const NETWORKS = { "krest-network": 2241, "bomb-chain": 2300, "ebro-network": 2306, - "arevia": 2309, + arevia: 2309, "soma-network-testnet": 2323, - "altcoinchain": 2330, + altcoinchain: 2330, "rss3-vsl-sepolia-testnet": 2331, "soma-network-mainnet": 2332, "atleta-olympia": 2340, @@ -2237,7 +2238,7 @@ export const NETWORKS = { "bomb-chain-testnet": 2399, "tcg-verse-mainnet": 2400, "karak-mainnet": 2410, - "xodex": 10, + xodex: 10, "king-of-legends-devnet": 2425, "polygon-zkevm-cardona-testnet": 2442, "hybrid-chain-network-testnet": 2458, @@ -2247,21 +2248,21 @@ export const NETWORKS = { "inevm-mainnet": 2525, "kortho-mainnet": 2559, "techpay-mainnet": 2569, - "pocrnet": 2606, + pocrnet: 2606, "redlight-chain-mainnet": 2611, "ezchain-c-chain-mainnet": 2612, "ezchain-c-chain-testnet": 2613, "whitechain-testnet": 2625, - "apex": 2662, + apex: 2662, "morph-testnet": 2710, "k-laos": 2718, "xr-sepolia": 2730, "elizabeth-testnet": 2731, - "nanon": 2748, + nanon: 2748, "gm-network-mainnet": 2777, "morph-holesky": 2810, "elux-chain": 2907, - "hychain": 2911, + hychain: 2911, "xenon-chain-testnet": 2941, "bityuan-mainnet": 2999, "cennznet-rata": 3000, @@ -2291,7 +2292,7 @@ export const NETWORKS = { "jfin-chain": 3501, "pandoproject-mainnet": 3601, "pandoproject-testnet": 3602, - "tycooncoin": 3630, + tycooncoin: 3630, "botanix-testnet": 3636, "botanix-mainnet": 3637, "ichain-network": 3639, @@ -2300,7 +2301,7 @@ export const NETWORKS = { "empire-network": 3693, "senjepowers-testnet": 3698, "senjepowers-mainnet": 3699, - "crossbell": 3737, + crossbell: 3737, "astar-zkevm": 3776, "alveychain-mainnet": 3797, "tangle-testnet": 3799, @@ -2365,8 +2366,8 @@ export const NETWORKS = { "charmverse-testnet": 5104, "superloyalty-testnet": 5105, "azra-testnet": 5106, - "ham": 5112, - "bahamut": 5165, + ham: 5112, + bahamut: 5165, "smart-layer-network": 5169, "tlchain-network-mainnet": 5177, "eraswap-mainnet": 5197, @@ -2377,7 +2378,7 @@ export const NETWORKS = { "tritanium-testnet": 5353, "settlus-testnet": 5372, "edexa-mainnet": 5424, - "egochain": 5439, + egochain: 5439, "vex-evm-testnet": 5522, "chain-verse-mainnet": 5555, "opbnb-testnet": 5611, @@ -2389,8 +2390,8 @@ export const NETWORKS = { "syscoin-tanenbaum-testnet": 5700, "hika-network-testnet": 5729, "satoshichain-testnet": 5758, - "ganache": 5777, - "tangle": 5845, + ganache: 5777, + tangle: 5845, "ontology-testnet": 5851, "wegochain-rubidium-mainnet": 5869, "bouncebit-testnet": 6000, @@ -2399,35 +2400,35 @@ export const NETWORKS = { "tres-mainnet": 6066, "cascadia-testnet": 6102, "uptn-testnet": 6118, - "uptn": 6119, + uptn: 6119, "aura-euphoria-testnet": 6321, "aura-mainnet": 6322, "digit-soul-smart-chain": 6363, - "peerpay": 6502, + 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, + irishub: 6688, "ox-chain": 6699, "paxb-mainnet": 6701, "compverse-mainnet": 6779, "gold-smart-chain-mainnet": 6789, "pools-mainnet": 6868, - "polysmartchain": 6999, + 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, + nume: 7100, "help-the-homeless": 7118, "bitrock-mainnet": 7171, "xpla-verse": 7300, - "klyntar": 7331, + klyntar: 7331, "horizen-eon-mainnet": 7332, "shyft-mainnet": 7341, "raba-network-mainnet": 7484, @@ -2450,7 +2451,7 @@ export const NETWORKS = { "dot-blox": 7923, "mo-mainnet": 7924, "dos-chain": 7979, - "teleport": 8000, + teleport: 8000, "teleport-testnet": 8001, "mdgl-testnet": 8029, "boat-mainnet": 8047, @@ -2464,16 +2465,16 @@ export const NETWORKS = { "qitmeer-network-testnet": 8131, "qitmeer-network-mixnet": 8132, "qitmeer-network-privnet": 8133, - "amana": 8134, - "flana": 8135, - "mizana": 8136, + 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, + korthotest: 8285, + lorenzo: 8329, "dracones-financial-services": 8387, "toki-network": 8654, "toki-testnet": 8655, @@ -2487,21 +2488,21 @@ export const NETWORKS = { "iota-evm": 8822, "hydra-chain-testnet": 8844, "maro-blockchain-mainnet": 8848, - "superlumio": 8866, - "unique": 8880, + superlumio: 8866, + unique: 8880, "quartz-by-unique": 8881, "opal-testnet-by-unique": 8882, "sapphire-by-unique": 8883, - "xanachain": 8888, + xanachain: 8888, "vyvo-smart-chain": 8889, "orenium-testnet-protocol": 8890, "mammoth-mainnet": 8898, - "algen": 8911, + algen: 8911, "algen-testnet": 8912, "algen-layer2": 8921, "algen-layer2-testnet": 8922, "giant-mammoth-mainnet": 8989, - "bloxberg": 8995, + bloxberg: 8995, "evmos-testnet": 9000, "shido-testnet-block": 9007, "shido-mainnet-block": 9008, @@ -2539,11 +2540,11 @@ export const NETWORKS = { "smart-bitcoin-cash-testnet": 10001, "gon-chain": 10024, "japan-open-chain-testnet": 10081, - "sjatsh": 10086, + sjatsh: 10086, "blockchain-genesis-mainnet": 10101, "gnosis-chiado-testnet": 10200, "maxxchain-mainnet": 10201, - "glscan": 10222, + glscan: 10222, "arthera-mainnet": 10242, "arthera-testnet": 10243, "0xtade": 10248, @@ -2552,13 +2553,13 @@ export const NETWORKS = { "worldland-testnet": 10395, "numbers-mainnet": 10507, "numbers-testnet": 10508, - "cryptocoinpay": 10823, - "lamina1": 10849, + cryptocoinpay: 10823, + lamina1: 10849, "lamina1-identity": 10850, "quadrans-blockchain": 10946, "quadrans-blockchain-testnet": 10947, - "astra": 11110, - "wagmi": 11111, + astra: 11110, + wagmi: 11111, "astra-testnet": 11115, "hashbit-mainnet": 11119, "shine-chain": 11221, @@ -2570,7 +2571,7 @@ export const NETWORKS = { "sardis-testnet": 11612, "polygon-supernet-arianee": 11891, "satoshichain-mainnet": 12009, - "aternos": 12020, + aternos: 12020, "singularity-zero-testnet": 12051, "singularity-zero-mainnet": 12052, "brc-chain-mainnet": 12123, @@ -2584,16 +2585,16 @@ export const NETWORKS = { "playdapp-testnet": 12781, "quantum-chain-testnet": 12890, "playfair-testnet-subnet": 12898, - "sps": 13000, + sps: 13000, "credit-smart-chain": 13308, "beam-testnet": 13337, "immutable-zkevm": 13371, "phoenix-mainnet": 13381, - "masa": 13396, + masa: 13396, "immutable-zkevm-testnet": 13473, "gravity-alpha-testnet-sepolia": 13505, "kronobit-mainnet": 13600, - "susono": 13812, + susono: 13812, "sps-testnet": 14000, "evolve-testnet": 14324, "vitruveo-testnet": 14333, @@ -2611,7 +2612,7 @@ export const NETWORKS = { "irishub-testnet": 16688, "airdao-mainnet": 16718, "ivar-chain-testnet": 16888, - "holesky": 17000, + holesky: 17000, "garnet-holesky": 17069, "defiverse-testnet": 17117, "g8chain-mainnet": 17171, @@ -2623,7 +2624,7 @@ export const NETWORKS = { "smart-trade-networks": 18122, "proof-of-memes": 18159, "g8chain-testnet": 18181, - "unreal": 18233, + unreal: 18233, "mxc-zkevm-moonchain": 18686, "titan-(tkx)": 18888, "titan-(tkx)-testnet": 18889, @@ -2638,14 +2639,14 @@ export const NETWORKS = { "callisto-testnet": 79, "p12-chain": 20736, "jono11-subnet": 20765, - "c4ei": 21004, + c4ei: 21004, "all-about-healthy": 21133, "dcpay-mainnet": 21223, "dcpay-testnet": 21224, "cennznet-azalea": 21337, "omchain-mainnet": 21816, "bsl-mainnet": 21912, - "taycan": 22023, + taycan: 22023, "airdao-testnet": 22040, "nautilus-mainnet": 22222, "goldxchain-testnet": 22324, @@ -2657,7 +2658,7 @@ export const NETWORKS = { "dreyerx-mainnet": 23451, "dreyerx-testnet": 23452, "blast-testnet": 23888, - "webchain": 37129, + webchain: 37129, "mintme.com-coin": 37480, "liquidlayer-mainnet": 25186, "alveychain-testnet": 25839, @@ -2699,18 +2700,18 @@ export const NETWORKS = { "aves-mainnet": 33333, "zilliqa-evm-devnet": 33385, "zilliqa-2-evm-devnet": 33469, - "funki": 33979, - "mode": 34443, + funki: 33979, + mode: 34443, "j2o-taro": 35011, "q-mainnet": 35441, "q-testnet": 35443, - "connectormanager": 38400, + connectormanager: 38400, "connectormanager-robin": 38401, "prm-mainnet": 39656, "energi-mainnet": 39797, "oho-mainnet": 39815, "opulent-x-beta": 41500, - "pegglecoin": 42069, + pegglecoin: 42069, "agentlayer-testnet": 42072, "arbitrum-nova": 42170, "oasis-emerald-testnet": 42261, @@ -2719,11 +2720,11 @@ export const NETWORKS = { "etherlink-mainnet": 42793, "gesoten-verse-testnet": 42801, "kinto-testnet": 42888, - "athereum": 43110, + athereum: 43110, "hemi-network": 43111, "avalanche-fuji-testnet": 1, "zkfair-testnet": 43851, - "frenchain": 44444, + frenchain: 44444, "quantum-network": 44445, "celo-alfajores-testnet": 44787, "autobahn-network": 45000, @@ -2743,14 +2744,14 @@ export const NETWORKS = { "lumoz-testnet-alpha": 51178, "sardis-mainnet": 51712, "electroneum-mainnet": 52014, - "doid": 53277, + doid: 53277, "superseed-sepolia-testnet": 53302, "dodochain-testnet": 53457, "dfk-chain": 53935, "haqq-chain-testnet": 54211, "toronet-testnet": 54321, "photon-testnet": 54555, - "titan": 55004, + titan: 55004, "rei-chain-testnet": 55556, "lambda-chain-mainnet": 56026, "boba-bnb-mainnet": 56288, @@ -2767,8 +2768,8 @@ export const NETWORKS = { "thinkium-testnet-chain-1": 60001, "thinkium-testnet-chain-2": 60002, "thinkium-testnet-chain-103": 60103, - "bob": 60808, - "kaichain": 61406, + bob: 60808, + kaichain: 61406, "axelchain-dev-net": 61800, "etica-mainnet": 61803, "doken-super-chain-mainnet": 61916, @@ -2784,13 +2785,13 @@ export const NETWORKS = { "janus-testnet": 66988, "cosmic-chain": 3344, "dm2-verse-mainnet": 68770, - "condrieu": 69420, + 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, + guapcoinx: 71111, "polyjuice-testnet": 1, "godwoken-testnet-v1": 71401, "caga-crypto-ankara-testnet": 72778, @@ -2811,10 +2812,10 @@ export const NETWORKS = { "amplify-subnet": 78430, "bulletin-subnet": 78431, "conduit-subnet": 78432, - "vanguard": 78600, + vanguard: 78600, "gold-smart-chain-testnet": 79879, - "mumbai": 80001, - "amoy": 80002, + mumbai: 80001, + amoy: 80002, "berachain-artio": 80085, "hizoco-mainnet": 80096, "nordek-mainnet": 81041, @@ -2827,14 +2828,14 @@ export const NETWORKS = { "mizana-testnet": 81361, "mizana-mixnet": 81362, "mizana-privnet": 81363, - "blast": 81457, + blast: 81457, "quantum-chain-mainnet": 81720, "smart-layer-network-testnet": 82459, - "zedxion": 83872, + zedxion: 83872, "base-goerli-testnet": 84531, "base-sepolia-testnet": 84532, "aerie-network": 84886, - "cybertrust": 48501, + cybertrust: 48501, "nautilus-proteus-testnet": 88002, "inoai-network": 88559, "unit-zero-testnet": 88817, @@ -2865,12 +2866,12 @@ export const NETWORKS = { "quarkchain-mainnet-shard-5": 100006, "quarkchain-mainnet-shard-6": 100007, "quarkchain-mainnet-shard-7": 100008, - "vechain": 100009, + vechain: 100009, "vechain-testnet": 100010, "quarkchain-l2-mainnet": 100011, "global-trust-network": 101010, "creditcoin-testnet": 102031, - "crystaleum": 1, + crystaleum: 1, "masa-testnet": 103454, "kaspaclassic-mainnet": 104566, "stratis-mainnet": 105105, @@ -2908,7 +2909,7 @@ export const NETWORKS = { "xfair.ai-testnet": 200000, "milkomeda-c1-testnet": 200101, "milkomeda-a1-testnet": 200202, - "akroma": 200625, + akroma: 200625, "bitlayer-testnet": 200810, "bitlayer-mainnet": 200901, "alaya-mainnet": 1, @@ -2917,7 +2918,7 @@ export const NETWORKS = { "decimal-smart-chain-testnet": 202020, "x1-devnet": 202212, "ymtech-besu-testnet": 202401, - "jellie": 202624, + jellie: 202624, "x1-network": 204005, "auroria-testnet": 205205, "gitagi-atlas-testnet": 210049, @@ -2925,7 +2926,7 @@ export const NETWORKS = { "mas-mainnet": 220315, "reapchain-mainnet": 221230, "reapchain-testnet": 221231, - "hydradx": 222222, + hydradx: 222222, "deepl-mainnet": 222555, "deepl-testnet": 222666, "taf-eco-chain-mainnet": 224168, @@ -2967,7 +2968,7 @@ export const NETWORKS = { "metal-tahoe-c-chain": 381932, "tipboxcoin-mainnet": 404040, "aie-testnet": 413413, - "kekchain": 103090, + kekchain: 103090, "kekchain-(kektest)": 1, "alterium-l2-testnet": 420692, "arbitrum-rinkeby": 421611, @@ -2984,17 +2985,17 @@ export const NETWORKS = { "openchain-mainnet": 474142, "playdapp-network": 504441, "cmp-testnet": 512512, - "dischain": 513100, + dischain: 513100, "docoin-community-chain": 526916, "scroll-sepolia-testnet": 534351, - "scroll": 534352, + scroll: 534352, "shinarium-beta": 534849, "beaneco-smartchain": 535037, "one-world-chain-testnet": 552981, "pentagon-testnet": 555555, "eclipse-testnet": 555666, "hypra-mainnet": 622277, - "atlas": 622463, + atlas: 622463, "bear-network-chain-mainnet": 641230, "all-mainnet": 651940, "open-campus-codex": 656476, @@ -3011,8 +3012,8 @@ export const NETWORKS = { "miexs-smartchain": 761412, "lamina1-testnet": 764984, "lamina1-identity-testnet": 767368, - "modularium": 776877, - "octaspace": 800001, + modularium: 776877, + octaspace: 800001, "biz-smart-chain-testnet": 808080, "zklink-nova-mainnet": 810180, "zklink-nova-sepolia-testnet": 810181, @@ -3021,7 +3022,7 @@ export const NETWORKS = { "curve-mainnet": 827431, "prm-testnet": 839320, "4goodnetwork": 846000, - "dodao": 855456, + dodao: 855456, "blocx-mainnet": 879151, "rexx-mainnet": 888882, "posichain-mainnet-shard-0": 900000, @@ -3033,19 +3034,19 @@ export const NETWORKS = { "jono12-subnet": 955081, "eluvio-content-fabric": 955305, "treasure-ruby": 978657, - "forma": 984122, + forma: 984122, "forma-sketchpad": 984123, "ecrox-chain-mainnet": 988207, "supernet-testnet": 998899, - "amchain": 999999, + amchain: 999999, "netmind-chain-testnet": 1100789, "tiltyard-subnet": 1127469, - "zkatana": 1261120, + zkatana: 1261120, "etho-protocol": 1313114, - "xerom": 1313500, - "kintsugi": 1337702, - "kiln": 1337802, - "zhejiang": 1337803, + xerom: 1313500, + kintsugi: 1337702, + kiln: 1337802, + zhejiang: 1337803, "automata-testnet": 1398243, "playfi-albireo-testnet": 1612127, "xterio-testnet": 1637450, @@ -3072,33 +3073,33 @@ export const NETWORKS = { "safe(anwang)-mainnet": 6666665, "safe(anwang)-testnet": 6666666, "saakuru-mainnet": 7225878, - "openvessel": 7355310, + openvessel: 7355310, "ql1-testnet": 7668378, - "musicoin": 7762959, - "zora": 7777777, + musicoin: 7762959, + zora: 7777777, "plian-mainnet-subchain-1": 8007736, "fhenix-helium": 8008135, - "hokum": 8080808, + hokum: 8080808, "waterfall-8-test-network": 8601152, - "hapchain": 8794598, + hapchain: 8794598, "quarix-testnet": 8888881, - "quarix": 8888888, - "xcap": 9322252, - "milvine": 9322253, + quarix: 8888888, + xcap: 9322252, + milvine: 9322253, "plian-testnet-subchain-1": 10067275, "soverun-mainnet": 10101010, "alienx-hal-testnet": 10241025, - "sepolia": 11155111, + 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, + iolite: 18289463, "stability-testnet": 20180427, "smartmesh-mainnet": 1, - "quarkblockchain": 20181205, + quarkblockchain: 20181205, "pego-network": 20201022, "debank-sepolia-testnet": 20240324, "swan-proxima-testnet": 20241133, @@ -3113,8 +3114,8 @@ export const NETWORKS = { "joys-digital-mainnet": 35855456, "skale-nebula-hub-testnet": 37084624, "kingdom-chain": 39916801, - "maistestsubnet": 43214913, - "aquachain": 61717561, + maistestsubnet: 43214913, + aquachain: 61717561, "autonity-bakerloo-(sumida)-testnet": 65010002, "autonity-piccadilly-(sumida)-testnet": 65100002, "frame-testnet": 68840142, @@ -3128,31 +3129,31 @@ export const NETWORKS = { "plume-testnet": 161221135, "blast-sepolia-testnet": 168587773, "gather-mainnet-network": 192837465, - "kanazawa": 222000222, + kanazawa: 222000222, "neon-evm-devnet": 245022926, "razor-skale-chain": 278611351, "oneledger-mainnet": 311752642, "nal-sepolia-testnet": 328527624, - "meld": 333000333, + meld: 333000333, "gather-testnet-network": 356256156, "gather-devnet-network": 486217935, "degen-chain": 666666666, - "ancient8": 888888888, + 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, + cyberdecknet: 1146703430, "human-protocol": 1273227453, "aurora-testnet": 1313161555, "aurora-betanet": 1313161556, - "powergold": 1313161560, + powergold: 1313161560, "skale-titan-hub": 1350216234, "chaos-(skale-testnet)": 1351057110, "rari-chain-mainnet": 1380012617, - "raptorchain": 1380996178, + raptorchain: 1380996178, "skale-europa-hub-testnet": 1444673419, "skale-nebula-hub": 1482601649, "skale-calypso-hub": 1564830818, @@ -3163,9 +3164,9 @@ export const NETWORKS = { "harmony-devnet-shard-1": 1666900001, "kakarot-sepolia": 1802203764, "rari-chain-testnet": 1918988905, - "datahopper": 2021121117, + datahopper: 2021121117, "skale-europa-hub": 2046399126, - "pirl": 3125659152, + pirl: 3125659152, "oneledger-testnet-frankenstein": 4216137055, "palm-testnet": 11297108099, "gitswarm-test-network": 28872323069, @@ -3176,29 +3177,19 @@ export const NETWORKS = { "ntity-mainnet": 197710212030, "haradev-testnet": 197710212031, "gm-network-testnet": 202402181627, - "zeniq": 383414847825, + zeniq: 383414847825, "pdc-mainnet": 666301171999, "molereum-network": 6022140761023, "dchain-testnet": 2713017997578000, - "dchain": 2716446429837000 + dchain: 2716446429837000, } as const; 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" - ], + "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": [], @@ -3208,18 +3199,12 @@ export const NETWORK_FAUCETS = { "13": [], "14": [], "15": [], - "16": [ - "https://faucet.flare.network" - ], + "16": ["https://faucet.flare.network"], "17": [], - "18": [ - "https://faucet-testnet.thundercore.com" - ], + "18": ["https://faucet-testnet.thundercore.com"], "19": [], "20": [], - "21": [ - "https://esc-faucet.elastos.io/" - ], + "21": ["https://esc-faucet.elastos.io/"], "22": [], "23": [], "24": [], @@ -3228,9 +3213,7 @@ export const NETWORK_FAUCETS = { "27": [], "29": [], "30": [], - "31": [ - "https://faucet.rsk.co/" - ], + "31": ["https://faucet.rsk.co/"], "32": [], "33": [], "34": [], @@ -3240,60 +3223,37 @@ export const NETWORK_FAUCETS = { "38": [], "39": [], "40": [], - "41": [ - "https://app.telos.net/testnet/developers" - ], + "41": ["https://app.telos.net/testnet/developers"], "42": [], - "43": [ - "https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a" - ], + "43": ["https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a"], "44": [], - "45": [ - "https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2" - ], + "45": ["https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2"], "46": [], "47": [], "48": [], "49": [], "50": [], - "51": [ - "https://faucet.apothem.network" - ], + "51": ["https://faucet.apothem.network"], "52": [], "53": [], "54": [], "55": [], "56": [], - "57": [ - "https://faucet.syscoin.org" - ], + "57": ["https://faucet.syscoin.org"], "58": [], "60": [], "61": [], - "63": [ - "https://easy.hebeswap.com/#/faucet", - "https://faucet.mordortest.net" - ], + "63": ["https://easy.hebeswap.com/#/faucet", "https://faucet.mordortest.net"], "64": [], - "65": [ - "https://www.okex.com/drawdex" - ], + "65": ["https://www.okex.com/drawdex"], "66": [], "67": [], "68": [], - "69": [ - "http://fauceth.komputing.org?chain=69&address=${ADDRESS}" - ], + "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" - ], + "71": ["https://faucet.confluxnetwork.org"], + "72": ["https://faucet.dxscan.io"], + "73": ["https://faucet-testnet.fncy.world"], "74": [], "75": [], "76": [], @@ -3302,19 +3262,11 @@ export const NETWORK_FAUCETS = { "79": [], "80": [], "81": [], - "82": [ - "https://faucet.meter.io" - ], - "83": [ - "https://faucet-warringstakes.meter.io" - ], + "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" - ], + "85": ["https://www.gatescan.org/testnet/faucet"], + "86": ["https://www.gatescan.org/faucet"], "87": [], "88": [], "89": [], @@ -3323,57 +3275,35 @@ export const NETWORK_FAUCETS = { "92": [], "93": [], "94": [], - "95": [ - "https://faucet.camdl.gov.kh/" - ], + "95": ["https://faucet.camdl.gov.kh/"], "96": [], - "97": [ - "https://testnet.bnbchain.org/faucet-smart" - ], + "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" - ], + "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" - ], + "107": ["https://faucet.novanetwork.io"], "108": [], "109": [], "110": [], - "111": [ - "https://etherlite.org/faucets" - ], + "111": ["https://etherlite.org/faucets"], "112": [], - "113": [ - "https://buy.dehvo.com" - ], - "114": [ - "https://faucet.flare.network" - ], + "113": ["https://buy.dehvo.com"], + "114": ["https://faucet.flare.network"], "117": [], "118": [], "119": [], - "120": [ - "http://faucet.nuls.io" - ], + "120": ["http://faucet.nuls.io"], "121": [], "122": [], - "123": [ - "https://get.fusespark.io" - ], + "123": ["https://get.fusespark.io"], "124": [], - "125": [ - "https://faucet.oychain.io" - ], + "125": ["https://faucet.oychain.io"], "126": [], "127": [], "128": [], @@ -3382,9 +3312,7 @@ export const NETWORK_FAUCETS = { "132": [], "133": [], "134": [], - "135": [ - "https://faucet.alyxchain.com" - ], + "135": ["https://faucet.alyxchain.com"], "136": [], "137": [], "138": [], @@ -3396,39 +3324,27 @@ export const NETWORK_FAUCETS = { "145": [], "147": [], "148": [], - "150": [ - "https://faucet.sixprotocol.net" - ], + "150": ["https://faucet.sixprotocol.net"], "151": [], "152": [], "153": [], "154": [], - "155": [ - "https://faucet.testnet.tenet.org" - ], + "155": ["https://faucet.testnet.tenet.org"], "156": [], - "157": [ - "https://beta.shibariumtech.com/faucet" - ], + "157": ["https://beta.shibariumtech.com/faucet"], "158": [], "159": [], "160": [], "161": [], - "162": [ - "https://discuss.lightstreams.network/t/request-test-tokens" - ], + "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" - ], + "170": ["https://faucet-testnet.hscscan.com/"], + "172": ["https://faucet.latam-blockchain.com"], "176": [], "180": [], "181": [], @@ -3438,13 +3354,9 @@ export const NETWORK_FAUCETS = { "189": [], "191": [], "193": [], - "195": [ - "https://www.okx.com/xlayer/faucet" - ], + "195": ["https://www.okx.com/xlayer/faucet"], "196": [], - "197": [ - "https://neutrinoschain.com/faucet" - ], + "197": ["https://neutrinoschain.com/faucet"], "198": [], "199": [], "200": [], @@ -3455,95 +3367,63 @@ export const NETWORK_FAUCETS = { "207": [], "208": [], "210": [], - "211": [ - "http://faucet.freight.sh" - ], - "212": [ - "https://faucet.mapprotocol.io" - ], + "211": ["http://faucet.freight.sh"], + "212": ["https://faucet.mapprotocol.io"], "213": [], "214": [], "217": [], - "220": [ - "https://faucet.scalind.com" - ], + "220": ["https://faucet.scalind.com"], "223": [], - "224": [ - "https://faucet.vrd.network" - ], + "224": ["https://faucet.vrd.network"], "225": [], "226": [], "228": [], "230": [], - "234": [ - "https://protojumbo.jumbochain.org/faucet-smart" - ], - "236": [ - "https://faucet.deamchain.com" - ], + "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" - ], + "256": ["https://scan-testnet.hecochain.com/faucet"], "258": [], "259": [], "262": [], "266": [], - "267": [ - "https://testnet.neuraprotocol.io/faucet" - ], + "267": ["https://testnet.neuraprotocol.io/faucet"], "268": [], - "269": [ - "https://myhpbwallet.com/" - ], + "269": ["https://myhpbwallet.com/"], "271": [], "274": [], "278": [], "279": [], - "282": [ - "https://zkevm.cronos.org/faucet" - ], + "282": ["https://zkevm.cronos.org/faucet"], "288": [], "291": [], "295": [], - "296": [ - "https://portal.hedera.com" - ], - "297": [ - "https://portal.hedera.com" - ], + "296": ["https://portal.hedera.com"], + "297": ["https://portal.hedera.com"], "298": [], "300": [], "302": [], "303": [], "305": [], - "307": [ - "https://faucet.lovely.network" - ], + "307": ["https://faucet.lovely.network"], "308": [], "309": [], - "311": [ - "https://faucet.omaxray.com/" - ], + "311": ["https://faucet.omaxray.com/"], "313": [], "314": [], "321": [], - "322": [ - "https://faucet-testnet.kcc.network" - ], + "322": ["https://faucet-testnet.kcc.network"], "323": [], "324": [], "333": [], "335": [], "336": [], - "338": [ - "https://cronos.org/faucet" - ], + "338": ["https://cronos.org/faucet"], "345": [], "361": [], "363": [], @@ -3553,25 +3433,17 @@ export const NETWORK_FAUCETS = { "371": [], "380": [], "381": [], - "385": [ - "https://pipa.lisinski.online" - ], - "395": [ - "https://faucet.testnet.camdl.gov.kh/" - ], + "385": ["https://pipa.lisinski.online"], + "395": ["https://faucet.testnet.camdl.gov.kh/"], "397": [], "398": [], "399": [], - "400": [ - "https://faucet.hyperonchain.com" - ], + "400": ["https://faucet.hyperonchain.com"], "401": [], "404": [], "411": [], "416": [], - "418": [ - "https://faucet.lachain.network" - ], + "418": ["https://faucet.lachain.network"], "420": [], "422": [], "424": [], @@ -3588,29 +3460,19 @@ export const NETWORK_FAUCETS = { "501": [], "510": [], "512": [], - "513": [ - "https://scan-testnet.acuteangle.com/faucet" - ], + "513": ["https://scan-testnet.acuteangle.com/faucet"], "516": [], - "520": [ - "https://xsc.pub/faucet" - ], + "520": ["https://xsc.pub/faucet"], "529": [], "530": [], "534": [], "537": [], "542": [], - "545": [ - "https://testnet-faucet.onflow.org" - ], + "545": ["https://testnet-faucet.onflow.org"], "555": [], "558": [], - "568": [ - "https://faucet.dogechain.dog" - ], - "570": [ - "https://rollux.id/faucetapp" - ], + "568": ["https://faucet.dogechain.dog"], + "570": ["https://rollux.id/faucetapp"], "571": [], "579": [], "592": [], @@ -3618,118 +3480,74 @@ export const NETWORK_FAUCETS = { "596": [], "597": [], "600": [], - "601": [ - "https://vne.network/rose" - ], + "601": ["https://vne.network/rose"], "612": [], "614": [], "634": [], - "646": [ - "https://previewnet-faucet.onflow.org" - ], - "647": [ - "https://faucet.toronto.sx.technology" - ], + "646": ["https://previewnet-faucet.onflow.org"], + "647": ["https://faucet.toronto.sx.technology"], "648": [], "653": [], "654": [], "662": [], - "666": [ - "https://chain.pixie.xyz/faucet" - ], + "666": ["https://chain.pixie.xyz/faucet"], "667": [], "668": [], - "669": [ - "https://faucet-testnet.juncachain.com" - ], + "669": ["https://faucet-testnet.juncachain.com"], "686": [], "690": [], "700": [], "701": [], "707": [], - "708": [ - "https://faucet.bcsdev.io" - ], + "708": ["https://faucet.bcsdev.io"], "710": [], "713": [], "719": [], "721": [], "727": [], "730": [], - "741": [ - "https://faucet.vention.network" - ], + "741": ["https://faucet.vention.network"], "742": [], "747": [], "766": [], - "776": [ - "https://faucet.openchain.info/" - ], + "776": ["https://faucet.openchain.info/"], "777": [], "786": [], "787": [], - "788": [ - "https://faucet.aerochain.id/" - ], + "788": ["https://faucet.aerochain.id/"], "789": [], - "799": [ - "https://faucet.testnet.rupaya.io" - ], - "800": [ - "https://faucet.lucidcoin.io" - ], + "799": ["https://faucet.testnet.rupaya.io"], + "800": ["https://faucet.lucidcoin.io"], "803": [], "808": [], - "810": [ - "https://www.haven1.org/faucet" - ], + "810": ["https://www.haven1.org/faucet"], "813": [], "814": [], "818": [], "820": [], - "822": [ - "https://faucet.runic.build" - ], + "822": ["https://faucet.runic.build"], "831": [], "841": [], "842": [], "859": [], "868": [], "876": [], - "877": [ - "https://faucet.dexit.network" - ], + "877": ["https://faucet.dexit.network"], "880": [], "888": [], - "898": [ - "https://faucet.maxi.network" - ], + "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" - ], + "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/" - ], + "917": ["https://faucet.thefirechain.com"], + "919": ["https://sepoliafaucet.com/"], "927": [], - "943": [ - "https://faucet.v4.testnet.pulsechain.com/" - ], + "943": ["https://faucet.v4.testnet.pulsechain.com/"], "956": [], "957": [], "963": [], @@ -3737,27 +3555,17 @@ export const NETWORK_FAUCETS = { "970": [], "971": [], "972": [], - "977": [ - "https://faucet.nepalblockchain.network" - ], + "977": ["https://faucet.nepalblockchain.network"], "979": [], "980": [], - "985": [ - "https://faucet.metamemo.one/" - ], + "985": ["https://faucet.metamemo.one/"], "989": [], - "990": [ - "https://faucet.eliberty.ngo" - ], - "997": [ - "https://explorer.5ire.network/faucet" - ], + "990": ["https://faucet.eliberty.ngo"], + "997": ["https://explorer.5ire.network/faucet"], "998": [], "999": [], "1000": [], - "1001": [ - "https://baobab.wallet.klaytn.com/access?next=faucet" - ], + "1001": ["https://baobab.wallet.klaytn.com/access?next=faucet"], "1003": [], "1004": [], "1007": [], @@ -3772,17 +3580,10 @@ export const NETWORK_FAUCETS = { "1028": [], "1030": [], "1031": [], - "1038": [ - "https://faucet.bronos.org" - ], + "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" - ], + "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": [], @@ -3793,32 +3594,20 @@ export const NETWORK_FAUCETS = { "1107": [], "1108": [], "1111": [], - "1112": [ - "https://wallet.test.wemix.com/faucet" - ], + "1112": ["https://wallet.test.wemix.com/faucet"], "1113": [], - "1115": [ - "https://scan.test.btcs.network/faucet" - ], + "1115": ["https://scan.test.btcs.network/faucet"], "1116": [], - "1117": [ - "https://faucet.dogcoin.network" - ], + "1117": ["https://faucet.dogcoin.network"], "1123": [], "1130": [], "1131": [], - "1133": [ - "http://tc04.mydefichain.com/faucet" - ], + "1133": ["http://tc04.mydefichain.com/faucet"], "1135": [], "1138": [], "1139": [], - "1140": [ - "https://scan.boka.network/#/Galois/faucet" - ], - "1147": [ - "https://faucet.flagscan.xyz" - ], + "1140": ["https://scan.boka.network/#/Galois/faucet"], + "1147": ["https://faucet.flagscan.xyz"], "1149": [], "1170": [], "1177": [], @@ -3827,9 +3616,7 @@ export const NETWORK_FAUCETS = { "1201": [], "1202": [], "1209": [], - "1210": [ - "https://cuckoo.network/portal/faucet/" - ], + "1210": ["https://cuckoo.network/portal/faucet/"], "1213": [], "1214": [], "1221": [], @@ -3840,31 +3627,21 @@ export const NETWORK_FAUCETS = { "1234": [], "1235": [], "1243": [], - "1244": [ - "https://faucet.archiechain.io" - ], + "1244": ["https://faucet.archiechain.io"], "1246": [], "1248": [], - "1252": [ - "https://cicfaucet.com" - ], + "1252": ["https://cicfaucet.com"], "1280": [], "1284": [], "1285": [], "1287": [], "1288": [], - "1291": [ - "https://faucet.testnet.swisstronik.com" - ], + "1291": ["https://faucet.testnet.swisstronik.com"], "1311": [], "1314": [], "1319": [], - "1320": [ - "https://aia-faucet-testnet.aiachain.org" - ], - "1328": [ - "https://atlantic-2.app.sei.io/faucet" - ], + "1320": ["https://aia-faucet-testnet.aiachain.org"], + "1328": ["https://atlantic-2.app.sei.io/faucet"], "1329": [], "1337": [], "1338": [], @@ -3882,20 +3659,14 @@ export const NETWORK_FAUCETS = { "1440": [], "1442": [], "1452": [], - "1453": [ - "https://istanbul-faucet.metachain.dev" - ], - "1455": [ - "https://faucet.ctexscan.com" - ], + "1453": ["https://istanbul-faucet.metachain.dev"], + "1455": ["https://faucet.ctexscan.com"], "1490": [], "1499": [], "1501": [], "1506": [], "1507": [], - "1515": [ - "https://faucet.beagle.chat/" - ], + "1515": ["https://faucet.beagle.chat/"], "1559": [], "1617": [], "1618": [], @@ -3903,19 +3674,13 @@ export const NETWORK_FAUCETS = { "1625": [], "1657": [], "1662": [], - "1663": [ - "https://faucet.horizen.io" - ], + "1663": ["https://faucet.horizen.io"], "1686": [], "1687": [], "1688": [], - "1701": [ - "https://evm.anytype.io/faucet" - ], + "1701": ["https://evm.anytype.io/faucet"], "1707": [], - "1708": [ - "https://faucet.blockchain.or.th" - ], + "1708": ["https://faucet.blockchain.or.th"], "1717": [], "1718": [], "1729": [], @@ -3924,35 +3689,23 @@ export const NETWORK_FAUCETS = { "1773": [], "1777": [], "1789": [], - "1804": [ - "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" - ], - "1807": [ - "https://analogfaucet.com" - ], + "1804": ["https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md"], + "1807": ["https://analogfaucet.com"], "1818": [], - "1819": [ - "https://faucet.cube.network" - ], + "1819": ["https://faucet.cube.network"], "1821": [], "1856": [], "1875": [], "1881": [], "1890": [], - "1891": [ - "https://faucet.pegasus.lightlink.io/" - ], + "1891": ["https://faucet.pegasus.lightlink.io/"], "1898": [], "1904": [], "1907": [], - "1908": [ - "https://faucet.bitcichain.com" - ], + "1908": ["https://faucet.bitcichain.com"], "1909": [], "1911": [], - "1912": [ - "https://claim-faucet.rubychain.io/" - ], + "1912": ["https://claim-faucet.rubychain.io/"], "1918": [], "1945": [], "1951": [], @@ -3960,12 +3713,8 @@ export const NETWORK_FAUCETS = { "1954": [], "1956": [], "1961": [], - "1967": [ - "https://faucet.metatime.com/eleanor" - ], - "1969": [ - "https://testnet.scschain.com" - ], + "1967": ["https://faucet.metatime.com/eleanor"], + "1969": ["https://testnet.scschain.com"], "1970": [], "1971": [], "1972": [], @@ -3976,13 +3725,9 @@ export const NETWORK_FAUCETS = { "1987": [], "1992": [], "1994": [], - "1995": [ - "https://faucet.edexa.com/" - ], + "1995": ["https://faucet.edexa.com/"], "1996": [], - "1998": [ - "https://faucet.kyotoprotocol.io" - ], + "1998": ["https://faucet.kyotoprotocol.io"], "2000": [], "2001": [], "2002": [], @@ -3992,17 +3737,13 @@ export const NETWORK_FAUCETS = { "2013": [], "2014": [], "2016": [], - "2017": [ - "https://telcoin.network/faucet" - ], + "2017": ["https://telcoin.network/faucet"], "2018": [], "2019": [], "2020": [], "2021": [], "2022": [], - "2023": [ - "https://ttaycan-faucet.hupayx.io/" - ], + "2023": ["https://ttaycan-faucet.hupayx.io/"], "2024": [], "2025": [], "2026": [], @@ -4037,59 +3778,35 @@ export const NETWORK_FAUCETS = { "2152": [], "2153": [], "2154": [], - "2199": [ - "https://multiverse.moonsama.com/faucet" - ], - "2202": [ - "https://faucet.antofy.io" - ], + "2199": ["https://multiverse.moonsama.com/faucet"], + "2202": ["https://faucet.antofy.io"], "2203": [], "2213": [], - "2221": [ - "https://faucet.kava.io" - ], + "2221": ["https://faucet.kava.io"], "2222": [], "2223": [], "2241": [], "2300": [], "2306": [], "2309": [], - "2323": [ - "https://faucet.somanetwork.io" - ], + "2323": ["https://faucet.somanetwork.io"], "2330": [], "2331": [], - "2332": [ - "https://airdrop.somanetwork.io" - ], - "2340": [ - "https://app-olympia.atleta.network/faucet" - ], - "2342": [ - "https://www.omniaverse.io" - ], + "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/" - ], + "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" - ], + "2458": ["https://faucet-testnet.hybridchain.ai"], + "2468": ["https://faucet-testnet.hybridchain.ai"], + "2484": ["https://faucet.uniultra.xyz"], "2522": [], "2525": [], "2559": [], @@ -4097,12 +3814,8 @@ export const NETWORK_FAUCETS = { "2606": [], "2611": [], "2612": [], - "2613": [ - "https://testnet-faucet.ezchain.com" - ], - "2625": [ - "https://testnet.whitechain.io/faucet" - ], + "2613": ["https://testnet-faucet.ezchain.com"], + "2625": ["https://testnet.whitechain.io/faucet"], "2662": [], "2710": [], "2718": [], @@ -4113,16 +3826,10 @@ export const NETWORK_FAUCETS = { "2810": [], "2907": [], "2911": [], - "2941": [ - "https://xfaucet.xenonchain.com" - ], + "2941": ["https://xfaucet.xenonchain.com"], "2999": [], - "3000": [ - "https://app-faucet.centrality.me" - ], - "3001": [ - "https://app-faucet.centrality.me" - ], + "3000": ["https://app-faucet.centrality.me"], + "3001": ["https://app-faucet.centrality.me"], "3003": [], "3011": [], "3031": [], @@ -4134,132 +3841,76 @@ export const NETWORK_FAUCETS = { "3109": [], "3110": [], "3269": [], - "3270": [ - "https://faucet.arabianchain.org/" - ], + "3270": ["https://faucet.arabianchain.org/"], "3306": [], - "3331": [ - "https://faucet.zcore.cash" - ], + "3331": ["https://faucet.zcore.cash"], "3333": [], "3334": [], "3335": [], "3400": [], "3424": [], - "3434": [ - "https://faucet.securechain.ai" - ], - "3456": [ - "https://testnet-faucet.layeredge.io" - ], - "3500": [ - "https://faucet.paribuscan.com" - ], + "3434": ["https://faucet.securechain.ai"], + "3456": ["https://testnet-faucet.layeredge.io"], + "3500": ["https://faucet.paribuscan.com"], "3501": [], "3601": [], "3602": [], "3630": [], - "3636": [ - "https://faucet.botanixlabs.dev" - ], - "3637": [ - "https://faucet.btxtestchain.com" - ], + "3636": ["https://faucet.botanixlabs.dev"], + "3637": ["https://faucet.btxtestchain.com"], "3639": [], "3666": [], "3690": [], "3693": [], - "3698": [ - "https://faucet.senjepowersscan.com" - ], - "3699": [ - "https://faucet.senjepowersscan.com" - ], - "3737": [ - "https://faucet.crossbell.io" - ], + "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" - ], + "3799": ["https://faucet.tangle.tools"], + "3885": ["zkevm-faucet.thefirechain.com"], "3888": [], "3889": [], - "3912": [ - "https://www.dracscan.io/faucet" - ], + "3912": ["https://www.dracscan.io/faucet"], "3939": [], - "3966": [ - "https://faucet.dynoscan.io" - ], - "3967": [ - "https://faucet.dynoscan.io" - ], - "3993": [ - "https://sepoliafaucet.com/" - ], + "3966": ["https://faucet.dynoscan.io"], + "3967": ["https://faucet.dynoscan.io"], + "3993": ["https://sepoliafaucet.com/"], "3999": [], "4000": [], "4001": [], - "4002": [ - "https://faucet.fantom.network" - ], + "4002": ["https://faucet.fantom.network"], "4003": [], - "4040": [ - "https://getfaucet.carbonium.network" - ], + "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" - ], + "4090": ["https://faucet.oasis.fastexchain.com"], + "4096": ["https://faucet.bitindi.org"], + "4099": ["https://faucet.bitindi.org"], "4102": [], "4139": [], - "4141": [ - "https://faucet.tipboxcoin.net" - ], + "4141": ["https://faucet.tipboxcoin.net"], "4157": [], "4181": [], "4200": [], - "4201": [ - "https://faucet.testnet.lukso.network" - ], - "4202": [ - "https://app.optimism.io/faucet" - ], + "4201": ["https://faucet.testnet.lukso.network"], + "4202": ["https://app.optimism.io/faucet"], "4242": [], "4243": [], - "4337": [ - "https://faucet.onbeam.com" - ], + "4337": ["https://faucet.onbeam.com"], "4400": [], - "4444": [ - "https://gruvin.me/htmlcoin" - ], + "4444": ["https://gruvin.me/htmlcoin"], "4460": [], "4488": [], - "4544": [ - "https://faucet.emoney.network/faucet" - ], + "4544": ["https://faucet.emoney.network/faucet"], "4613": [], "4653": [], "4689": [], - "4690": [ - "https://faucet.iotex.io/" - ], + "4690": ["https://faucet.iotex.io/"], "4759": [], "4777": [], "4893": [], @@ -4267,13 +3918,9 @@ export const NETWORK_FAUCETS = { "4919": [], "4999": [], "5000": [], - "5001": [ - "https://faucet.testnet.mantle.xyz" - ], + "5001": ["https://faucet.testnet.mantle.xyz"], "5002": [], - "5003": [ - "https://faucet.sepolia.mantle.xyz" - ], + "5003": ["https://faucet.sepolia.mantle.xyz"], "5005": [], "5039": [], "5040": [], @@ -4294,87 +3941,53 @@ export const NETWORK_FAUCETS = { "5315": [], "5317": [], "5321": [], - "5353": [ - "https://faucet.tritanium.network" - ], - "5372": [ - "https://faucet.settlus.io" - ], + "5353": ["https://faucet.tritanium.network"], + "5372": ["https://faucet.settlus.io"], "5424": [], "5439": [], - "5522": [ - "https://t.me/vexfaucetbot" - ], + "5522": ["https://t.me/vexfaucetbot"], "5551": [], "5555": [], - "5611": [ - "https://testnet.bnbchain.org/faucet-smart" - ], - "5615": [ - "https://faucet.arcturuschain.io" - ], + "5611": ["https://testnet.bnbchain.org/faucet-smart"], + "5615": ["https://faucet.arcturuschain.io"], "5616": [], "5656": [], "5675": [], "5678": [], - "5700": [ - "https://faucet.tanenbaum.io" - ], + "5700": ["https://faucet.tanenbaum.io"], "5729": [], - "5758": [ - "https://faucet.satoshichain.io" - ], + "5758": ["https://faucet.satoshichain.io"], "5777": [], "5845": [], - "5851": [ - "https://developer.ont.io/" - ], + "5851": ["https://developer.ont.io/"], "5869": [], "6000": [], "6001": [], - "6065": [ - "http://faucet.tresleches.finance:8080" - ], + "6065": ["http://faucet.tresleches.finance:8080"], "6066": [], - "6102": [ - "https://www.cascadia.foundation/faucet" - ], + "6102": ["https://www.cascadia.foundation/faucet"], "6118": [], "6119": [], - "6321": [ - "https://aura.faucetme.pro" - ], + "6321": ["https://aura.faucetme.pro"], "6322": [], "6363": [], "6502": [], - "6552": [ - "https://faucet.scolcoin.com" - ], - "6565": [ - "https://faucet.foxchain.app" - ], + "6552": ["https://faucet.scolcoin.com"], + "6565": ["https://faucet.foxchain.app"], "6626": [], - "6660": [ - "http://faucet.latestchain.io" - ], + "6660": ["http://faucet.latestchain.io"], "6661": [], - "6666": [ - "https://faucet.cybascan.io" - ], + "6666": ["https://faucet.cybascan.io"], "6688": [], "6699": [], "6701": [], "6779": [], - "6789": [ - "https://faucet.goldsmartchain.com" - ], + "6789": ["https://faucet.goldsmartchain.com"], "6868": [], "6969": [], "6999": [], "7000": [], - "7001": [ - "https://labs.zetachain.com/get-zeta" - ], + "7001": ["https://labs.zetachain.com/get-zeta"], "7007": [], "7027": [], "7070": [], @@ -4389,75 +4002,47 @@ export const NETWORK_FAUCETS = { "7484": [], "7518": [], "7560": [], - "7575": [ - "https://testnet-faucet.adil-scan.io" - ], + "7575": ["https://testnet-faucet.adil-scan.io"], "7576": [], "7668": [], "7672": [], "7700": [], "7701": [], - "7771": [ - "https://faucet.bit-rock.io" - ], + "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" - ], + "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/" - ], + "7895": ["https://faucet-athena.ardescan.com/"], "7923": [], - "7924": [ - "https://faucet.mochain.app/" - ], + "7924": ["https://faucet.mochain.app/"], "7979": [], "8000": [], - "8001": [ - "https://chain-docs.teleport.network/testnet/faucet.html" - ], + "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/" - ], + "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" - ], + "8131": ["https://faucet.qitmeer.io"], "8132": [], "8133": [], "8134": [], "8135": [], "8136": [], - "8181": [ - "https://testnet.beonescan.com/faucet" - ], + "8181": ["https://testnet.beonescan.com/faucet"], "8192": [], "8194": [], "8217": [], "8227": [], - "8272": [ - "https://faucet.blocktonscan.com/" - ], + "8272": ["https://faucet.blocktonscan.com/"], "8285": [], "8329": [], "8387": [], @@ -4466,99 +4051,59 @@ export const NETWORK_FAUCETS = { "8655": [], "8668": [], "8723": [], - "8724": [ - "https://testnet-explorer.wolot.io" - ], + "8724": ["https://testnet-explorer.wolot.io"], "8726": [], "8727": [], "8738": [], - "8768": [ - "https://faucet.tmychain.org/" - ], + "8768": ["https://faucet.tmychain.org/"], "8822": [], - "8844": [ - "https://app.testnet.hydrachain.org/faucet" - ], + "8844": ["https://app.testnet.hydrachain.org/faucet"], "8848": [], "8866": [], "8880": [], "8881": [], - "8882": [ - "https://t.me/unique2faucet_opal_bot" - ], + "8882": ["https://t.me/unique2faucet_opal_bot"], "8883": [], "8888": [], "8889": [], - "8890": [ - "https://faucetcoin.orenium.org" - ], - "8898": [ - "https://faucet.mmtscan.io/" - ], + "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" - ], + "8995": ["https://faucet.bloxberg.org/"], + "9000": ["https://faucet.evmos.dev"], "9001": [], - "9007": [ - "https://testnet.shidoscan.com/faucet" - ], + "9007": ["https://testnet.shidoscan.com/faucet"], "9008": [], - "9012": [ - "https://t.me/BerylBit" - ], - "9024": [ - "https://testnet.nexablockscan.io/faucet" - ], + "9012": ["https://t.me/BerylBit"], + "9024": ["https://testnet.nexablockscan.io/faucet"], "9025": [], "9100": [], "9223": [], - "9339": [ - "https://faucet.dogcoin.network" - ], + "9339": ["https://faucet.dogcoin.network"], "9393": [], "9395": [], - "9527": [ - "https://robin-faucet.rangersprotocol.com" - ], - "9528": [ - "http://faucet.qeasyweb3.com" - ], - "9559": [ - "https://faucet.neonlink.io/" - ], + "9527": ["https://robin-faucet.rangersprotocol.com"], + "9528": ["http://faucet.qeasyweb3.com"], + "9559": ["https://faucet.neonlink.io/"], "9700": [], "9728": [], - "9768": [ - "https://faucet.mainnetz.io" - ], + "9768": ["https://faucet.mainnetz.io"], "9779": [], - "9789": [ - "https://faucet.testnet.tabichain.com" - ], + "9789": ["https://faucet.testnet.tabichain.com"], "9790": [], "9792": [], "9797": [], - "9818": [ - "https://faucet.imperiumchain.com/" - ], - "9819": [ - "https://faucet.imperiumchain.com/" - ], + "9818": ["https://faucet.imperiumchain.com/"], + "9819": ["https://faucet.imperiumchain.com/"], "9888": [], "9898": [], "9911": [], - "9977": [ - "https://faucet.mindchain.info/" - ], + "9977": ["https://faucet.mindchain.info/"], "9980": [], "9981": [], "9990": [], @@ -4572,42 +4117,25 @@ export const NETWORK_FAUCETS = { "10081": [], "10086": [], "10101": [], - "10200": [ - "https://gnosisfaucet.com" - ], - "10201": [ - "https://faucet.maxxchain.org" - ], + "10200": ["https://gnosisfaucet.com"], + "10201": ["https://faucet.maxxchain.org"], "10222": [], "10242": [], - "10243": [ - "https://faucet.arthera.net" - ], + "10243": ["https://faucet.arthera.net"], "10248": [], "10321": [], - "10324": [ - "https://faucet.taoevm.io" - ], + "10324": ["https://faucet.taoevm.io"], "10395": [], "10507": [], - "10508": [ - "https://faucet.avax.network/?subnet=num", - "https://faucet.num.network" - ], + "10508": ["https://faucet.avax.network/?subnet=num", "https://faucet.num.network"], "10823": [], "10849": [], "10850": [], "10946": [], - "10947": [ - "https://faucetpage.quadrans.io" - ], + "10947": ["https://faucetpage.quadrans.io"], "11110": [], - "11111": [ - "https://faucet.avax.network/?subnet=wagmi" - ], - "11115": [ - "https://faucet.astranaut.dev" - ], + "11111": ["https://faucet.avax.network/?subnet=wagmi"], + "11115": ["https://faucet.astranaut.dev"], "11119": [], "11221": [], "11227": [], @@ -4615,34 +4143,18 @@ export const NETWORK_FAUCETS = { "11437": [], "11501": [], "11503": [], - "11612": [ - "https://faucet.sardisnetwork.com" - ], + "11612": ["https://faucet.sardisnetwork.com"], "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" - ], + "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" - ], + "12345": ["https://faucet.step.network"], "12553": [], "12715": [], "12781": [], @@ -4650,66 +4162,36 @@ export const NETWORK_FAUCETS = { "12898": [], "13000": [], "13308": [], - "13337": [ - "https://faucet.avax.network/?subnet=beam", - "https://faucet.onbeam.com" - ], - "13371": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" - ], + "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" - ], + "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" - ], + "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/" - ], + "15555": ["https://faucet.testnet-dev.trust.one/"], "15557": [], "16000": [], - "16001": [ - "https://faucet.metadot.network/" - ], + "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" - ], + "16888": ["https://tfaucet.ivarex.com/"], + "17000": ["https://faucet.holesky.ethpandaops.io", "https://holesky-faucet.pk910.de"], "17069": [], "17117": [], - "17171": [ - "https://faucet.oneg8.network" - ], + "17171": ["https://faucet.oneg8.network"], "17172": [], "17180": [], "17217": [], @@ -4717,9 +4199,7 @@ export const NETWORK_FAUCETS = { "18000": [], "18122": [], "18159": [], - "18181": [ - "https://faucet.oneg8.network" - ], + "18181": ["https://faucet.oneg8.network"], "18233": [], "18686": [], "18888": [], @@ -4732,37 +4212,23 @@ export const NETWORK_FAUCETS = { "20001": [], "20041": [], "20073": [], - "20729": [ - "https://faucet.callisto.network/" - ], + "20729": ["https://faucet.callisto.network/"], "20736": [], "20765": [], - "21004": [ - "https://play.google.com/store/apps/details?id=net.c4ei.fps2" - ], - "21133": [ - "https://t.me/c4eiAirdrop" - ], + "21004": ["https://play.google.com/store/apps/details?id=net.c4ei.fps2"], + "21133": ["https://t.me/c4eiAirdrop"], "21223": [], - "21224": [ - "https://faucet.dcpay.io" - ], + "21224": ["https://faucet.dcpay.io"], "21337": [], "21816": [], "21912": [], "22023": [], "22040": [], "22222": [], - "22324": [ - "https://faucet.goldxchain.io" - ], + "22324": ["https://faucet.goldxchain.io"], "22776": [], - "23006": [ - "https://faucet.antofy.io" - ], - "23118": [ - "https://faucet.opside.network" - ], + "23006": ["https://faucet.antofy.io"], + "23118": ["https://faucet.opside.network"], "23294": [], "23295": [], "23451": [], @@ -4771,37 +4237,23 @@ export const NETWORK_FAUCETS = { "24484": [], "24734": [], "25186": [], - "25839": [ - "https://faucet.alveytestnet.com" - ], + "25839": ["https://faucet.alveytestnet.com"], "25888": [], - "25925": [ - "https://faucet.bitkubchain.com" - ], - "26026": [ - "https://testnet.faucet.ferrumnetwork.io" - ], + "25925": ["https://faucet.bitkubchain.com"], + "26026": ["https://testnet.faucet.ferrumnetwork.io"], "26600": [], - "26863": [ - "http://faucet.oasischain.io" - ], + "26863": ["http://faucet.oasischain.io"], "27181": [], "27483": [], "27827": [], "28516": [], "28518": [], "28528": [], - "28882": [ - "https://www.l2faucet.com/boba" - ], + "28882": ["https://www.l2faucet.com/boba"], "29112": [], - "29536": [ - "https://faucet.kaichain.net" - ], + "29536": ["https://faucet.kaichain.net"], "29548": [], - "30067": [ - "https://piecenetwork.com/faucet" - ], + "30067": ["https://piecenetwork.com/faucet"], "30088": [], "30103": [], "30730": [], @@ -4809,47 +4261,31 @@ export const NETWORK_FAUCETS = { "30732": [], "31102": [], "31223": [], - "31224": [ - "https://faucet.cloudtx.finance" - ], + "31224": ["https://faucet.cloudtx.finance"], "31337": [], - "31414": [ - "https://faucet.evokescan.org" - ], + "31414": ["https://faucet.evokescan.org"], "31753": [], - "31754": [ - "https://xchainfaucet.net" - ], + "31754": ["https://xchainfaucet.net"], "32001": [], "32382": [], "32520": [], "32659": [], "32769": [], - "32990": [ - "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" - ], + "32990": ["https://dev-wallet.zilliqa.com/faucet?network=isolated_server"], "33033": [], - "33101": [ - "https://dev-wallet.zilliqa.com/faucet?network=testnet" - ], + "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" - ], + "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" - ], + "38401": ["https://robin-faucet.rangersprotocol.com"], "39656": [], "39797": [], "39815": [], @@ -4859,35 +4295,24 @@ export const NETWORK_FAUCETS = { "42161": [], "42170": [], "42220": [], - "42261": [ - "https://faucet.testnet.oasis.io/" - ], + "42261": ["https://faucet.testnet.oasis.io/"], "42262": [], "42355": [], "42766": [], "42793": [], "42801": [], "42888": [], - "43110": [ - "http://athfaucet.ava.network//?address=${ADDRESS}" - ], + "43110": ["http://athfaucet.ava.network//?address=${ADDRESS}"], "43111": [], - "43113": [ - "https://faucet.avax-test.network/" - ], + "43113": ["https://faucet.avax-test.network/"], "43114": [], "43851": [], "44444": [], "44445": [], - "44787": [ - "https://celo.org/developers/faucet", - "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" - ], + "44787": ["https://celo.org/developers/faucet", "https://cauldron.pretoriaresearchlab.io/alfajores-faucet"], "45000": [], "45454": [], - "45510": [ - "https://faucet.deelance.com" - ], + "45510": ["https://faucet.deelance.com"], "46688": [], "47805": [], "48795": [], @@ -4901,143 +4326,87 @@ export const NETWORK_FAUCETS = { "50006": [], "50021": [], "51178": [], - "51712": [ - "https://faucet.sardisnetwork.com" - ], + "51712": ["https://faucet.sardisnetwork.com"], "52014": [], "53277": [], - "53302": [ - "https://sepoliafaucet.com" - ], + "53302": ["https://sepoliafaucet.com"], "53457": [], "53935": [], - "54211": [ - "https://testedge2.haqq.network" - ], + "54211": ["https://testedge2.haqq.network"], "54321": [], - "54555": [ - "https://photonchain.io/airdrop" - ], + "54555": ["https://photonchain.io/airdrop"], "55004": [], - "55555": [ - "http://kururu.finance/faucet?chainId=55555" - ], - "55556": [ - "http://kururu.finance/faucet?chainId=55556" - ], + "55555": ["http://kururu.finance/faucet?chainId=55555"], + "55556": ["http://kururu.finance/faucet?chainId=55556"], "56026": [], "56288": [], "56400": [], - "56789": [ - "https://nova-faucet.velo.org" - ], + "56789": ["https://nova-faucet.velo.org"], "56797": [], - "57000": [ - "https://rollux.id/faucetapp" - ], + "57000": ["https://rollux.id/faucetapp"], "57451": [], "58008": [], - "59140": [ - "https://faucetlink.to/goerli" - ], + "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" - ], + "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/" - ], + "61803": ["http://faucet.etica-stats.org/"], "61916": [], "62049": [], "62050": [], - "62298": [ - "https://citrea.xyz/bridge" - ], + "62298": ["https://citrea.xyz/bridge"], "62320": [ "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", - "https://cauldron.pretoriaresearchlab.io/baklava-faucet" + "https://cauldron.pretoriaresearchlab.io/baklava-faucet", ], "62621": [], - "62831": [ - "https://faucet.avax.network/?subnet=plyr" - ], + "62831": ["https://faucet.avax.network/?subnet=plyr"], "63000": [], - "63001": [ - "https://faucet.tst.ecredits.com" - ], + "63001": ["https://faucet.tst.ecredits.com"], "65450": [], "66988": [], "67588": [], "68770": [], - "69420": [ - "https://faucet.condrieu.ethdevops.io" - ], + "69420": ["https://faucet.condrieu.ethdevops.io"], "70000": [], "70001": [], "70002": [], "70103": [], "70700": [], "71111": [], - "71393": [ - "https://faucet.nervos.org/" - ], - "71401": [ - "https://testnet.bridge.godwoken.io" - ], + "71393": ["https://faucet.nervos.org/"], + "71401": ["https://testnet.bridge.godwoken.io"], "71402": [], "72778": [], "72992": [], "73114": [], "73115": [], - "73799": [ - "https://voltafaucet.energyweb.org" - ], + "73799": ["https://voltafaucet.energyweb.org"], "73927": [], "75000": [], "75512": [], "75513": [], "77001": [], - "77238": [ - "https://faucet.foundryscan.org" - ], - "77612": [ - "https://faucet.vention.network" - ], + "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/" - ], - "80085": [ - "https://artio.faucet.berachain.com" - ], + "78600": ["https://faucet.vanarchain.com"], + "79879": ["https://faucet.goldsmartchain.com"], + "80001": ["https://faucet.polygon.technology/"], + "80002": ["https://faucet.polygon.technology/"], + "80085": ["https://artio.faucet.berachain.com"], "80096": [], "81041": [], "81341": [], @@ -5053,58 +4422,34 @@ export const NETWORK_FAUCETS = { "81720": [], "82459": [], "83872": [], - "84531": [ - "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" - ], + "84531": ["https://www.coinbase.com/faucets/base-ethereum-goerli-faucet"], "84532": [], "84886": [], "85449": [], - "88002": [ - "https://proteusfaucet.nautchain.xyz" - ], + "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" - ], + "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" - ], + "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" - ], + "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" + "https://mantis.block-spirit.ch/faucet", ], "97531": [], - "97970": [ - "https://faucet.optimusz7.com" - ], + "97970": ["https://faucet.optimusz7.com"], "98881": [], - "99099": [ - "https://faucet.eliberty.ngo" - ], + "99099": ["https://faucet.eliberty.ngo"], "99998": [], "99999": [], "100000": [], @@ -5117,9 +4462,7 @@ export const NETWORK_FAUCETS = { "100007": [], "100008": [], "100009": [], - "100010": [ - "https://faucet.vecha.in" - ], + "100010": ["https://faucet.vecha.in"], "100011": [], "101010": [], "102031": [], @@ -5144,16 +4487,10 @@ export const NETWORK_FAUCETS = { "112358": [], "119139": [], "123456": [], - "128123": [ - "https://faucet.etherlink.com" - ], - "131313": [ - "https://faucet.dioneprotocol.com/" - ], + "128123": ["https://faucet.etherlink.com"], + "131313": ["https://faucet.dioneprotocol.com/"], "131419": [], - "132902": [ - "https://info.form.network/faucet" - ], + "132902": ["https://info.form.network/faucet"], "141319": [], "142857": [], "161212": [], @@ -5162,147 +4499,95 @@ export const NETWORK_FAUCETS = { "167008": [], "167009": [], "188710": [], - "188881": [ - "https://faucet.condor.systems" - ], + "188881": ["https://faucet.condor.systems"], "192940": [], "200000": [], "200101": [], "200202": [], "200625": [], - "200810": [ - "https://www.bitlayer.org/faucet" - ], + "200810": ["https://www.bitlayer.org/faucet"], "200901": [], "201018": [], - "201030": [ - "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" - ], + "201030": ["https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c"], "201804": [], "202020": [], "202212": [], "202401": [], "202624": [], "204005": [], - "205205": [ - "https://auroria.faucet.stratisevm.com" - ], + "205205": ["https://auroria.faucet.stratisevm.com"], "210049": [], "210425": [], "220315": [], "221230": [], - "221231": [ - "http://faucet.reapchain.com" - ], + "221231": ["http://faucet.reapchain.com"], "222222": [], "222555": [], - "222666": [ - "https://faucet.deeplnetwork.org" - ], + "222666": ["https://faucet.deeplnetwork.org"], "224168": [], "224422": [], "224433": [], - "230315": [ - "https://testnet.hashkeychain/faucet" - ], + "230315": ["https://testnet.hashkeychain/faucet"], "234666": [], "240515": [], "246529": [], "246785": [], "247253": [], "256256": [], - "262371": [ - "https://faucet.eclatscan.com" - ], + "262371": ["https://faucet.eclatscan.com"], "266256": [], - "271271": [ - "https://faucet.egonscan.com" - ], + "271271": ["https://faucet.egonscan.com"], "281121": [], "282828": [], "309075": [], "313313": [], - "314159": [ - "https://faucet.calibration.fildev.network/" - ], + "314159": ["https://faucet.calibration.fildev.network/"], "322202": [], - "323213": [ - "https://faucet.bloomgenesis.com" - ], - "330844": [ - "https://faucet.tscscan.com" - ], + "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" - ], + "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" - ], + "355113": ["https://bitfinity.network/faucet"], "360890": [], "363636": [], "373737": [], "381931": [], "381932": [], - "404040": [ - "https://faucet.tipboxcoin.net" - ], + "404040": ["https://faucet.tipboxcoin.net"], "413413": [], "420420": [], "420666": [], "420692": [], - "421611": [ - "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" - ], + "421611": ["http://fauceth.komputing.org?chain=421611&address=${ADDRESS}"], "421613": [], "421614": [], "424242": [], "431140": [], - "432201": [ - "https://faucet.avax.network/?subnet=dexalot" - ], + "432201": ["https://faucet.avax.network/?subnet=dexalot"], "432204": [], "444444": [], - "444900": [ - "https://faucet.weelink.gw002.oneitfarm.com" - ], + "444900": ["https://faucet.weelink.gw002.oneitfarm.com"], "471100": [], "473861": [], "474142": [], "504441": [], - "512512": [ - "https://dev.caduceus.foundation/testNetwork" - ], + "512512": ["https://dev.caduceus.foundation/testNetwork"], "513100": [], "526916": [], "534351": [], "534352": [], - "534849": [ - "https://faucet.shinarium.org" - ], + "534849": ["https://faucet.shinarium.org"], "535037": [], - "552981": [ - "https://faucet.oneworldchain.org" - ], - "555555": [ - "https://bridge-testnet.pentagon.games" - ], + "552981": ["https://faucet.oneworldchain.org"], + "555555": ["https://bridge-testnet.pentagon.games"], "555666": [], "622277": [], "622463": [], @@ -5310,28 +4595,15 @@ export const NETWORK_FAUCETS = { "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" - ], + "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" - ], + "713715": ["https://sei-faucet.nima.enterprises", "https://sei-evm.faucetme.pro"], "721529": [], "743111": [], - "751230": [ - "https://faucet.bearnetwork.net" - ], + "751230": ["https://faucet.bearnetwork.net"], "761412": [], "764984": [], "767368": [], @@ -5343,74 +4615,44 @@ export const NETWORK_FAUCETS = { "810182": [], "820522": [], "827431": [], - "839320": [ - "https://faucet.prmscan.org" - ], + "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" - ], + "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" - ], + "978657": ["https://portal.treasure.lol/faucet"], "984122": [], "984123": [], "988207": [], - "998899": [ - "https://faucet.chaingames.io" - ], + "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" - ], + "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" - ], + "2206132": ["https://devnet2faucet.platon.network/faucet"], "2611555": [], "3132023": [], - "3141592": [ - "https://faucet.butterfly.fildev.network" - ], + "3141592": ["https://faucet.butterfly.fildev.network"], "3397901": [], "3441005": [], "3441006": [], @@ -5420,9 +4662,7 @@ export const NETWORK_FAUCETS = { "5167003": [], "5167004": [], "5201420": [], - "5318008": [ - "https://dev.reactive.network/docs/kopli-testnet#faucet" - ], + "5318008": ["https://dev.reactive.network/docs/kopli-testnet#faucet"], "5555555": [], "5555558": [], "6038361": [], @@ -5430,38 +4670,24 @@ export const NETWORK_FAUCETS = { "6666666": [], "7225878": [], "7355310": [], - "7668378": [ - "https://faucet.qom.one" - ], + "7668378": ["https://faucet.qom.one"], "7762959": [], "7777777": [], "8007736": [], - "8008135": [ - "https://get-helium.fhenix.zone" - ], + "8008135": ["https://get-helium.fhenix.zone"], "8080808": [], - "8601152": [ - "https://faucet.testnet8.waterfall.network" - ], + "8601152": ["https://faucet.testnet8.waterfall.network"], "8794598": [], "8888881": [], "8888888": [], "9322252": [], "9322253": [], "10067275": [], - "10101010": [ - "https://faucet.soverun.com" - ], + "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" - ], + "11155111": ["http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}"], + "11155420": ["https://app.optimism.io/faucet"], + "13068200": ["https://faucet.coti.io"], "13371337": [], "14288640": [], "16658437": [], @@ -5475,52 +4701,34 @@ export const NETWORK_FAUCETS = { "20241133": [], "20482050": [], "22052002": [], - "27082017": [ - "https://faucet.exlscan.com" - ], + "27082017": ["https://faucet.exlscan.com"], "27082022": [], "28122024": [], "28945486": [], "29032022": [], "31415926": [], "35855456": [], - "37084624": [ - "https://www.sfuelstation.com/" - ], + "37084624": ["https://www.sfuelstation.com/"], "39916801": [], "43214913": [], - "61717561": [ - "https://aquacha.in/faucet" - ], - "65010002": [ - "https://faucet.autonity.org/" - ], + "61717561": ["https://aquacha.in/faucet"], + "65010002": ["https://faucet.autonity.org/"], "65100002": [], - "68840142": [ - "https://faucet.triangleplatform.com/frame/testnet" - ], + "68840142": ["https://faucet.triangleplatform.com/frame/testnet"], "77787778": [], "88888888": [], "94204209": [], - "99415706": [ - "https://faucet.joys.digital/" - ], + "99415706": ["https://faucet.joys.digital/"], "108160679": [], "111557560": [], "123420111": [], "161221135": [], - "168587773": [ - "https://faucet.quicknode.com/blast/sepolia" - ], + "168587773": ["https://faucet.quicknode.com/blast/sepolia"], "192837465": [], "222000222": [], - "245022926": [ - "https://neonfaucet.org" - ], + "245022926": ["https://neonfaucet.org"], "245022934": [], - "278611351": [ - "https://faucet.razorscan.io/" - ], + "278611351": ["https://faucet.razorscan.io/"], "311752642": [], "328527624": [], "333000333": [], @@ -5528,64 +4736,37 @@ export const NETWORK_FAUCETS = { "486217935": [], "666666666": [], "888888888": [], - "889910245": [ - "https://faucet.ptcscan.io/" - ], + "889910245": ["https://faucet.ptcscan.io/"], "889910246": [], - "974399131": [ - "https://www.sfuelstation.com/" - ], + "974399131": ["https://www.sfuelstation.com/"], "999999999": [], - "1020352220": [ - "https://www.sfuelstation.com/" - ], + "1020352220": ["https://www.sfuelstation.com/"], "1122334455": [], "1146703430": [], - "1273227453": [ - "https://dashboard.humanprotocol.org/faucet" - ], + "1273227453": ["https://dashboard.humanprotocol.org/faucet"], "1313161554": [], "1313161555": [], "1313161556": [], "1313161560": [], - "1350216234": [ - "https://sfuel.skale.network/" - ], - "1351057110": [ - "https://sfuel.skale.network/staging/chaos" - ], + "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" - ], + "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" - ], + "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/" - ], + "2046399126": ["https://ruby.exchange/faucet.html", "https://sfuel.mylilius.com/"], "3125659152": [], - "4216137055": [ - "https://frankenstein-faucet.oneledger.network" - ], + "4216137055": ["https://frankenstein-faucet.oneledger.network"], "11297108109": [], "11297108099": [], "28872323069": [], @@ -5596,18308 +4777,18306 @@ export const NETWORK_FAUCETS = { "197710212030": [], "197710212031": [], "202402181627": [], - "383414847825": [ - "https://faucet.zeniq.net/" - ], + "383414847825": ["https://faucet.zeniq.net/"], "666301171999": [], "6022140761023": [], "2713017997578000": [], - "2716446429837000": [] + "2716446429837000": [], }; export const NETWORK_EXPLORERS = { "1": [ { - "name": "etherscan", - "url": "https://etherscan.io", - "standard": "EIP3091" + name: "etherscan", + url: "https://etherscan.io", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://eth.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "blockscout", + url: "https://eth.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://ethereum.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + name: "dexguru", + url: "https://ethereum.dex.guru", + icon: "dexguru", + standard: "EIP3091", + }, ], "3": [ { - "name": "etherscan", - "url": "https://ropsten.etherscan.io", - "standard": "EIP3091" - } + name: "etherscan", + url: "https://ropsten.etherscan.io", + standard: "EIP3091", + }, ], "4": [ { - "name": "etherscan-rinkeby", - "url": "https://rinkeby.etherscan.io", - "standard": "EIP3091" - } + name: "etherscan-rinkeby", + url: "https://rinkeby.etherscan.io", + standard: "EIP3091", + }, ], "5": [ { - "name": "etherscan-goerli", - "url": "https://goerli.etherscan.io", - "standard": "EIP3091" + name: "etherscan-goerli", + url: "https://goerli.etherscan.io", + standard: "EIP3091", }, { - "name": "blockscout-goerli", - "url": "https://eth-goerli.blockscout.com", - "icon": "blockscout", - "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" - } + name: "Thaichain Explorer", + url: "https://exp.thaichain.org", + standard: "EIP3091", + }, ], "8": [ { - "name": "ubiqscan", - "url": "https://ubiqscan.io", - "standard": "EIP3091" - } + name: "ubiqscan", + url: "https://ubiqscan.io", + standard: "EIP3091", + }, ], "10": [ { - "name": "etherscan", - "url": "https://optimistic.etherscan.io", - "standard": "EIP3091" + name: "etherscan", + url: "https://optimistic.etherscan.io", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://optimism.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "blockscout", + url: "https://optimism.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://optimism.dex.guru", - "icon": "dexguru", - "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: "blockscout", + url: "https://flare-explorer.flare.network", + standard: "EIP3091", }, { - "name": "flarescan", - "url": "https://mainnet.flarescan.com", - "standard": "EIP3091" - } + name: "flarescan", + url: "https://mainnet.flarescan.com", + standard: "EIP3091", + }, ], "16": [ { - "name": "blockscout", - "url": "https://coston-explorer.flare.network", - "standard": "EIP3091" + name: "blockscout", + url: "https://coston-explorer.flare.network", + standard: "EIP3091", }, { - "name": "flarescan", - "url": "https://coston.testnet.flarescan.com", - "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" - } + name: "thundercore-blockscout-testnet", + url: "https://explorer-testnet.thundercore.com", + standard: "EIP3091", + }, ], "19": [ { - "name": "blockscout", - "url": "https://songbird-explorer.flare.network", - "standard": "EIP3091" + name: "blockscout", + url: "https://songbird-explorer.flare.network", + standard: "EIP3091", }, { - "name": "flarescan", - "url": "https://songbird.flarescan.com", - "standard": "EIP3091" - } + name: "flarescan", + url: "https://songbird.flarescan.com", + standard: "EIP3091", + }, ], "20": [ { - "name": "elastos esc explorer", - "url": "https://esc.elastos.io", - "standard": "EIP3091" - } + name: "elastos esc explorer", + url: "https://esc.elastos.io", + standard: "EIP3091", + }, ], "21": [ { - "name": "elastos esc explorer", - "url": "https://esc-testnet.elastos.io", - "standard": "EIP3091" - } + name: "elastos esc explorer", + url: "https://esc-testnet.elastos.io", + standard: "EIP3091", + }, ], "25": [ { - "name": "Cronos Explorer", - "url": "https://explorer.cronos.org", - "standard": "none" - } + name: "Cronos Explorer", + url: "https://explorer.cronos.org", + standard: "none", + }, ], "26": [ { - "name": "Genesis L1 testnet explorer", - "url": "https://testnet.genesisl1.org", - "standard": "none" - } + name: "Genesis L1 testnet explorer", + url: "https://testnet.genesisl1.org", + standard: "none", + }, ], "27": [ { - "name": "Shiba Explorer", - "url": "https://exp.shibchain.org", - "standard": "none" - } + name: "Shiba Explorer", + url: "https://exp.shibchain.org", + standard: "none", + }, ], "29": [ { - "name": "Genesis L1 blockchain explorer", - "url": "https://explorer.genesisl1.org", - "standard": "none" - } + name: "Genesis L1 blockchain explorer", + url: "https://explorer.genesisl1.org", + standard: "none", + }, ], "30": [ { - "name": "Rootstock Explorer", - "url": "https://explorer.rsk.co", - "standard": "EIP3091" + name: "Rootstock Explorer", + url: "https://explorer.rsk.co", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://rootstock.blockscout.com", - "icon": "blockscout", - "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" - } + name: "RSK Testnet Explorer", + url: "https://explorer.testnet.rsk.co", + standard: "EIP3091", + }, ], "34": [ { - "name": "SecureChain Mainnet", - "url": "https://explorer.securechain.ai", - "standard": "EIP3091" - } + name: "SecureChain Mainnet", + url: "https://explorer.securechain.ai", + standard: "EIP3091", + }, ], "36": [ { - "name": "dxscan", - "url": "https://dxscan.io", - "standard": "EIP3091" - } + name: "dxscan", + url: "https://dxscan.io", + standard: "EIP3091", + }, ], "37": [ { - "name": "XPLA Explorer", - "url": "https://explorer.xpla.io/mainnet", - "standard": "EIP3091" - } + name: "XPLA Explorer", + url: "https://explorer.xpla.io/mainnet", + standard: "EIP3091", + }, ], "39": [ { - "icon": "u2u", - "name": "U2U Explorer", - "url": "https://u2uscan.xyz", - "standard": "EIP3091" - } + icon: "u2u", + name: "U2U Explorer", + url: "https://u2uscan.xyz", + standard: "EIP3091", + }, ], "40": [ { - "name": "teloscan", - "url": "https://teloscan.io", - "standard": "EIP3091" - } + name: "teloscan", + url: "https://teloscan.io", + standard: "EIP3091", + }, ], "41": [ { - "name": "teloscan", - "url": "https://testnet.teloscan.io", - "standard": "EIP3091" - } + name: "teloscan", + url: "https://testnet.teloscan.io", + standard: "EIP3091", + }, ], "42": [ { - "name": "Blockscout", - "url": "https://explorer.execution.mainnet.lukso.network", - "standard": "EIP3091" - } + name: "Blockscout", + url: "https://explorer.execution.mainnet.lukso.network", + standard: "EIP3091", + }, ], "43": [ { - "name": "subscan", - "url": "https://pangolin.subscan.io", - "standard": "EIP3091" - } + name: "subscan", + url: "https://pangolin.subscan.io", + standard: "EIP3091", + }, ], "44": [ { - "name": "subscan", - "url": "https://crab.subscan.io", - "standard": "EIP3091" - } + name: "subscan", + url: "https://crab.subscan.io", + standard: "EIP3091", + }, ], "45": [ { - "name": "subscan", - "url": "https://pangoro.subscan.io", - "standard": "none" - } + name: "subscan", + url: "https://pangoro.subscan.io", + standard: "none", + }, ], "46": [ { - "name": "subscan", - "url": "https://darwinia.subscan.io", - "standard": "EIP3091" - } + name: "subscan", + url: "https://darwinia.subscan.io", + standard: "EIP3091", + }, ], "47": [ { - "name": "Acria IntelliChain-Explorer", - "url": "https://explorer.acria.ai", - "standard": "EIP3091" - } + name: "Acria IntelliChain-Explorer", + url: "https://explorer.acria.ai", + standard: "EIP3091", + }, ], "48": [ { - "name": "etmpscan", - "url": "https://etmscan.network", - "icon": "etmp", - "standard": "EIP3091" - } + name: "etmpscan", + url: "https://etmscan.network", + icon: "etmp", + standard: "EIP3091", + }, ], "49": [ { - "name": "etmp", - "url": "https://pioneer.etmscan.network", - "standard": "EIP3091" - } + name: "etmp", + url: "https://pioneer.etmscan.network", + standard: "EIP3091", + }, ], "50": [ { - "name": "xdcscan", - "url": "https://xdcscan.io", - "icon": "blocksscan", - "standard": "EIP3091" + name: "xdcscan", + url: "https://xdcscan.io", + icon: "blocksscan", + standard: "EIP3091", }, { - "name": "blocksscan", - "url": "https://xdc.blocksscan.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: "xdcscan", + url: "https://apothem.xinfinscan.com", + icon: "blocksscan", + standard: "EIP3091", }, { - "name": "blocksscan", - "url": "https://apothem.blocksscan.io", - "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" - } + name: "coinexscan", + url: "https://www.coinex.net", + standard: "none", + }, ], "53": [ { - "name": "coinexscan", - "url": "https://testnet.coinex.net", - "standard": "none" - } + name: "coinexscan", + url: "https://testnet.coinex.net", + standard: "none", + }, ], "54": [ { - "name": "Belly Scan", - "url": "https://bellyscan.com", - "standard": "none" - } + name: "Belly Scan", + url: "https://bellyscan.com", + standard: "none", + }, ], "55": [ { - "name": "zyxscan", - "url": "https://zyxscan.com", - "standard": "none" - } + name: "zyxscan", + url: "https://zyxscan.com", + standard: "none", + }, ], "56": [ { - "name": "bscscan", - "url": "https://bscscan.com", - "standard": "EIP3091" + name: "bscscan", + url: "https://bscscan.com", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://bnb.dex.guru", - "icon": "dexguru", - "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" - } + name: "Syscoin Block Explorer", + url: "https://explorer.syscoin.org", + standard: "EIP3091", + }, ], "58": [ { - "name": "explorer", - "url": "https://explorer.ont.io", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.ont.io", + standard: "EIP3091", + }, ], "60": [ { - "name": "GoChain Explorer", - "url": "https://explorer.gochain.io", - "standard": "EIP3091" - } + name: "GoChain Explorer", + url: "https://explorer.gochain.io", + standard: "EIP3091", + }, ], "61": [ { - "name": "blockscout-ethereum-classic", - "url": "https://etc.blockscout.com", - "standard": "EIP3091" + 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-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-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: "etcnetworkinfo-expedition-ethereum-classic", + url: "https://explorer-expedition.etc-network.info", + standard: "none", }, { - "name": "hebeblock-ethereum-classic", - "url": "https://etcerscan.com", - "standard": "EIP3091" + name: "hebeblock-ethereum-classic", + url: "https://etcerscan.com", + standard: "EIP3091", }, { - "name": "oklink-ethereum-classic", - "url": "https://www.oklink.com/etc", - "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" - } + name: "tokenview-ethereum-classic", + url: "https://etc.tokenview.io", + standard: "EIP3091", + }, ], "63": [ { - "name": "blockscout-mordor", - "url": "https://etc-mordor.blockscout.com", - "standard": "EIP3091" + 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" - } + 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" - } + name: "OKLink", + url: "https://www.oklink.com/okexchain-test", + standard: "EIP3091", + }, ], "66": [ { - "name": "OKLink", - "url": "https://www.oklink.com/en/okc", - "standard": "EIP3091" - } + name: "OKLink", + url: "https://www.oklink.com/en/okc", + standard: "EIP3091", + }, ], "69": [ { - "name": "etherscan", - "url": "https://kovan-optimistic.etherscan.io", - "standard": "EIP3091" - } + name: "etherscan", + url: "https://kovan-optimistic.etherscan.io", + standard: "EIP3091", + }, ], "70": [ { - "name": "hooscan", - "url": "https://www.hooscan.com", - "standard": "EIP3091" - } + name: "hooscan", + url: "https://www.hooscan.com", + standard: "EIP3091", + }, ], "71": [ { - "name": "Conflux Scan", - "url": "https://evmtestnet.confluxscan.net", - "standard": "none" - } + name: "Conflux Scan", + url: "https://evmtestnet.confluxscan.net", + standard: "none", + }, ], "73": [ { - "name": "fncy scan", - "url": "https://fncyscan.fncy.world", - "icon": "fncy", - "standard": "EIP3091" - } + name: "fncy scan", + url: "https://fncyscan.fncy.world", + icon: "fncy", + standard: "EIP3091", + }, ], "74": [ { - "name": "explorer", - "url": "https://explorer.idchain.one", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.idchain.one", + standard: "EIP3091", + }, ], "75": [ { - "name": "DSC Explorer Mainnet", - "url": "https://explorer.decimalchain.com", - "icon": "dsc", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://blockscout.com/poa/sokol", + icon: "blockscout", + standard: "EIP3091", + }, ], "79": [ { - "name": "zenith scan", - "url": "https://scan.zenithchain.co", - "standard": "EIP3091" - } + name: "zenith scan", + url: "https://scan.zenithchain.co", + standard: "EIP3091", + }, ], "80": [ { - "name": "GeneChain Scan", - "url": "https://scan.genechain.io", - "standard": "EIP3091" - } + name: "GeneChain Scan", + url: "https://scan.genechain.io", + standard: "EIP3091", + }, ], "81": [ { - "name": "Block Explorer", - "url": "https://explorer.japanopenchain.org", - "standard": "EIP3091", - "icon": "joc" - } + name: "Block Explorer", + url: "https://explorer.japanopenchain.org", + standard: "EIP3091", + icon: "joc", + }, ], "82": [ { - "name": "Meter Mainnet Scan", - "url": "https://scan.meter.io", - "standard": "EIP3091" - } + name: "Meter Mainnet Scan", + url: "https://scan.meter.io", + standard: "EIP3091", + }, ], "83": [ { - "name": "Meter Testnet Scan", - "url": "https://scan-warringstakes.meter.io", - "standard": "EIP3091" - } + 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" - } + name: "Linqto Devnet Explorer", + url: "https://explorer.linqto-dev.com", + standard: "EIP3091", + }, ], "85": [ { - "name": "GateScan", - "url": "https://www.gatescan.org/testnet", - "standard": "EIP3091" - } + name: "GateScan", + url: "https://www.gatescan.org/testnet", + standard: "EIP3091", + }, ], "86": [ { - "name": "GateScan", - "url": "https://www.gatescan.org", - "standard": "EIP3091" - } + name: "GateScan", + url: "https://www.gatescan.org", + standard: "EIP3091", + }, ], "87": [ { - "name": "novanetwork", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } + name: "novanetwork", + url: "https://explorer.novanetwork.io", + standard: "EIP3091", + }, ], "90": [ { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.garizon.com", + icon: "garizon", + standard: "EIP3091", + }, ], "91": [ { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.garizon.com", + icon: "garizon", + standard: "EIP3091", + }, ], "92": [ { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.garizon.com", + icon: "garizon", + standard: "EIP3091", + }, ], "93": [ { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.garizon.com", + icon: "garizon", + standard: "EIP3091", + }, ], "94": [ { - "name": "SwissDLT Explorer", - "url": "https://explorer.swissdlt.ch", - "icon": "bcts", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Bitkub Chain Explorer", + url: "https://bkcscan.com", + standard: "none", + icon: "bkc", + }, ], "97": [ { - "name": "bscscan-testnet", - "url": "https://testnet.bscscan.com", - "standard": "EIP3091" - } + name: "bscscan-testnet", + url: "https://testnet.bscscan.com", + standard: "EIP3091", + }, ], "98": [ { - "name": "SIX Scan", - "url": "https://sixscan.io/sixnet", - "standard": "none", - "icon": "six" - } + 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" - } + name: "blockscout", + url: "https://blockscout.com/poa/core", + icon: "blockscout", + standard: "EIP3091", + }, ], "100": [ { - "name": "gnosisscan", - "url": "https://gnosisscan.io", - "standard": "EIP3091" + name: "gnosisscan", + url: "https://gnosisscan.io", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://gnosis.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "blockscout", + url: "https://gnosis.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://gnosis.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + name: "dexguru", + url: "https://gnosis.dex.guru", + icon: "dexguru", + standard: "EIP3091", + }, ], "103": [ { - "name": "Worldland Explorer", - "url": "https://scan.worldland.foundation", - "standard": "EIP3091" - } + name: "Worldland Explorer", + url: "https://scan.worldland.foundation", + standard: "EIP3091", + }, ], "104": [ { - "name": "kaibascan", - "url": "https://kaibascan.io", - "icon": "kaibascan", - "standard": "EIP3091" - } + name: "kaibascan", + url: "https://kaibascan.io", + icon: "kaibascan", + standard: "EIP3091", + }, ], "105": [ { - "name": "Web3Games Explorer", - "url": "https://explorer-devnet.web3games.org", - "standard": "none" - } + name: "Web3Games Explorer", + url: "https://explorer-devnet.web3games.org", + standard: "none", + }, ], "106": [ { - "name": "Velas Explorer", - "url": "https://evmexplorer.velas.com", - "standard": "EIP3091" - } + name: "Velas Explorer", + url: "https://evmexplorer.velas.com", + standard: "EIP3091", + }, ], "107": [ { - "name": "nebulatestnet", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } + name: "nebulatestnet", + url: "https://explorer.novanetwork.io", + standard: "EIP3091", + }, ], "108": [ { - "name": "thundercore-viewblock", - "url": "https://viewblock.io/thundercore", - "standard": "EIP3091" - } + name: "thundercore-viewblock", + url: "https://viewblock.io/thundercore", + standard: "EIP3091", + }, ], "109": [ { - "name": "shibariumscan", - "url": "https://www.shibariumscan.io", - "standard": "none" - } + name: "shibariumscan", + url: "https://www.shibariumscan.io", + standard: "none", + }, ], "112": [ { - "name": "blockscout", - "url": "https://coinbit-explorer.chain.sbcrypto.app", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://coinbit-explorer.chain.sbcrypto.app", + icon: "blockscout", + standard: "EIP3091", + }, ], "113": [ { - "name": "Dehvo Explorer", - "url": "https://explorer.dehvo.com", - "standard": "EIP3091" - } + name: "Dehvo Explorer", + url: "https://explorer.dehvo.com", + standard: "EIP3091", + }, ], "114": [ { - "name": "blockscout", - "url": "https://coston2-explorer.flare.network", - "standard": "EIP3091" + name: "blockscout", + url: "https://coston2-explorer.flare.network", + standard: "EIP3091", }, { - "name": "flarescan", - "url": "https://coston2.testnet.flarescan.com", - "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" - } + name: "Uptick Explorer", + url: "https://evm-explorer.uptick.network", + icon: "uptick", + standard: "none", + }, ], "118": [ { - "name": "arcology", - "url": "https://testnet.arcology.network/explorer", - "standard": "none" - } + name: "arcology", + url: "https://testnet.arcology.network/explorer", + standard: "none", + }, ], "119": [ { - "name": "enulsscan", - "url": "https://evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } + name: "enulsscan", + url: "https://evmscan.nuls.io", + icon: "enuls", + standard: "EIP3091", + }, ], "120": [ { - "name": "enulsscan", - "url": "https://beta.evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } + name: "enulsscan", + url: "https://beta.evmscan.nuls.io", + icon: "enuls", + standard: "EIP3091", + }, ], "121": [ { - "name": "realscan", - "url": "https://rclscan.com", - "standard": "EIP3091" - } + name: "realscan", + url: "https://rclscan.com", + standard: "EIP3091", + }, ], "122": [ { - "name": "blockscout", - "url": "https://explorer.fuse.io", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.fuse.io", + icon: "blockscout", + standard: "EIP3091", + }, ], "125": [ { - "name": "OYchain Testnet Explorer", - "url": "https://explorer.testnet.oychain.io", - "standard": "none" - } + name: "OYchain Testnet Explorer", + url: "https://explorer.testnet.oychain.io", + standard: "none", + }, ], "126": [ { - "name": "OYchain Mainnet Explorer", - "url": "https://explorer.oychain.io", - "standard": "none" - } + name: "OYchain Mainnet Explorer", + url: "https://explorer.oychain.io", + standard: "none", + }, ], "128": [ { - "name": "hecoinfo", - "url": "https://hecoinfo.com", - "standard": "EIP3091" - } + name: "hecoinfo", + url: "https://hecoinfo.com", + standard: "EIP3091", + }, ], "129": [ { - "name": "Innovator Explorer", - "url": "https://evm.innovatorchain.com", - "icon": "blockscout", - "standard": "none" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://blockscout.bellecour.iex.ec", + icon: "blockscout", + standard: "EIP3091", + }, ], "135": [ { - "name": "alyx testnet scan", - "url": "https://testnet.alyxscan.com", - "standard": "EIP3091" - } + 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" - } + name: "Deamchain Block Explorer", + url: "https://scan.deamchain.com", + standard: "EIP3091", + icon: "deam", + }, ], "137": [ { - "name": "polygonscan", - "url": "https://polygonscan.com", - "standard": "EIP3091" + name: "polygonscan", + url: "https://polygonscan.com", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://polygon.dex.guru", - "icon": "dexguru", - "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: "Blockscout Explorer", + url: "https://blockscout.defi-oracle.io", + standard: "none", }, { - "name": "Quorum Explorer", - "url": "https://explorer.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" - } + name: "wikiwoop", + url: "https://explorer.wikiwoop.com", + standard: "EIP3091", + }, ], "141": [ { - "name": "Belly Scan", - "url": "https://testnet.bellyscan.com", - "standard": "none" - } + name: "Belly Scan", + url: "https://testnet.bellyscan.com", + standard: "none", + }, ], "144": [ { - "name": "Phiscan", - "url": "https://phiscan.com", - "icon": "phi", - "standard": "none" - } + name: "Phiscan", + url: "https://phiscan.com", + icon: "phi", + standard: "none", + }, ], "145": [ { - "name": "blockscout", - "url": "https://explorer.soraai.bot", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.soraai.bot", + icon: "blockscout", + standard: "EIP3091", + }, ], "147": [ { - "name": "Flag Mainnet Explorer", - "url": "https://flagscan.xyz", - "standard": "EIP3091" - } + name: "Flag Mainnet Explorer", + url: "https://flagscan.xyz", + standard: "EIP3091", + }, ], "148": [ { - "name": "explorer", - "url": "https://explorer.evm.shimmer.network", - "icon": "shimmerevm", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "TenetScan Testnet", + url: "https://testnet.tenetscan.io", + icon: "tenet", + standard: "EIP3091", + }, ], "156": [ { - "name": "OEScan explorer", - "url": "https://testnet.oescan.io", - "standard": "EIP3091" - } + name: "OEScan explorer", + url: "https://testnet.oescan.io", + standard: "EIP3091", + }, ], "157": [ { - "name": "puppyscan", - "url": "https://puppyscan.shib.io", - "standard": "none" - } + name: "puppyscan", + url: "https://puppyscan.shib.io", + standard: "none", + }, ], "158": [ { - "name": "Rbascan Explorer", - "url": "https://rbascan.com", - "standard": "EIP3091" - } + name: "Rbascan Explorer", + url: "https://rbascan.com", + standard: "EIP3091", + }, ], "159": [ { - "name": "Rbascan Testnet Explorer", - "url": "https://testnet.rbascan.com", - "standard": "EIP3091" - } + name: "Rbascan Testnet Explorer", + url: "https://testnet.rbascan.com", + standard: "EIP3091", + }, ], "161": [ { - "name": "blockscout - evascan", - "url": "https://testnet.evascan.io", - "standard": "EIP3091" - } + 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 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 Blockscout", + url: "https://omni-testnet.blockscout.com", + standard: "EIP3091", }, { - "name": "Omni EVM Explorer on Routescan", - "url": "https://testnet.omniscan.network", - "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" - } + name: "atoshiscan", + url: "https://scan.atoverse.info", + standard: "EIP3091", + }, ], "168": [ { - "name": "AIOZ Network Explorer", - "url": "https://explorer.aioz.network", - "standard": "EIP3091" - } + name: "AIOZ Network Explorer", + url: "https://explorer.aioz.network", + standard: "EIP3091", + }, ], "169": [ { - "name": "manta-pacific Explorer", - "url": "https://pacific-explorer.manta.network", - "standard": "EIP3091" - } + name: "manta-pacific Explorer", + url: "https://pacific-explorer.manta.network", + standard: "EIP3091", + }, ], "176": [ { - "name": "dcscan", - "url": "https://exp.dcnetio.cloud", - "standard": "none" - } + name: "dcscan", + url: "https://exp.dcnetio.cloud", + standard: "none", + }, ], "180": [ { - "name": "AME Scan", - "url": "https://amescan.io", - "standard": "EIP3091" - } + name: "AME Scan", + url: "https://amescan.io", + standard: "EIP3091", + }, ], "185": [ { - "name": "blockscout", - "url": "https://explorer.mintchain.io", - "icon": "mint", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.mintchain.io", + icon: "mint", + standard: "EIP3091", + }, ], "186": [ { - "name": "seeleview", - "url": "https://seeleview.net", - "standard": "none" - } + name: "seeleview", + url: "https://seeleview.net", + standard: "none", + }, ], "188": [ { - "name": "Blockmeta", - "url": "https://bmc.blockmeta.com", - "standard": "none" - } + name: "Blockmeta", + url: "https://bmc.blockmeta.com", + standard: "none", + }, ], "189": [ { - "name": "Blockmeta", - "url": "https://bmctestnet.blockmeta.com", - "standard": "none" - } + name: "Blockmeta", + url: "https://bmctestnet.blockmeta.com", + standard: "none", + }, ], "193": [ { - "name": "cemscan", - "url": "https://cemscan.com", - "standard": "EIP3091" - } + name: "cemscan", + url: "https://cemscan.com", + standard: "EIP3091", + }, ], "195": [ { - "name": "OKLink", - "url": "https://www.oklink.com/xlayer-test", - "standard": "EIP3091" - } + name: "OKLink", + url: "https://www.oklink.com/xlayer-test", + standard: "EIP3091", + }, ], "196": [ { - "name": "OKLink", - "url": "https://www.oklink.com/xlayer", - "standard": "EIP3091" - } + name: "OKLink", + url: "https://www.oklink.com/xlayer", + standard: "EIP3091", + }, ], "197": [ { - "name": "blockscout", - "url": "https://testnet.neutrinoschain.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.neutrinoschain.com", + standard: "EIP3091", + }, ], "198": [ { - "name": "Bitchain Scan", - "url": "https://explorer.bitchain.biz", - "standard": "EIP3091" - } + name: "Bitchain Scan", + url: "https://explorer.bitchain.biz", + standard: "EIP3091", + }, ], "199": [ { - "name": "BitTorrent Chain Explorer", - "url": "https://bttcscan.com", - "standard": "EIP3091" - } + name: "BitTorrent Chain Explorer", + url: "https://bttcscan.com", + standard: "EIP3091", + }, ], "200": [ { - "name": "blockscout", - "url": "https://blockscout.com/xdai/arbitrum", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.com/xdai/arbitrum", + standard: "EIP3091", + }, ], "201": [ { - "name": "moac testnet explorer", - "url": "https://testnet.moac.io", - "standard": "none" - } + name: "moac testnet explorer", + url: "https://testnet.moac.io", + standard: "none", + }, ], "202": [ { - "name": "Edgeless Explorer", - "url": "https://testnet.explorer.edgeless.network", - "standard": "EIP3091" - } + name: "Edgeless Explorer", + url: "https://testnet.explorer.edgeless.network", + standard: "EIP3091", + }, ], "204": [ { - "name": "opbnbscan", - "url": "https://mainnet.opbnbscan.com", - "standard": "EIP3091" - } + name: "opbnbscan", + url: "https://mainnet.opbnbscan.com", + standard: "EIP3091", + }, ], "206": [ { - "name": "VinuScan Testnet", - "url": "https://testnet.vinuscan.com", - "icon": "vinuscan-testnet", - "standard": "none" - } + name: "VinuScan Testnet", + url: "https://testnet.vinuscan.com", + icon: "vinuscan-testnet", + standard: "none", + }, ], "207": [ { - "name": "VinuScan", - "url": "https://vinuscan.com", - "icon": "vinuscan", - "standard": "none" - } + name: "VinuScan", + url: "https://vinuscan.com", + icon: "vinuscan", + standard: "none", + }, ], "210": [ { - "name": "Bitnet Explorer", - "url": "https://btnscan.com", - "standard": "EIP3091" - } + name: "Bitnet Explorer", + url: "https://btnscan.com", + standard: "EIP3091", + }, ], "212": [ { - "name": "maposcan", - "url": "https://testnet.maposcan.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "shinascan", + url: "https://shinascan.shinarium.org", + standard: "EIP3091", + }, ], "217": [ { - "name": "siriusnet explorer", - "url": "https://scan.siriusnet.io", - "standard": "none" - } + name: "siriusnet explorer", + url: "https://scan.siriusnet.io", + standard: "none", + }, ], "220": [ { - "name": "scalind", - "url": "https://explorer-sepolia.scalind.com", - "standard": "EIP3091" - } + name: "scalind", + url: "https://explorer-sepolia.scalind.com", + standard: "EIP3091", + }, ], "223": [ { - "name": "blockscout", - "url": "https://explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.bsquared.network", + icon: "bsquare", + standard: "EIP3091", + }, ], "224": [ { - "name": "Viridis Testnet", - "url": "https://testnet.vrd.network", - "standard": "EIP3091" - } + name: "Viridis Testnet", + url: "https://testnet.vrd.network", + standard: "EIP3091", + }, ], "225": [ { - "name": "blockscout", - "url": "https://scan.lachain.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.lachain.io", + standard: "EIP3091", + }, ], "226": [ { - "name": "blockscout", - "url": "https://scan-test.lachain.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan-test.lachain.io", + standard: "EIP3091", + }, ], "230": [ { - "name": "SwapDEX", - "url": "https://evm.swapdex.network", - "standard": "none" - } + name: "SwapDEX", + url: "https://evm.swapdex.network", + standard: "none", + }, ], "234": [ { - "name": "ProtoJumbo", - "url": "https://protojumbo.jumbochain.org", - "standard": "EIP3091" - } + name: "ProtoJumbo", + url: "https://protojumbo.jumbochain.org", + standard: "EIP3091", + }, ], "236": [ { - "name": "Deamchain Testnet Explorer", - "url": "https://testnet-scan.deamchain.com", - "standard": "EIP3091", - "icon": "deam" - } + name: "Deamchain Testnet Explorer", + url: "https://testnet-scan.deamchain.com", + standard: "EIP3091", + icon: "deam", + }, ], "242": [ { - "name": "plgscan", - "url": "https://www.plgscan.com", - "standard": "EIP3091" - } + name: "plgscan", + url: "https://www.plgscan.com", + standard: "EIP3091", + }, ], "246": [ { - "name": "blockscout", - "url": "https://explorer.energyweb.org", - "standard": "none" - } + name: "blockscout", + url: "https://explorer.energyweb.org", + standard: "none", + }, ], "248": [ { - "name": "blockscout", - "url": "https://explorer.oasys.games", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.oasys.games", + standard: "EIP3091", + }, ], "250": [ { - "name": "ftmscan", - "url": "https://ftmscan.com", - "icon": "ftmscan", - "standard": "EIP3091" + name: "ftmscan", + url: "https://ftmscan.com", + icon: "ftmscan", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://fantom.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + name: "dexguru", + url: "https://fantom.dex.guru", + icon: "dexguru", + standard: "EIP3091", + }, ], "252": [ { - "name": "fraxscan", - "url": "https://fraxscan.com", - "standard": "EIP3091" - } + name: "fraxscan", + url: "https://fraxscan.com", + standard: "EIP3091", + }, ], "255": [ { - "name": "blockscout", - "url": "https://blockscout.kroma.network", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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: "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" - } + name: "blockscout", + url: "https://explorer.neura-testnet.ankr.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "269": [ { - "name": "hscan", - "url": "https://hscan.org", - "standard": "EIP3091" - } + name: "hscan", + url: "https://hscan.org", + standard: "EIP3091", + }, ], "271": [ { - "name": "EgonCoin Mainnet", - "url": "https://egonscan.com", - "standard": "EIP3091" - } + name: "EgonCoin Mainnet", + url: "https://egonscan.com", + standard: "EIP3091", + }, ], "274": [ { - "name": "LaChain Explorer", - "url": "https://explorer.lachain.network", - "standard": "EIP3091" - } + 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" - } + name: "Cronos zkEVM Testnet Explorer", + url: "https://explorer.zkevm.cronos.org/testnet", + standard: "none", + }, ], "288": [ { - "name": "Bobascan", - "url": "https://bobascan.com", - "standard": "none" - } + name: "Bobascan", + url: "https://bobascan.com", + standard: "none", + }, ], "291": [ { - "name": "orderlyscout", - "url": "https://explorer.orderly.network", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "orderlyscout", + url: "https://explorer.orderly.network", + icon: "blockscout", + standard: "EIP3091", + }, ], "295": [ { - "name": "HashScan", - "url": "https://hashscan.io/mainnet", - "standard": "EIP3091" + name: "HashScan", + url: "https://hashscan.io/mainnet", + standard: "EIP3091", }, { - "name": "Arkhia Explorer", - "url": "https://explorer.arkhia.io", - "standard": "none" + name: "Arkhia Explorer", + url: "https://explorer.arkhia.io", + standard: "none", }, { - "name": "DragonGlass", - "url": "https://app.dragonglass.me", - "standard": "none" + name: "DragonGlass", + url: "https://app.dragonglass.me", + standard: "none", }, { - "name": "Hedera Explorer", - "url": "https://hederaexplorer.io", - "standard": "none" + name: "Hedera Explorer", + url: "https://hederaexplorer.io", + standard: "none", }, { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.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: "HashScan", + url: "https://hashscan.io/testnet", + standard: "EIP3091", }, { - "name": "Arkhia Explorer", - "url": "https://explorer.arkhia.io", - "standard": "none" + name: "Arkhia Explorer", + url: "https://explorer.arkhia.io", + standard: "none", }, { - "name": "DragonGlass", - "url": "https://app.dragonglass.me", - "standard": "none" + name: "DragonGlass", + url: "https://app.dragonglass.me", + standard: "none", }, { - "name": "Hedera Explorer", - "url": "https://hederaexplorer.io", - "standard": "none" + name: "Hedera Explorer", + url: "https://hederaexplorer.io", + standard: "none", }, { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.io", - "standard": "none" - } + name: "Ledger Works Explore", + url: "https://explore.lworks.io", + standard: "none", + }, ], "297": [ { - "name": "HashScan", - "url": "https://hashscan.io/previewnet", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "zkCandy Block Explorer", + url: "https://sepolia.explorer.zkcandy.io", + icon: "zkcandy", + standard: "EIP3091", + }, ], "303": [ { - "name": "neuroscan", - "url": "https://testnet.ncnscan.com", - "standard": "EIP3091" - } + name: "neuroscan", + url: "https://testnet.ncnscan.com", + standard: "EIP3091", + }, ], "305": [ { - "name": "blockscout", - "url": "https://explorer.zksats.io", - "icon": "zksats", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.zksats.io", + icon: "zksats", + standard: "EIP3091", + }, ], "307": [ { - "name": "Lovely Network Testnet", - "url": "https://tscan.lovely.network", - "standard": "EIP3091" - } + name: "Lovely Network Testnet", + url: "https://tscan.lovely.network", + standard: "EIP3091", + }, ], "308": [ { - "name": "furthscan", - "url": "http://furthscan.com", - "standard": "EIP3091" - } + name: "furthscan", + url: "http://furthscan.com", + standard: "EIP3091", + }, ], "309": [ { - "name": "wyzth", - "url": "http://24.199.108.65:4000", - "icon": "wyzth", - "standard": "EIP3091" - } + 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" - } + name: "Omax Chain Explorer", + url: "https://omaxray.com", + icon: "omaxray", + standard: "EIP3091", + }, ], "313": [ { - "name": "neuroscan", - "url": "https://ncnscan.com", - "standard": "EIP3091" - } + name: "neuroscan", + url: "https://ncnscan.com", + standard: "EIP3091", + }, ], "314": [ { - "name": "Filfox", - "url": "https://filfox.info/en", - "standard": "none" + name: "Filfox", + url: "https://filfox.info/en", + standard: "none", }, { - "name": "Beryx", - "url": "https://beryx.zondax.ch", - "standard": "none" + name: "Beryx", + url: "https://beryx.zondax.ch", + standard: "none", }, { - "name": "Glif Explorer", - "url": "https://explorer.glif.io", - "standard": "EIP3091" + name: "Glif Explorer", + url: "https://explorer.glif.io", + standard: "EIP3091", }, { - "name": "Dev.storage", - "url": "https://dev.storage", - "standard": "none" + name: "Dev.storage", + url: "https://dev.storage", + standard: "none", }, { - "name": "Filscan", - "url": "https://filscan.io", - "standard": "none" + name: "Filscan", + url: "https://filscan.io", + standard: "none", }, { - "name": "Filscout", - "url": "https://filscout.io/en", - "standard": "none" - } + name: "Filscout", + url: "https://filscout.io/en", + standard: "none", + }, ], "321": [ { - "name": "KCC Explorer", - "url": "https://explorer.kcc.io/en", - "standard": "EIP3091" - } + name: "KCC Explorer", + url: "https://explorer.kcc.io/en", + standard: "EIP3091", + }, ], "322": [ { - "name": "kcc-scan-testnet", - "url": "https://scan-testnet.kcc.network", - "standard": "EIP3091" - } + name: "kcc-scan-testnet", + url: "https://scan-testnet.kcc.network", + standard: "EIP3091", + }, ], "323": [ { - "name": "Blockscout", - "url": "https://explorer.cosvm.net", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "w3q-mainnet", + url: "https://explorer.mainnet.web3q.io", + standard: "EIP3091", + }, ], "335": [ { - "name": "ethernal", - "url": "https://explorer-test.dfkchain.com", - "icon": "ethereum", - "standard": "none" - } + 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: "subscan", + url: "https://shiden.subscan.io", + standard: "none", + icon: "subscan", }, { - "name": "blockscout", - "url": "https://blockscout.com/shiden", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.com/shiden", + icon: "blockscout", + standard: "EIP3091", + }, ], "338": [ { - "name": "Cronos Testnet Explorer", - "url": "https://explorer.cronos.org/testnet", - "standard": "none" - } + name: "Cronos Testnet Explorer", + url: "https://explorer.cronos.org/testnet", + standard: "none", + }, ], "345": [ { - "name": "tscscan", - "url": "https://www.tscscan.io", - "icon": "netxscan", - "standard": "none" - } + name: "tscscan", + url: "https://www.tscscan.io", + icon: "netxscan", + standard: "none", + }, ], "361": [ { - "name": "Theta Mainnet Explorer", - "url": "https://explorer.thetatoken.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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: "blockscout", + url: "https://scan.pulsechain.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "otterscan", - "url": "https://otter.pulsechain.com", - "standard": "EIP3091" - } + name: "otterscan", + url: "https://otter.pulsechain.com", + standard: "EIP3091", + }, ], "371": [ { - "name": "blockscout", - "url": "https://explorer-testnet.theconsta.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "CamDL Testnet Explorer", + url: "https://explorer.testnet.camdl.gov.kh", + standard: "EIP3091", + }, ], "397": [ { - "name": "Near Blocks", - "url": "https://nearblocks.io", - "standard": "none" - } + name: "Near Blocks", + url: "https://nearblocks.io", + standard: "none", + }, ], "398": [ { - "name": "Near blocks", - "url": "https://testnet.nearblocks.io", - "standard": "none" - } + name: "Near blocks", + url: "https://testnet.nearblocks.io", + standard: "none", + }, ], "399": [ { - "name": "N3scan", - "url": "https://scan.nativ3.network", - "standard": "EIP3091" - } + name: "N3scan", + url: "https://scan.nativ3.network", + standard: "EIP3091", + }, ], "400": [ { - "name": "blockscout", - "url": "https://testnet.hyperonchain.com", - "icon": "hyperonchain", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.hyperonchain.com", + icon: "hyperonchain", + standard: "EIP3091", + }, ], "401": [ { - "name": "OZONE Scan", - "url": "https://testnet.ozonescan.io", - "standard": "EIP3091" - } + name: "OZONE Scan", + url: "https://testnet.ozonescan.io", + standard: "EIP3091", + }, ], "404": [ { - "name": "Syndr L3 Explorer", - "url": "https://explorer.syndr.com", - "standard": "EIP3091" - } + name: "Syndr L3 Explorer", + url: "https://explorer.syndr.com", + standard: "EIP3091", + }, ], "411": [ { - "name": "pepechain explorer", - "url": "https://explorer.pepe-chain.vip", - "standard": "EIP3091" - } + name: "pepechain explorer", + url: "https://explorer.pepe-chain.vip", + standard: "EIP3091", + }, ], "416": [ { - "name": "SX Network Explorer", - "url": "https://explorer.sx.technology", - "standard": "EIP3091" - } + name: "SX Network Explorer", + url: "https://explorer.sx.technology", + standard: "EIP3091", + }, ], "418": [ { - "name": "LaTestnet Explorer", - "url": "https://testexplorer.lachain.network", - "standard": "EIP3091" - } + name: "LaTestnet Explorer", + url: "https://testexplorer.lachain.network", + standard: "EIP3091", + }, ], "420": [ { - "name": "blockscout", - "url": "https://optimism-goerli.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://optimism-goerli.blockscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "422": [ { - "name": "Viridis Mainnet", - "url": "https://explorer.vrd.network", - "standard": "EIP3091" - } + name: "Viridis Mainnet", + url: "https://explorer.vrd.network", + standard: "EIP3091", + }, ], "424": [ { - "name": "blockscout", - "url": "https://explorer.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.publicgoods.network", + icon: "blockscout", + standard: "EIP3091", + }, ], "427": [ { - "name": "Zeeth Explorer", - "url": "https://explorer.zeeth.io", - "standard": "none" - } + name: "Zeeth Explorer", + url: "https://explorer.zeeth.io", + standard: "none", + }, ], "428": [ { - "name": "Geso Verse Explorer", - "url": "https://explorer.verse.gesoten.com", - "standard": "EIP3091" - } + name: "Geso Verse Explorer", + url: "https://explorer.verse.gesoten.com", + standard: "EIP3091", + }, ], "434": [ { - "name": "Boyaa explorer", - "url": "https://explorer.mainnet.boyaa.network", - "standard": "EIP3091" - } + name: "Boyaa explorer", + url: "https://explorer.mainnet.boyaa.network", + standard: "EIP3091", + }, ], "443": [ { - "name": "Ten Sepolia Rollup Explorer", - "url": "https://tenscan.io", - "standard": "none" - } + name: "Ten Sepolia Rollup Explorer", + url: "https://tenscan.io", + standard: "none", + }, ], "444": [ { - "name": "Synapse Chain Sepolia", - "url": "https://sepolia.synapsescan.com", - "standard": "EIP3091" - } + name: "Synapse Chain Sepolia", + url: "https://sepolia.synapsescan.com", + standard: "EIP3091", + }, ], "456": [ { - "name": "ARZIO Scan", - "url": "https://scan.arzio.co", - "standard": "EIP3091" - } + name: "ARZIO Scan", + url: "https://scan.arzio.co", + standard: "EIP3091", + }, ], "462": [ { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } + name: "AreonScan", + url: "https://areonscan.com", + standard: "none", + }, ], "463": [ { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } + name: "AreonScan", + url: "https://areonscan.com", + standard: "none", + }, ], "500": [ { - "name": "blockexplorer", - "url": "https://suite.camino.network/explorer", - "standard": "none" - } + name: "blockexplorer", + url: "https://suite.camino.network/explorer", + standard: "none", + }, ], "501": [ { - "name": "blockexplorer", - "url": "https://suite.camino.network/explorer", - "standard": "none" - } + name: "blockexplorer", + url: "https://suite.camino.network/explorer", + standard: "none", + }, ], "512": [ { - "name": "aacscan", - "url": "https://scan.acuteangle.com", - "standard": "EIP3091" - } + name: "aacscan", + url: "https://scan.acuteangle.com", + standard: "EIP3091", + }, ], "513": [ { - "name": "aacscan-testnet", - "url": "https://scan-testnet.acuteangle.com", - "standard": "EIP3091" - } + name: "aacscan-testnet", + url: "https://scan-testnet.acuteangle.com", + standard: "EIP3091", + }, ], "520": [ { - "name": "xscscan", - "url": "https://xscscan.pub", - "standard": "EIP3091" - } + name: "xscscan", + url: "https://xscscan.pub", + standard: "EIP3091", + }, ], "530": [ { - "name": "FunctionX Explorer", - "url": "https://fx-evm.functionx.io", - "standard": "EIP3091" - } + name: "FunctionX Explorer", + url: "https://fx-evm.functionx.io", + standard: "EIP3091", + }, ], "534": [ { - "name": "candleexplorer", - "url": "https://candleexplorer.com", - "standard": "EIP3091" - } + name: "candleexplorer", + url: "https://candleexplorer.com", + standard: "EIP3091", + }, ], "537": [ { - "name": "OpTrust explorer", - "url": "https://scan.optrust.io", - "icon": "optrust", - "standard": "none" - } + name: "OpTrust explorer", + url: "https://scan.optrust.io", + icon: "optrust", + standard: "none", + }, ], "542": [ { - "name": "PAWCHAIN Testnet", - "url": "https://pawscan.io", - "standard": "none" - } + name: "PAWCHAIN Testnet", + url: "https://pawscan.io", + standard: "none", + }, ], "545": [ { - "name": "Flow Diver", - "url": "https://testnet.flowdiver.io", - "standard": "none" - } + name: "Flow Diver", + url: "https://testnet.flowdiver.io", + standard: "none", + }, ], "555": [ { - "name": "Vela1 Chain Mainnet Explorer", - "url": "https://exp.velaverse.io", - "standard": "EIP3091" - } + 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" - } + name: "dogechain testnet explorer", + url: "https://explorer-testnet.dogechain.dog", + standard: "EIP3091", + }, ], "570": [ { - "name": "Rollux Explorer", - "url": "https://explorer.rollux.com", - "standard": "EIP3091" - } + name: "Rollux Explorer", + url: "https://explorer.rollux.com", + standard: "EIP3091", + }, ], "571": [ { - "name": "MetaExplorer", - "url": "https://explorer.metatime.com", - "standard": "EIP3091" - } + name: "MetaExplorer", + url: "https://explorer.metatime.com", + standard: "EIP3091", + }, ], "579": [ { - "name": "filenova explorer", - "url": "https://scan.filenova.org", - "icon": "filenova", - "standard": "none" - } + 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: "subscan", + url: "https://astar.subscan.io", + standard: "none", + icon: "subscan", }, { - "name": "blockscout", - "url": "https://blockscout.com/astar", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.com/astar", + icon: "blockscout", + standard: "EIP3091", + }, ], "595": [ { - "name": "blockscout", - "url": "https://blockscout.mandala.aca-staging.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.mandala.aca-staging.network", + standard: "EIP3091", + }, ], "596": [ { - "name": "blockscout", - "url": "https://blockscout.karura-testnet.aca-staging.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Vine Explorer", + url: "https://vne.network/rose", + standard: "none", + icon: "vine", + }, ], "612": [ { - "name": "EIOB Explorer", - "url": "https://explorer.eiob.xyz", - "standard": "none" - } + name: "EIOB Explorer", + url: "https://explorer.eiob.xyz", + standard: "none", + }, ], "614": [ { - "name": "GLQ Explorer", - "url": "https://explorer.graphlinq.io", - "standard": "none" - } + name: "GLQ Explorer", + url: "https://explorer.graphlinq.io", + standard: "none", + }, ], "634": [ { - "name": "avoscan", - "url": "https://avoscan.co", - "icon": "avocado", - "standard": "none" - } + name: "avoscan", + url: "https://avoscan.co", + icon: "avocado", + standard: "none", + }, ], "646": [ { - "name": "Flow Diver", - "url": "https://previewnet.flowdiver.io", - "standard": "none" - } + name: "Flow Diver", + url: "https://previewnet.flowdiver.io", + standard: "none", + }, ], "647": [ { - "name": "SX Network Toronto Explorer", - "url": "https://explorer.toronto.sx.technology", - "standard": "EIP3091" - } + 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" - } + name: "Endurance Scan", + url: "https://explorer.endurance.fusionist.io", + standard: "EIP3091", + }, ], "653": [ { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } + name: "kalichain explorer", + url: "https://explorer.kalichain.com", + standard: "EIP3091", + }, ], "654": [ { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } + name: "kalichain explorer", + url: "https://explorer.kalichain.com", + standard: "EIP3091", + }, ], "662": [ { - "name": "ultronsmartchain explorer", - "url": "https://scan.ultronsmartchain.io", - "standard": "EIP3091" - } + name: "ultronsmartchain explorer", + url: "https://scan.ultronsmartchain.io", + standard: "EIP3091", + }, ], "667": [ { - "name": "blockscout", - "url": "https://arrakis.gorengine.com", - "icon": "laos", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://arrakis.gorengine.com", + icon: "laos", + standard: "EIP3091", + }, ], "668": [ { - "name": "JuncaScan", - "url": "https://scan.juncachain.com", - "standard": "EIP3091" - } + name: "JuncaScan", + url: "https://scan.juncachain.com", + standard: "EIP3091", + }, ], "669": [ { - "name": "JuncaScan", - "url": "https://scan-testnet.juncachain.com", - "standard": "EIP3091" - } + name: "JuncaScan", + url: "https://scan-testnet.juncachain.com", + standard: "EIP3091", + }, ], "686": [ { - "name": "blockscout", - "url": "https://blockscout.karura.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.karura.network", + standard: "EIP3091", + }, ], "690": [ { - "name": "blockscout", - "url": "https://explorer.redstone.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.redstone.xyz", + icon: "blockscout", + standard: "EIP3091", + }, ], "700": [ { - "name": "starscan", - "url": "https://avastar.info", - "standard": "EIP3091" - } + name: "starscan", + url: "https://avastar.info", + standard: "EIP3091", + }, ], "701": [ { - "name": "blockscout", - "url": "https://koi-scan.darwinia.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://koi-scan.darwinia.network", + standard: "EIP3091", + }, ], "707": [ { - "name": "BlockChain Station Explorer", - "url": "https://explorer.bcsdev.io", - "standard": "EIP3091" - } + name: "BlockChain Station Explorer", + url: "https://explorer.bcsdev.io", + standard: "EIP3091", + }, ], "708": [ { - "name": "BlockChain Station Explorer", - "url": "https://testnet.bcsdev.io", - "standard": "EIP3091" - } + 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" - } + name: "Furya EVM Explorer", + url: "https://explorer.furya.io", + standard: "EIP3091", + icon: "highbury", + }, ], "713": [ { - "name": "vrcscan", - "url": "https://vrcscan.com", - "standard": "EIP3091" + name: "vrcscan", + url: "https://vrcscan.com", + standard: "EIP3091", }, { - "name": "dxbscan", - "url": "https://dxb.vrcscan.com", - "standard": "EIP3091" - } + name: "dxbscan", + url: "https://dxb.vrcscan.com", + standard: "EIP3091", + }, ], "719": [ { - "name": "shibscan", - "url": "https://puppyscan.shib.io", - "standard": "EIP3091" - } + name: "shibscan", + url: "https://puppyscan.shib.io", + standard: "EIP3091", + }, ], "721": [ { - "name": "blockscout", - "url": "https://explorer.lycanchain.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.lycanchain.com", + standard: "EIP3091", + }, ], "730": [ { - "name": "Lovely Network Mainnet", - "url": "https://scan.lovely.network", - "standard": "EIP3091" - } + name: "Lovely Network Mainnet", + url: "https://scan.lovely.network", + standard: "EIP3091", + }, ], "741": [ { - "name": "ventionscan", - "url": "https://testnet.ventionscan.io", - "standard": "EIP3091" - } + name: "ventionscan", + url: "https://testnet.ventionscan.io", + standard: "EIP3091", + }, ], "742": [ { - "name": "Script Explorer", - "url": "https://explorer.script.tv", - "standard": "none" - } + name: "Script Explorer", + url: "https://explorer.script.tv", + standard: "none", + }, ], "747": [ { - "name": "Flow Diver", - "url": "https://flowdiver.io", - "standard": "none" - } + name: "Flow Diver", + url: "https://flowdiver.io", + standard: "none", + }, ], "766": [ { - "name": "QL1 Mainnet Explorer", - "url": "https://mainnet.qom.one", - "icon": "qom", - "standard": "EIP3091" - } + 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" - } + name: "OPEN CHAIN TESTNET", + url: "https://testnet.openchain.info", + standard: "none", + }, ], "786": [ { - "name": "maalscan", - "url": "https://maalscan.io", - "standard": "EIP3091" - } + name: "maalscan", + url: "https://maalscan.io", + standard: "EIP3091", + }, ], "787": [ { - "name": "blockscout", - "url": "https://blockscout.acala.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.acala.network", + standard: "EIP3091", + }, ], "788": [ { - "name": "aeroscan", - "url": "https://testnet.aeroscan.id", - "standard": "EIP3091" - } + name: "aeroscan", + url: "https://testnet.aeroscan.id", + standard: "EIP3091", + }, ], "789": [ { - "name": "patexscan", - "url": "https://patexscan.io", - "icon": "patex", - "standard": "EIP3091" - } + name: "patexscan", + url: "https://patexscan.io", + icon: "patex", + standard: "EIP3091", + }, ], "799": [ { - "name": "rupayascan", - "url": "https://scan.testnet.rupaya.io", - "standard": "EIP3091" - } + name: "rupayascan", + url: "https://scan.testnet.rupaya.io", + standard: "EIP3091", + }, ], "800": [ { - "name": "Lucid Explorer", - "url": "https://explorer.lucidcoin.io", - "standard": "none" - } + name: "Lucid Explorer", + url: "https://explorer.lucidcoin.io", + standard: "none", + }, ], "810": [ { - "name": "Haven1 Explorer", - "url": "https://testnet-explorer.haven1.org", - "icon": "haven1", - "standard": "EIP3091" - } + 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.qitmeer.io", + standard: "EIP3091", }, { - "name": "meerscan", - "icon": "meer", - "url": "https://qng.meerscan.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" - } + name: "BeOne Chain Mainnet", + url: "https://beonescan.com", + standard: "EIP3091", + }, ], "822": [ { - "name": "RunicScan", - "url": "https://scan.runic.build", - "icon": "runic-testnet", - "standard": "EIP3091" - } + name: "RunicScan", + url: "https://scan.runic.build", + icon: "runic-testnet", + standard: "EIP3091", + }, ], "831": [ { - "name": "CDT Explorer", - "url": "https://explorer.checkdot.io", - "standard": "none" - } + name: "CDT Explorer", + url: "https://explorer.checkdot.io", + standard: "none", + }, ], "841": [ { - "name": "Taraxa Explorer", - "url": "https://explorer.mainnet.taraxa.io", - "standard": "none" - } + name: "Taraxa Explorer", + url: "https://explorer.mainnet.taraxa.io", + standard: "none", + }, ], "842": [ { - "name": "Taraxa Explorer", - "url": "https://explorer.testnet.taraxa.io", - "standard": "none" - } + name: "Taraxa Explorer", + url: "https://explorer.testnet.taraxa.io", + standard: "none", + }, ], "859": [ { - "name": "Zeeth Explorer Dev", - "url": "https://explorer.dev.zeeth.io", - "standard": "none" - } + name: "Zeeth Explorer Dev", + url: "https://explorer.dev.zeeth.io", + standard: "none", + }, ], "868": [ { - "name": "FSCScan", - "url": "https://explorer.fantasiachain.com", - "standard": "EIP3091" - } + 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" - } + name: "Bandai Namco Research Verse Explorer", + url: "https://explorer.main.oasvrs.bnken.net", + standard: "EIP3091", + }, ], "877": [ { - "name": "dxtscan", - "url": "https://dxtscan.com", - "standard": "EIP3091" - } + name: "dxtscan", + url: "https://dxtscan.com", + standard: "EIP3091", + }, ], "880": [ { - "name": "Ambros Chain Explorer", - "url": "https://ambrosscan.com", - "standard": "none" - } + name: "Ambros Chain Explorer", + url: "https://ambrosscan.com", + standard: "none", + }, ], "898": [ { - "name": "Maxi Chain Testnet Explorer", - "url": "https://testnet.maxi.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "TAPROOT Scan", + url: "https://scan.taprootchain.io", + icon: "taproot", + standard: "EIP3091", + }, ], "917": [ { - "name": "FireScan", - "url": "https://rinia.firescan.io", - "standard": "EIP3091" - } + name: "FireScan", + url: "https://rinia.firescan.io", + standard: "EIP3091", + }, ], "919": [ { - "name": "modescout", - "url": "https://sepolia.explorer.mode.network", - "standard": "none" - } + name: "modescout", + url: "https://sepolia.explorer.mode.network", + standard: "none", + }, ], "927": [ { - "name": "Yidarkscan", - "url": "https://yidarkscan.com", - "standard": "EIP3091" - } + 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://scan.v4.testnet.pulsechain.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://otter-testnet-pulsechain.g4mm4.io", - "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" - } + name: "Lyra Explorer", + url: "https://explorer.lyra.finance", + icon: "lyra", + standard: "EIP3091", + }, ], "963": [ { - "name": "blockscout", - "url": "https://scan.bitcoincode.technology", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.bitcoincode.technology", + standard: "EIP3091", + }, ], "969": [ { - "name": "EthXY Network Explorer", - "url": "https://explorer.ethxy.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "EthXY Testnet Network Explorer", + url: "https://explorer.testnet.ethxy.com", + standard: "EIP3091", + }, ], "980": [ { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } + 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" - } + 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" - } + name: "topscan.dev", + url: "https://www.topscan.io", + standard: "none", + }, ], "990": [ { - "name": "eLiberty Mainnet", - "url": "https://explorer.eliberty.ngo", - "standard": "EIP3091" - } + name: "eLiberty Mainnet", + url: "https://explorer.eliberty.ngo", + standard: "EIP3091", + }, ], "997": [ { - "name": "5ireChain Explorer", - "url": "https://explorer.5ire.network", - "standard": "none", - "icon": "5ireChain" - } + name: "5ireChain Explorer", + url: "https://explorer.5ire.network", + standard: "none", + icon: "5ireChain", + }, ], "998": [ { - "name": "blockscout", - "url": "https://explorer.luckynetwork.org", - "standard": "none" + name: "blockscout", + url: "https://explorer.luckynetwork.org", + standard: "none", }, { - "name": "expedition", - "url": "https://lnscan.org", - "standard": "none" - } + name: "expedition", + url: "https://lnscan.org", + standard: "none", + }, ], "1000": [ { - "name": "GTON Network Explorer", - "url": "https://explorer.gton.network", - "standard": "EIP3091" - } + name: "GTON Network Explorer", + url: "https://explorer.gton.network", + standard: "EIP3091", + }, ], "1001": [ { - "name": "Klaytnscope", - "url": "https://baobab.klaytnscope.com", - "standard": "EIP3091" + name: "Klaytnscope", + url: "https://baobab.klaytnscope.com", + standard: "EIP3091", }, { - "name": "Klaytnfinder", - "url": "https://baobab.klaytnfinder.io", - "standard": "EIP3091" - } + name: "Klaytnfinder", + url: "https://baobab.klaytnfinder.io", + standard: "EIP3091", + }, ], "1003": [ { - "name": "Tectum explorer", - "url": "https://explorer.tectum.io", - "icon": "Tettoken256", - "standard": "EIP3091" - } + 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" - } + name: "test-ektascan", + url: "https://test.ektascan.io", + icon: "ekta", + standard: "EIP3091", + }, ], "1008": [ { - "name": "eurusexplorer", - "url": "https://explorer.eurus.network", - "icon": "eurus", - "standard": "none" - } + name: "eurusexplorer", + url: "https://explorer.eurus.network", + icon: "eurus", + standard: "none", + }, ], "1009": [ { - "name": "Jumboscan", - "url": "https://jumboscan.jumbochain.org", - "standard": "EIP3091" - } + 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 EVM Explorer (Blockscout)", + url: "https://evm.rebuschain.com", + icon: "rebus", + standard: "none", }, { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://cosmos.rebuschain.com", - "icon": "rebus", - "standard": "none" - } + name: "Rebus Cosmos Explorer (ping.pub)", + url: "https://cosmos.rebuschain.com", + icon: "rebus", + standard: "none", + }, ], "1028": [ { - "name": "testbttcscan", - "url": "https://testscan.bittorrentchain.io", - "standard": "none" - } + name: "testbttcscan", + url: "https://testscan.bittorrentchain.io", + standard: "none", + }, ], "1030": [ { - "name": "Conflux Scan", - "url": "https://evm.confluxscan.net", - "standard": "none" - } + name: "Conflux Scan", + url: "https://evm.confluxscan.net", + standard: "none", + }, ], "1031": [ { - "name": "proxy network testnet", - "url": "http://testnet-explorer.theproxy.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Bronos Explorer", + url: "https://broscan.bronos.org", + standard: "none", + icon: "bronos", + }, ], "1073": [ { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.evm.testnet.shimmer.network", + standard: "EIP3091", + }, ], "1075": [ { - "name": "explorer", - "url": "https://explorer.evm.testnet.iotaledger.net", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.evm.testnet.iotaledger.net", + standard: "EIP3091", + }, ], "1079": [ { - "name": "explorer", - "url": "https://subnets-test.avax.network/mintara", - "standard": "EIP3091" - } + name: "explorer", + url: "https://subnets-test.avax.network/mintara", + standard: "EIP3091", + }, ], "1080": [ { - "name": "explorer", - "url": "https://subnets.avax.network/mintara", - "standard": "EIP3091" - } + name: "explorer", + url: "https://subnets.avax.network/mintara", + standard: "EIP3091", + }, ], "1088": [ { - "name": "blockscout", - "url": "https://andromeda-explorer.metis.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://andromeda-explorer.metis.io", + standard: "EIP3091", + }, ], "1089": [ { - "name": "explorer.guru", - "url": "https://humans.explorers.guru", - "icon": "humans", - "standard": "none" - } + name: "explorer.guru", + url: "https://humans.explorers.guru", + icon: "humans", + standard: "none", + }, ], "1099": [ { - "name": "moac explorer", - "url": "https://explorer.moac.io", - "standard": "none" - } + name: "moac explorer", + url: "https://explorer.moac.io", + standard: "none", + }, ], "1100": [ { - "name": "dym.fyi", - "url": "https://dym.fyi", - "standard": "EIP3091" - } + name: "dym.fyi", + url: "https://dym.fyi", + standard: "EIP3091", + }, ], "1101": [ { - "name": "blockscout", - "url": "https://zkevm.polygonscan.com", - "icon": "zkevm", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://zkevm.polygonscan.com", + icon: "zkevm", + standard: "EIP3091", + }, ], "1107": [ { - "name": "BLXq Explorer", - "url": "https://explorer.blx.org", - "icon": "blxq", - "standard": "none" - } + 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" - } + name: "BLXq Explorer", + url: "https://explorer.blxq.org", + icon: "blxq", + standard: "EIP3091", + }, ], "1111": [ { - "name": "WEMIX Block Explorer", - "url": "https://explorer.wemix.com", - "standard": "EIP3091" - } + name: "WEMIX Block Explorer", + url: "https://explorer.wemix.com", + standard: "EIP3091", + }, ], "1112": [ { - "name": "WEMIX Testnet Microscope", - "url": "https://microscope.test.wemix.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Core Scan", + url: "https://scan.coredao.org", + icon: "core", + standard: "EIP3091", + }, ], "1117": [ { - "name": "Dogcoin", - "url": "https://explorer.dogcoin.network", - "standard": "EIP3091" - } + name: "Dogcoin", + url: "https://explorer.dogcoin.network", + standard: "EIP3091", + }, ], "1123": [ { - "name": "blockscout", - "url": "https://testnet-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet-explorer.bsquared.network", + icon: "bsquare", + standard: "EIP3091", + }, ], "1133": [ { - "name": "MetaScan", - "url": "https://meta.defiscan.live", - "standard": "EIP3091" - } + name: "MetaScan", + url: "https://meta.defiscan.live", + standard: "EIP3091", + }, ], "1135": [ { - "name": "blockscout", - "url": "https://blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.lisk.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "1138": [ { - "name": "amstarscan-testnet", - "url": "https://testnet.amstarscan.com", - "standard": "EIP3091" - } + name: "amstarscan-testnet", + url: "https://testnet.amstarscan.com", + standard: "EIP3091", + }, ], "1147": [ { - "name": "Flag Testnet Explorer", - "url": "https://testnet-explorer.flagscan.xyz", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "mosscan", + url: "https://www.mosscan.com", + icon: "clubmos", + standard: "none", + }, ], "1197": [ { - "name": "ioraexplorer", - "url": "https://explorer.iorachain.com", - "standard": "EIP3091" - } + name: "ioraexplorer", + url: "https://explorer.iorachain.com", + standard: "EIP3091", + }, ], "1202": [ { - "name": "WTTScout", - "url": "https://explorer.cadaut.com", - "standard": "EIP3091" - } + name: "WTTScout", + url: "https://explorer.cadaut.com", + standard: "EIP3091", + }, ], "1209": [ { - "name": "Saitascan explorer", - "url": "https://saitascan.io", - "standard": "none", - "icon": "SaitaBlockChain(SBC)" - } + 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" - } + name: "Cuckoo Sepolia Explorer", + url: "https://testnet-scan.cuckoo.network", + standard: "EIP3091", + }, ], "1213": [ { - "name": "popcateum explorer", - "url": "https://explorer.popcateum.org", - "standard": "none" - } + name: "popcateum explorer", + url: "https://explorer.popcateum.org", + standard: "none", + }, ], "1214": [ { - "name": "Enter Explorer - Expenter", - "url": "https://explorer.entercoin.net", - "icon": "enter", - "standard": "EIP3091" - } + name: "Enter Explorer - Expenter", + url: "https://explorer.entercoin.net", + icon: "enter", + standard: "EIP3091", + }, ], "1224": [ { - "name": "Hybrid Testnet", - "url": "https://explorer.buildonhybrid.com", - "standard": "EIP3091" - } + name: "Hybrid Testnet", + url: "https://explorer.buildonhybrid.com", + standard: "EIP3091", + }, ], "1229": [ { - "name": "blockscout", - "url": "https://exzoscan.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://exzoscan.io", + standard: "EIP3091", + }, ], "1230": [ { - "name": "Ultron Testnet Explorer", - "url": "https://explorer.ultron-dev.io", - "icon": "ultron", - "standard": "none" - } + 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" - } + name: "Ultron Explorer", + url: "https://ulxscan.com", + icon: "ultron", + standard: "none", + }, ], "1234": [ { - "name": "StepScan", - "url": "https://stepscan.io", - "icon": "step", - "standard": "EIP3091" - } + name: "StepScan", + url: "https://stepscan.io", + icon: "step", + standard: "EIP3091", + }, ], "1235": [ { - "name": "ITX Mainnet Explorer (Blockscout)", - "url": "https://explorer.itxchain.com", - "standard": "EIP3091" - } + name: "ITX Mainnet Explorer (Blockscout)", + url: "https://explorer.itxchain.com", + standard: "EIP3091", + }, ], "1243": [ { - "name": "archiescan", - "url": "https://app.archiescan.io", - "standard": "none" - } + name: "archiescan", + url: "https://app.archiescan.io", + standard: "none", + }, ], "1244": [ { - "name": "archiescan", - "url": "https://testnet.archiescan.io", - "standard": "none" - } + name: "archiescan", + url: "https://testnet.archiescan.io", + standard: "none", + }, ], "1246": [ { - "name": "OMSCAN - Expenter", - "url": "https://omscan.omplatform.com", - "standard": "none" - } + name: "OMSCAN - Expenter", + url: "https://omscan.omplatform.com", + standard: "none", + }, ], "1248": [ { - "name": "DogetherExplorer", - "url": "https://explorer.dogether.dog", - "standard": "EIP3091" - } + name: "DogetherExplorer", + url: "https://explorer.dogether.dog", + standard: "EIP3091", + }, ], "1252": [ { - "name": "CICscan", - "url": "https://testnet.cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } + name: "CICscan", + url: "https://testnet.cicscan.com", + icon: "cicchain", + standard: "EIP3091", + }, ], "1280": [ { - "name": "HALOexplorer", - "url": "https://browser.halo.land", - "standard": "none" - } + name: "HALOexplorer", + url: "https://browser.halo.land", + standard: "none", + }, ], "1284": [ { - "name": "moonscan", - "url": "https://moonbeam.moonscan.io", - "standard": "none" - } + name: "moonscan", + url: "https://moonbeam.moonscan.io", + standard: "none", + }, ], "1285": [ { - "name": "moonscan", - "url": "https://moonriver.moonscan.io", - "standard": "none" - } + name: "moonscan", + url: "https://moonriver.moonscan.io", + standard: "none", + }, ], "1287": [ { - "name": "moonscan", - "url": "https://moonbase.moonscan.io", - "standard": "none" - } + name: "moonscan", + url: "https://moonbase.moonscan.io", + standard: "none", + }, ], "1291": [ { - "name": "Swisstronik Scout", - "url": "https://explorer-evm.testnet.swisstronik.com", - "standard": "none" - } + name: "Swisstronik Scout", + url: "https://explorer-evm.testnet.swisstronik.com", + standard: "none", + }, ], "1311": [ { - "name": "dos-testnet", - "url": "https://test.doscan.io", - "standard": "EIP3091" - } + name: "dos-testnet", + url: "https://test.doscan.io", + standard: "EIP3091", + }, ], "1314": [ { - "name": "alyxscan", - "url": "https://www.alyxscan.com", - "standard": "EIP3091" - } + name: "alyxscan", + url: "https://www.alyxscan.com", + standard: "EIP3091", + }, ], "1319": [ { - "name": "AIA Chain Explorer Mainnet", - "url": "https://aiascan.com", - "standard": "EIP3091" - } + name: "AIA Chain Explorer Mainnet", + url: "https://aiascan.com", + standard: "EIP3091", + }, ], "1320": [ { - "name": "AIA Chain Explorer Testnet", - "url": "https://testnet.aiascan.com", - "standard": "EIP3091" - } + name: "AIA Chain Explorer Testnet", + url: "https://testnet.aiascan.com", + standard: "EIP3091", + }, ], "1328": [ { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } + name: "Seitrace", + url: "https://seitrace.com", + standard: "EIP3091", + }, ], "1329": [ { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } + name: "Seitrace", + url: "https://seitrace.com", + standard: "EIP3091", + }, ], "1338": [ { - "name": "Elysium testnet explorer", - "url": "https://elysium-explorer.vulcanforged.com", - "standard": "none" - } + name: "Elysium testnet explorer", + url: "https://elysium-explorer.vulcanforged.com", + standard: "none", + }, ], "1339": [ { - "name": "Elysium mainnet explorer", - "url": "https://explorer.elysiumchain.tech", - "standard": "none" - } + name: "Elysium mainnet explorer", + url: "https://explorer.elysiumchain.tech", + standard: "none", + }, ], "1343": [ { - "name": "BLITZ Explorer", - "url": "https://subnets-test.avax.network/blitz", - "standard": "EIP3091" - } + name: "BLITZ Explorer", + url: "https://subnets-test.avax.network/blitz", + standard: "EIP3091", + }, ], "1353": [ { - "name": "CICscan", - "url": "https://cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } + name: "CICscan", + url: "https://cicscan.com", + icon: "cicchain", + standard: "EIP3091", + }, ], "1369": [ { - "name": "zafirium-explorer", - "url": "https://explorer.zakumi.io", - "standard": "none" - } + name: "zafirium-explorer", + url: "https://explorer.zakumi.io", + standard: "none", + }, ], "1370": [ { - "name": "ramascan", - "url": "https://ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } + name: "ramascan", + url: "https://ramascan.com", + icon: "ramestta", + standard: "EIP3091", + }, ], "1377": [ { - "name": "Pingaksha", - "url": "https://pingaksha.ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } + name: "Pingaksha", + url: "https://pingaksha.ramascan.com", + icon: "ramestta", + standard: "EIP3091", + }, ], "1379": [ { - "name": "kalarscan", - "url": "https://explorer.kalarchain.tech", - "icon": "kalarscan", - "standard": "EIP3091" - } + name: "kalarscan", + url: "https://explorer.kalarchain.tech", + icon: "kalarscan", + standard: "EIP3091", + }, ], "1388": [ { - "name": "amstarscan", - "url": "https://mainnet.amstarscan.com", - "standard": "EIP3091" - } + name: "amstarscan", + url: "https://mainnet.amstarscan.com", + standard: "EIP3091", + }, ], "1392": [ { - "name": "BlockExplorer", - "url": "https://www.blockexplorer.com", - "standard": "EIP3091" - } + name: "BlockExplorer", + url: "https://www.blockexplorer.com", + standard: "EIP3091", + }, ], "1433": [ { - "name": "Rikeza Blockchain explorer", - "url": "https://rikscan.com", - "standard": "EIP3091" - } + name: "Rikeza Blockchain explorer", + url: "https://rikscan.com", + standard: "EIP3091", + }, ], "1442": [ { - "name": "Polygon zkEVM explorer", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } + name: "Polygon zkEVM explorer", + url: "https://explorer.public.zkevm-test.net", + standard: "EIP3091", + }, ], "1452": [ { - "name": "GIL Explorer", - "url": "https://explorer.giltestnet.com", - "standard": "EIP3091" - } + name: "GIL Explorer", + url: "https://explorer.giltestnet.com", + standard: "EIP3091", + }, ], "1453": [ { - "name": "MetaExplorer", - "url": "https://istanbul-explorer.metachain.dev", - "standard": "EIP3091" - } + name: "MetaExplorer", + url: "https://istanbul-explorer.metachain.dev", + standard: "EIP3091", + }, ], "1455": [ { - "name": "Ctex Scan Explorer", - "url": "https://ctexscan.com", - "standard": "none" - } + name: "Ctex Scan Explorer", + url: "https://ctexscan.com", + standard: "none", + }, ], "1490": [ { - "name": "Vitruveo Explorer", - "url": "https://explorer.vitruveo.xyz", - "icon": "vitruveo", - "standard": "EIP3091" - } + name: "Vitruveo Explorer", + url: "https://explorer.vitruveo.xyz", + icon: "vitruveo", + standard: "EIP3091", + }, ], "1499": [ { - "name": "IGC-Scan", - "url": "https://igcscan.com", - "standard": "EIP3091" - } + name: "IGC-Scan", + url: "https://igcscan.com", + standard: "EIP3091", + }, ], "1501": [ { - "name": "bevm canary scan", - "url": "https://scan-canary.bevm.io", - "standard": "none" - } + name: "bevm canary scan", + url: "https://scan-canary.bevm.io", + standard: "none", + }, ], "1506": [ { - "name": "Sherpax Mainnet Explorer", - "url": "https://evm.sherpax.io", - "standard": "none" - } + name: "Sherpax Mainnet Explorer", + url: "https://evm.sherpax.io", + standard: "none", + }, ], "1507": [ { - "name": "Sherpax Testnet Explorer", - "url": "https://evm-pre.sherpax.io", - "standard": "none" - } + 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" - } + name: "Beagle Messaging Chain Explorer", + url: "https://eth.beagle.chat", + standard: "EIP3091", + }, ], "1559": [ { - "name": "TenetScan Mainnet", - "url": "https://tenetscan.io", - "icon": "tenet", - "standard": "EIP3091" - } + name: "TenetScan Mainnet", + url: "https://tenetscan.io", + icon: "tenet", + standard: "EIP3091", + }, ], "1617": [ { - "name": "Ethereum Inscription Explorer", - "url": "https://explorer.etins.org", - "standard": "none" - } + name: "Ethereum Inscription Explorer", + url: "https://explorer.etins.org", + standard: "none", + }, ], "1625": [ { - "name": "Gravity Alpha Mainnet Explorer", - "url": "https://explorer.gravity.xyz", - "standard": "EIP3091" - } + name: "Gravity Alpha Mainnet Explorer", + url: "https://explorer.gravity.xyz", + standard: "EIP3091", + }, ], "1662": [ { - "name": "Liquichain Mainnet", - "url": "https://mainnet.liquichain.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Anytype Explorer", + url: "https://explorer.anytype.io", + icon: "any", + standard: "EIP3091", + }, ], "1707": [ { - "name": "blockscout", - "url": "https://exp.blockchain.or.th", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://exp.blockchain.or.th", + standard: "EIP3091", + }, ], "1708": [ { - "name": "blockscout", - "url": "https://exp.testnet.blockchain.or.th", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://exp.testnet.blockchain.or.th", + standard: "EIP3091", + }, ], "1717": [ { - "name": "Doric Explorer", - "url": "https://explorer.doric.network", - "standard": "EIP3091" - } + name: "Doric Explorer", + url: "https://explorer.doric.network", + standard: "EIP3091", + }, ], "1718": [ { - "name": "Palettescan", - "url": "https://palettescan.com", - "icon": "PLT", - "standard": "none" - } + name: "Palettescan", + url: "https://palettescan.com", + icon: "PLT", + standard: "none", + }, ], "1729": [ { - "name": "Reya Network Explorer", - "url": "https://explorer.reya.network", - "standard": "EIP3091" - } + name: "Reya Network Explorer", + url: "https://explorer.reya.network", + standard: "EIP3091", + }, ], "1740": [ { - "name": "blockscout", - "url": "https://testnet.explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.explorer.metall2.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "1750": [ { - "name": "blockscout", - "url": "https://explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.metall2.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "1773": [ { - "name": "PartyExplorer", - "url": "https://partyexplorer.co", - "icon": "grams", - "standard": "EIP3091" - } + name: "PartyExplorer", + url: "https://partyexplorer.co", + icon: "grams", + standard: "EIP3091", + }, ], "1777": [ { - "name": "Gauss Explorer", - "url": "https://explorer.gaussgang.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://rabbit.analogscan.com", + standard: "none", + }, ], "1818": [ { - "name": "cube-scan", - "url": "https://cubescan.network", - "standard": "EIP3091" - } + name: "cube-scan", + url: "https://cubescan.network", + standard: "EIP3091", + }, ], "1819": [ { - "name": "cubetest-scan", - "url": "https://testnet.cubescan.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "whitechain-explorer", + url: "https://explorer.whitechain.io", + standard: "EIP3091", + }, ], "1881": [ { - "name": "blockscout", - "url": "https://scan.cartenz.works", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.cartenz.works", + standard: "EIP3091", + }, ], "1890": [ { - "name": "phoenix", - "url": "https://phoenix.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } + name: "phoenix", + url: "https://phoenix.lightlink.io", + icon: "lightlink", + standard: "EIP3091", + }, ], "1891": [ { - "name": "pegasus", - "url": "https://pegasus.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } + name: "pegasus", + url: "https://pegasus.lightlink.io", + icon: "lightlink", + standard: "EIP3091", + }, ], "1898": [ { - "name": "explorer", - "url": "https://explorer.boyanet.org:4001", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.boyanet.org:4001", + standard: "EIP3091", + }, ], "1904": [ { - "name": "blockscout", - "url": "https://explorer.sportschainnetwork.xyz", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.sportschainnetwork.xyz", + standard: "EIP3091", + }, ], "1907": [ { - "name": "Bitci Explorer", - "url": "https://bitciexplorer.com", - "standard": "EIP3091" - } + name: "Bitci Explorer", + url: "https://bitciexplorer.com", + standard: "EIP3091", + }, ], "1908": [ { - "name": "Bitci Explorer Testnet", - "url": "https://testnet.bitciexplorer.com", - "standard": "EIP3091" - } + name: "Bitci Explorer Testnet", + url: "https://testnet.bitciexplorer.com", + standard: "EIP3091", + }, ], "1909": [ { - "name": "blockscout", - "url": "https://merklescan.com", - "standard": "none" - } + name: "blockscout", + url: "https://merklescan.com", + standard: "none", + }, ], "1911": [ { - "name": "scalind", - "url": "https://explorer.scalind.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "dos-mainnet", + url: "https://exp.dexilla.com", + standard: "EIP3091", + }, ], "1956": [ { - "name": "aiw3 testnet scan", - "url": "https://scan-testnet.aiw3.io", - "standard": "none" - } + name: "aiw3 testnet scan", + url: "https://scan-testnet.aiw3.io", + standard: "none", + }, ], "1961": [ { - "name": "Selendra Scan", - "url": "https://scan.selendra.org", - "standard": "none" - } + name: "Selendra Scan", + url: "https://scan.selendra.org", + standard: "none", + }, ], "1967": [ { - "name": "metaexplorer-eleanor", - "url": "https://explorer.metatime.com/eleanor", - "standard": "EIP3091" - } + name: "metaexplorer-eleanor", + url: "https://explorer.metatime.com/eleanor", + standard: "EIP3091", + }, ], "1969": [ { - "name": "blockscout", - "url": "https://testnetscan.scschain.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnetscan.scschain.com", + standard: "EIP3091", + }, ], "1970": [ { - "name": "blockscout", - "url": "https://scan.scschain.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.scschain.com", + standard: "EIP3091", + }, ], "1972": [ { - "name": "RedeCoin Explorer", - "url": "https://explorer3.redecoin.eu", - "standard": "none" - } + name: "RedeCoin Explorer", + url: "https://explorer3.redecoin.eu", + standard: "none", + }, ], "1975": [ { - "name": "Onus explorer mainnet", - "url": "https://explorer.onuschain.io", - "icon": "onus", - "standard": "EIP3091" - } + 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" - } + name: "testnetexplorer", + url: "https://testnetexplorer.eurus.network", + icon: "eurus", + standard: "none", + }, ], "1985": [ { - "name": "mainnetexplorer", - "url": "http://explore.satosh.ie", - "icon": "satoshie", - "standard": "none" - } + name: "mainnetexplorer", + url: "http://explore.satosh.ie", + icon: "satoshie", + standard: "none", + }, ], "1986": [ { - "name": "testnetexplorer", - "url": "http://explore-testnet.satosh.ie", - "icon": "satoshie", - "standard": "none" - } + name: "testnetexplorer", + url: "http://explore-testnet.satosh.ie", + icon: "satoshie", + standard: "none", + }, ], "1992": [ { - "name": "routescan", - "url": "https://explorer.hubble.exchange", - "standard": "EIP3091" - } + name: "routescan", + url: "https://explorer.hubble.exchange", + standard: "EIP3091", + }, ], "1994": [ { - "name": "ektascan", - "url": "https://ektascan.io", - "icon": "ekta", - "standard": "EIP3091" - } + name: "ektascan", + url: "https://ektascan.io", + icon: "ekta", + standard: "EIP3091", + }, ], "1995": [ { - "name": "edexa-testnet", - "url": "https://explorer.testnet.edexa.network", - "standard": "EIP3091" - } + name: "edexa-testnet", + url: "https://explorer.testnet.edexa.network", + standard: "EIP3091", + }, ], "1996": [ { - "name": "Sanko Explorer", - "url": "https://explorer.sanko.xyz", - "standard": "EIP3091" - } + name: "Sanko Explorer", + url: "https://explorer.sanko.xyz", + standard: "EIP3091", + }, ], "1998": [ { - "name": "Kyotoscan", - "url": "https://testnet.kyotoscan.io", - "standard": "EIP3091" - } + name: "Kyotoscan", + url: "https://testnet.kyotoscan.io", + standard: "EIP3091", + }, ], "2000": [ { - "name": "dogechain explorer", - "url": "https://explorer.dogechain.dog", - "standard": "EIP3091" - } + name: "dogechain explorer", + url: "https://explorer.dogechain.dog", + standard: "EIP3091", + }, ], "2001": [ { - "name": "Blockscout", - "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } + 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" - } + name: "Blockscout", + url: "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + standard: "none", + }, ], "2004": [ { - "name": "MetaScan", - "url": "http://twoto3.com:3000", - "standard": "none" - } + name: "MetaScan", + url: "http://twoto3.com:3000", + standard: "none", + }, ], "2008": [ { - "name": "CloudWalk Testnet Explorer", - "url": "https://explorer.testnet.cloudwalk.io", - "standard": "none" - } + 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" - } + name: "CloudWalk Mainnet Explorer", + url: "https://explorer.mainnet.cloudwalk.io", + standard: "none", + }, ], "2014": [ { - "name": "nowscan", - "url": "https://nowscan.io", - "standard": "EIP3091" - } + name: "nowscan", + url: "https://nowscan.io", + standard: "EIP3091", + }, ], "2016": [ { - "name": "MainnetZ", - "url": "https://explorer.mainnetz.io", - "standard": "EIP3091" - } + name: "MainnetZ", + url: "https://explorer.mainnetz.io", + standard: "EIP3091", + }, ], "2017": [ { - "name": "telscan", - "url": "https://telscan.io", - "icon": "telcoin", - "standard": "EIP3091" - } + name: "telscan", + url: "https://telscan.io", + icon: "telcoin", + standard: "EIP3091", + }, ], "2018": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.dev.publicmint.io", - "standard": "EIP3091" - } + name: "PublicMint Explorer", + url: "https://explorer.dev.publicmint.io", + standard: "EIP3091", + }, ], "2019": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.tst.publicmint.io", - "standard": "EIP3091" - } + name: "PublicMint Explorer", + url: "https://explorer.tst.publicmint.io", + standard: "EIP3091", + }, ], "2020": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.publicmint.io", - "standard": "EIP3091" - } + 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 EdgeEVM explorer by Bharathcoorg", + url: "https://edgscan.live", + standard: "EIP3091", }, { - "name": "Edgscan EdgeWASM explorer by Bharathcoorg", - "url": "https://edgscan.ink", - "standard": "none", - "icon": "edgscan" - } + 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" - } + 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 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" - } + name: "Taycan Cosmos Explorer", + url: "https://cosmoscan-test.hupayx.io", + standard: "none", + icon: "shuffle", + }, ], "2025": [ { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } + name: "rangersscan", + url: "https://scan.rangersprotocol.com", + standard: "none", + }, ], "2026": [ { - "name": "Edgeless Explorer", - "url": "https://explorer.edgeless.network", - "standard": "EIP3091" - } + name: "Edgeless Explorer", + url: "https://explorer.edgeless.network", + standard: "EIP3091", + }, ], "2031": [ { - "name": "subscan", - "url": "https://centrifuge.subscan.io", - "standard": "EIP3091", - "icon": "subscan" - } + name: "subscan", + url: "https://centrifuge.subscan.io", + standard: "EIP3091", + icon: "subscan", + }, ], "2037": [ { - "name": "KIWI Explorer", - "url": "https://subnets-test.avax.network/kiwi", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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 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" - } + 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 EVM Explorer (Blockscout)", + url: "https://web3-explorer.thestratos.org", + standard: "none", }, { - "name": "Stratos Cosmos Explorer (BigDipper)", - "url": "https://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" - } + name: "movoscan", + url: "https://movoscan.com", + icon: "movoscan", + standard: "none", + }, ], "2077": [ { - "name": "blockscout", - "url": "https://explorer.qkacoin.org", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.qkacoin.org", + standard: "EIP3091", + }, ], "2100": [ { - "name": "Ecoball Explorer", - "url": "https://scan.ecoball.org", - "standard": "EIP3091" - } + name: "Ecoball Explorer", + url: "https://scan.ecoball.org", + standard: "EIP3091", + }, ], "2101": [ { - "name": "Ecoball Testnet Explorer", - "url": "https://espuma-scan.ecoball.org", - "standard": "EIP3091" - } + name: "Ecoball Testnet Explorer", + url: "https://espuma-scan.ecoball.org", + standard: "EIP3091", + }, ], "2109": [ { - "name": "blockscout", - "url": "https://explorer.exosama.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.exosama.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "2112": [ { - "name": "uchain.info", - "url": "https://uchain.info", - "standard": "EIP3091" - } + name: "uchain.info", + url: "https://uchain.info", + standard: "EIP3091", + }, ], "2121": [ { - "name": "catenascan", - "url": "https://catenascan.com", - "standard": "EIP3091" - } + name: "catenascan", + url: "https://catenascan.com", + standard: "EIP3091", + }, ], "2122": [ { - "name": "Metad Scan", - "url": "https://scan.metaplayer.one", - "icon": "metad", - "standard": "EIP3091" - } + name: "Metad Scan", + url: "https://scan.metaplayer.one", + icon: "metad", + standard: "EIP3091", + }, ], "2124": [ { - "name": "MP1Scan", - "url": "https://dubai.mp1scan.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Quorum Explorer", + url: "https://public-2138.defi-oracle.io", + standard: "none", + }, ], "2140": [ { - "name": "oneness-mainnet", - "url": "https://scan.onenesslabs.io", - "standard": "EIP3091" - } + name: "oneness-mainnet", + url: "https://scan.onenesslabs.io", + standard: "EIP3091", + }, ], "2141": [ { - "name": "oneness-testnet", - "url": "https://scan.testnet.onenesslabs.io", - "standard": "EIP3091" - } + name: "oneness-testnet", + url: "https://scan.testnet.onenesslabs.io", + standard: "EIP3091", + }, ], "2151": [ { - "name": "BOASCAN", - "url": "https://boascan.io", - "icon": "agora", - "standard": "EIP3091" - } + name: "BOASCAN", + url: "https://boascan.io", + icon: "agora", + standard: "EIP3091", + }, ], "2152": [ { - "name": "findorascan", - "url": "https://evm.findorascan.io", - "standard": "EIP3091" - } + name: "findorascan", + url: "https://evm.findorascan.io", + standard: "EIP3091", + }, ], "2153": [ { - "name": "findorascan", - "url": "https://testnet-anvil.evm.findorascan.io", - "standard": "EIP3091" - } + name: "findorascan", + url: "https://testnet-anvil.evm.findorascan.io", + standard: "EIP3091", + }, ], "2154": [ { - "name": "findorascan", - "url": "https://testnet-forge.evm.findorascan.io", - "standard": "EIP3091" - } + name: "findorascan", + url: "https://testnet-forge.evm.findorascan.io", + standard: "EIP3091", + }, ], "2199": [ { - "name": "blockscout", - "url": "https://explorer.moonsama.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.moonsama.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "2202": [ { - "name": "Antofy Mainnet", - "url": "https://antofyscan.com", - "standard": "EIP3091" - } + name: "Antofy Mainnet", + url: "https://antofyscan.com", + standard: "EIP3091", + }, ], "2203": [ { - "name": "Explorer", - "url": "https://explorer.bitcoinevm.com", - "icon": "ebtc", - "standard": "none" - } + name: "Explorer", + url: "https://explorer.bitcoinevm.com", + icon: "ebtc", + standard: "none", + }, ], "2213": [ { - "name": "Evanesco Explorer", - "url": "https://explorer.evanesco.org", - "standard": "none" - } + name: "Evanesco Explorer", + url: "https://explorer.evanesco.org", + standard: "none", + }, ], "2221": [ { - "name": "Kava Testnet Explorer", - "url": "http://testnet.kavascan.com", - "standard": "EIP3091", - "icon": "kava" - } + 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" - } + name: "Kava EVM Explorer", + url: "https://kavascan.com", + standard: "EIP3091", + icon: "kava", + }, ], "2223": [ { - "name": "VChain Scan", - "url": "https://scan.vcex.xyz", - "standard": "EIP3091" - } + 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: "Polkadot.js", + url: "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", + standard: "none", }, { - "name": "Subscan", - "url": "https://krest.subscan.io", - "standard": "none" - } + name: "Subscan", + url: "https://krest.subscan.io", + standard: "none", + }, ], "2300": [ { - "name": "bombscan", - "icon": "bomb", - "url": "https://bombscan.com", - "standard": "EIP3091" - } + name: "bombscan", + icon: "bomb", + url: "https://bombscan.com", + standard: "EIP3091", + }, ], "2323": [ { - "name": "SOMA Testnet Explorer", - "icon": "soma", - "url": "https://testnet.somascan.io", - "standard": "none" - } + 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" - } + 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" - } + 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" - } + 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 Explorer", + icon: "atleta", + url: "https://blockscout.atleta.network", + standard: "none", }, { - "name": "Atleta Olympia Polka Explorer", - "icon": "atleta", - "url": "https://polkadot-explorer.atleta.network/#/explorer", - "standard": "none" - } + name: "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" - } + name: "OmniaVerse Explorer", + url: "https://scan.omniaverse.io", + standard: "EIP3091", + }, ], "2358": [ { - "name": "blockscout", - "url": "https://blockscout.sepolia.kroma.network", - "icon": "kroma", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "TCG Verse Explorer", + url: "https://explorer.tcgverse.xyz", + standard: "EIP3091", + }, ], "2410": [ { - "name": "Karak Mainnet Explorer", - "url": "https://explorer.karak.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + icon: "u2u_nebulas", + name: "U2U Explorer", + url: "https://testnet.u2uscan.xyz", + standard: "EIP3091", + }, ], "2522": [ { - "name": "fraxscan", - "url": "https://holesky.fraxscan.com", - "standard": "EIP3091" - } + name: "fraxscan", + url: "https://holesky.fraxscan.com", + standard: "EIP3091", + }, ], "2569": [ { - "name": "tpcscan", - "url": "https://tpcscan.com", - "icon": "techpay", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "REDLC Explorer", + url: "https://redlightscan.finance", + standard: "EIP3091", + }, ], "2612": [ { - "name": "ezchain", - "url": "https://cchain-explorer.ezchain.com", - "standard": "EIP3091" - } + name: "ezchain", + url: "https://cchain-explorer.ezchain.com", + standard: "EIP3091", + }, ], "2613": [ { - "name": "ezchain", - "url": "https://testnet-cchain-explorer.ezchain.com", - "standard": "EIP3091" - } + name: "ezchain", + url: "https://testnet-cchain-explorer.ezchain.com", + standard: "EIP3091", + }, ], "2625": [ { - "name": "whitechain-testnet-explorer", - "url": "https://testnet.whitechain.io", - "standard": "EIP3091" - } + name: "whitechain-testnet-explorer", + url: "https://testnet.whitechain.io", + standard: "EIP3091", + }, ], "2710": [ { - "name": "Morph Testnet Explorer", - "url": "https://explorer-testnet.morphl2.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Nanon Rollup Explorer", + url: "https://explorer.nanon.network", + standard: "EIP3091", + }, ], "2777": [ { - "name": "GM Network Mainnet Explorer", - "url": "https://scan.gmnetwork.ai", - "standard": "EIP3091" - } + 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" - } + name: "Morph Holesky Testnet Explorer", + url: "https://explorer-holesky.morphl2.io", + standard: "EIP3091", + }, ], "2907": [ { - "name": "blockscout", - "url": "https://eluxscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://eluxscan.com", + standard: "none", + }, ], "2911": [ { - "name": "blockscout", - "url": "https://explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.hychain.com", + icon: "hychain", + standard: "EIP3091", + }, ], "2941": [ { - "name": "Xenon testnet Explorer", - "url": "https://testnet.xenonchain.com", - "standard": "none" - } + name: "Xenon testnet Explorer", + url: "https://testnet.xenonchain.com", + standard: "none", + }, ], "2999": [ { - "name": "BitYuan Block Chain Explorer", - "url": "https://mainnet.bityuan.com", - "standard": "none" - } + name: "BitYuan Block Chain Explorer", + url: "https://mainnet.bityuan.com", + standard: "none", + }, ], "3001": [ { - "name": "UNcover", - "url": "https://www.uncoverexplorer.com/?network=Nikau", - "standard": "none" - } + name: "UNcover", + url: "https://www.uncoverexplorer.com/?network=Nikau", + standard: "none", + }, ], "3003": [ { - "name": "canxium explorer", - "url": "https://explorer.canxium.org", - "standard": "none" - } + name: "canxium explorer", + url: "https://explorer.canxium.org", + standard: "none", + }, ], "3011": [ { - "name": "PLAYA3ULL GAMES Explorer", - "url": "https://3011.routescan.io", - "icon": "playa3ull", - "standard": "EIP3091" - } + 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" - } + 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 EVM Explorer (Blockscout)", + url: "https://evm.testnet.rebus.money", + icon: "rebus", + standard: "none", }, { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://testnet.rebus.money/rebustestnet", - "icon": "rebus", - "standard": "none" - } + name: "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" - } + name: "explorer-thebifrost", + url: "https://explorer.mainnet.bifrostnetwork.com", + standard: "EIP3091", + }, ], "3073": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } + name: "mevm explorer", + url: "https://explorer.movementlabs.xyz", + standard: "none", + }, ], "3306": [ { - "name": "Debounce Devnet Explorer", - "url": "https://explorer.debounce.network", - "standard": "EIP3091" - } + name: "Debounce Devnet Explorer", + url: "https://explorer.debounce.network", + standard: "EIP3091", + }, ], "3334": [ { - "name": "w3q-galileo", - "url": "https://explorer.galileo.web3q.io", - "standard": "EIP3091" - } + name: "w3q-galileo", + url: "https://explorer.galileo.web3q.io", + standard: "EIP3091", + }, ], "3400": [ { - "name": "Paribu Net Explorer", - "url": "https://explorer.paribu.network", - "standard": "EIP3091" - } + name: "Paribu Net Explorer", + url: "https://explorer.paribu.network", + standard: "EIP3091", + }, ], "3424": [ { - "name": "Evolve Mainnet Explorer", - "url": "https://evoexplorer.com", - "standard": "EIP3091" - } + name: "Evolve Mainnet Explorer", + url: "https://evoexplorer.com", + standard: "EIP3091", + }, ], "3434": [ { - "name": "SecureChain", - "url": "https://testnet.securechain.ai", - "standard": "EIP3091" - } + name: "SecureChain", + url: "https://testnet.securechain.ai", + standard: "EIP3091", + }, ], "3456": [ { - "name": "LayerEdge Testnet Explorer", - "url": "https://testnet-explorer.layeredge.io", - "icon": "layerEdge", - "standard": "EIP3091" - } + name: "LayerEdge Testnet Explorer", + url: "https://testnet-explorer.layeredge.io", + icon: "layerEdge", + standard: "EIP3091", + }, ], "3500": [ { - "name": "Paribu Net Testnet Explorer", - "url": "https://testnet.paribuscan.com", - "standard": "EIP3091" - } + name: "Paribu Net Testnet Explorer", + url: "https://testnet.paribuscan.com", + standard: "EIP3091", + }, ], "3501": [ { - "name": "JFIN Chain Explorer", - "url": "https://exp.jfinchain.com", - "standard": "EIP3091" - } + name: "JFIN Chain Explorer", + url: "https://exp.jfinchain.com", + standard: "EIP3091", + }, ], "3601": [ { - "name": "Pando Mainnet Explorer", - "url": "https://explorer.pandoproject.org", - "standard": "none" - } + name: "Pando Mainnet Explorer", + url: "https://explorer.pandoproject.org", + standard: "none", + }, ], "3602": [ { - "name": "Pando Testnet Explorer", - "url": "https://testnet.explorer.pandoproject.org", - "standard": "none" - } + name: "Pando Testnet Explorer", + url: "https://testnet.explorer.pandoproject.org", + standard: "none", + }, ], "3636": [ { - "name": "3xpl", - "url": "https://3xpl.com/botanix", - "standard": "EIP3091" + name: "3xpl", + url: "https://3xpl.com/botanix", + standard: "EIP3091", }, { - "name": "Blockscout", - "url": "https://blockscout.botanixlabs.dev", - "standard": "EIP3091" - } + name: "Blockscout", + url: "https://blockscout.botanixlabs.dev", + standard: "EIP3091", + }, ], "3637": [ { - "name": "Botanix", - "url": "https://btxtestchain.com", - "standard": "EIP3091" - } + name: "Botanix", + url: "https://btxtestchain.com", + standard: "EIP3091", + }, ], "3639": [ { - "name": "iChainscan", - "url": "https://ichainscan.com", - "standard": "EIP3091" - } + name: "iChainscan", + url: "https://ichainscan.com", + standard: "EIP3091", + }, ], "3666": [ { - "name": "jscan", - "url": "https://jscan.jnsdao.com", - "standard": "EIP3091" - } + name: "jscan", + url: "https://jscan.jnsdao.com", + standard: "EIP3091", + }, ], "3690": [ { - "name": "bittexscan", - "url": "https://bittexscan.com", - "standard": "EIP3091" - } + name: "bittexscan", + url: "https://bittexscan.com", + standard: "EIP3091", + }, ], "3693": [ { - "name": "Empire Explorer", - "url": "https://explorer.empirenetwork.io", - "standard": "none" - } + name: "Empire Explorer", + url: "https://explorer.empirenetwork.io", + standard: "none", + }, ], "3698": [ { - "name": "SenjePowers", - "url": "https://testnet.senjepowersscan.com", - "standard": "EIP3091" - } + name: "SenjePowers", + url: "https://testnet.senjepowersscan.com", + standard: "EIP3091", + }, ], "3699": [ { - "name": "SenjePowers", - "url": "https://senjepowersscan.com", - "standard": "EIP3091" - } + name: "SenjePowers", + url: "https://senjepowersscan.com", + standard: "EIP3091", + }, ], "3737": [ { - "name": "Crossbell Explorer", - "url": "https://scan.crossbell.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "AlveyScan", + url: "https://alveyscan.com", + icon: "alveychain", + standard: "EIP3091", + }, ], "3799": [ { - "name": "ttntscan", - "url": "https://testnet-explorer.tangle.tools", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "ttntscan", + url: "https://testnet-explorer.tangle.tools", + icon: "blockscout", + standard: "EIP3091", + }, ], "3888": [ { - "name": "KalyScan", - "url": "https://kalyscan.io", - "standard": "EIP3091" - } + name: "KalyScan", + url: "https://kalyscan.io", + standard: "EIP3091", + }, ], "3889": [ { - "name": "KalyScan", - "url": "https://testnet.kalyscan.io", - "standard": "EIP3091" - } + name: "KalyScan", + url: "https://testnet.kalyscan.io", + standard: "EIP3091", + }, ], "3912": [ { - "name": "DRAC_Network Scan", - "url": "https://www.dracscan.io", - "standard": "EIP3091" - } + name: "DRAC_Network Scan", + url: "https://www.dracscan.io", + standard: "EIP3091", + }, ], "3939": [ { - "name": "DOScan-Test", - "url": "https://test.doscan.io", - "icon": "doschain", - "standard": "EIP3091" - } + name: "DOScan-Test", + url: "https://test.doscan.io", + icon: "doschain", + standard: "EIP3091", + }, ], "3966": [ { - "name": "DYNO Explorer", - "url": "https://dynoscan.io", - "standard": "EIP3091" - } + name: "DYNO Explorer", + url: "https://dynoscan.io", + standard: "EIP3091", + }, ], "3967": [ { - "name": "DYNO Explorer", - "url": "https://testnet.dynoscan.io", - "standard": "EIP3091" - } + name: "DYNO Explorer", + url: "https://testnet.dynoscan.io", + standard: "EIP3091", + }, ], "3993": [ { - "name": "blockscout", - "url": "https://exp-testnet.apexlayer.xyz", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://exp-testnet.apexlayer.xyz", + standard: "EIP3091", + }, ], "3999": [ { - "name": "YuanChain Explorer", - "url": "https://mainnet.yuan.org", - "standard": "none" - } + name: "YuanChain Explorer", + url: "https://mainnet.yuan.org", + standard: "none", + }, ], "4000": [ { - "name": "OZONE Scan", - "url": "https://ozonescan.io", - "standard": "EIP3091" - } + name: "OZONE Scan", + url: "https://ozonescan.io", + standard: "EIP3091", + }, ], "4001": [ { - "name": "Peperium Chain Explorer", - "url": "https://scan-testnet.peperium.io", - "icon": "peperium", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Carbonium Network tesnet Explorer", + icon: "cbr", + url: "https://testnet.carboniumscan.com", + standard: "none", + }, ], "4048": [ { - "name": "ganscan", - "url": "https://ganscan.gpu.net", - "standard": "none" - } + name: "ganscan", + url: "https://ganscan.gpu.net", + standard: "none", + }, ], "4058": [ { - "name": "blockscout", - "url": "https://ocean.ftnscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://ocean.ftnscan.com", + standard: "none", + }, ], "4061": [ { - "name": "Nahmii 3 Mainnet Explorer", - "url": "https://explorer.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Musterscan", + url: "https://muster-explorer.alt.technology", + standard: "EIP3091", + }, ], "4080": [ { - "name": "tobescan", - "url": "https://tobescan.com", - "standard": "EIP3091" - } + name: "tobescan", + url: "https://tobescan.com", + standard: "EIP3091", + }, ], "4090": [ { - "name": "blockscout", - "url": "https://oasis.ftnscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://oasis.ftnscan.com", + standard: "none", + }, ], "4096": [ { - "name": "Bitindi", - "url": "https://testnet.bitindiscan.com", - "standard": "EIP3091" - } + name: "Bitindi", + url: "https://testnet.bitindiscan.com", + standard: "EIP3091", + }, ], "4099": [ { - "name": "Bitindi", - "url": "https://bitindiscan.com", - "standard": "EIP3091" - } + name: "Bitindi", + url: "https://bitindiscan.com", + standard: "EIP3091", + }, ], "4102": [ { - "name": "AIOZ Network Testnet Explorer", - "url": "https://testnet.explorer.aioz.network", - "standard": "EIP3091" - } + name: "AIOZ Network Testnet Explorer", + url: "https://testnet.explorer.aioz.network", + standard: "EIP3091", + }, ], "4141": [ { - "name": "Tipboxcoin", - "url": "https://testnet.tipboxcoin.net", - "standard": "EIP3091" - } + name: "Tipboxcoin", + url: "https://testnet.tipboxcoin.net", + standard: "EIP3091", + }, ], "4157": [ { - "name": "CrossFi Testnet Scan", - "url": "https://test.xfiscan.com", - "standard": "EIP3091", - "icon": "crossfi" - } + 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" - } + name: "PHI Explorer", + url: "https://explorer.phi.network", + icon: "phi", + standard: "none", + }, ], "4200": [ { - "name": "L2scan", - "url": "https://scan.merlinchain.io", - "icon": "merlin", - "standard": "EIP3091" - } + name: "L2scan", + url: "https://scan.merlinchain.io", + icon: "merlin", + standard: "EIP3091", + }, ], "4201": [ { - "name": "Blockscout", - "url": "https://explorer.execution.testnet.lukso.network", - "standard": "none" - } + name: "Blockscout", + url: "https://explorer.execution.testnet.lukso.network", + standard: "none", + }, ], "4202": [ { - "name": "liskscout", - "url": "https://sepolia-blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "liskscout", + url: "https://sepolia-blockscout.lisk.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "4242": [ { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } + name: "nexiscan", + url: "https://www.nexiscan.com", + standard: "EIP3091", + }, ], "4243": [ { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } + name: "nexiscan", + url: "https://www.nexiscan.com", + standard: "EIP3091", + }, ], "4337": [ { - "name": "Beam Explorer", - "url": "https://subnets.avax.network/beam", - "standard": "EIP3091" - } + name: "Beam Explorer", + url: "https://subnets.avax.network/beam", + standard: "EIP3091", + }, ], "4400": [ { - "name": "Creditscan", - "url": "https://scan.creditsmartchain.com", - "icon": "credit", - "standard": "EIP3091" - } + name: "Creditscan", + url: "https://scan.creditsmartchain.com", + icon: "credit", + standard: "EIP3091", + }, ], "4444": [ { - "name": "htmlcoin", - "url": "https://explorer.htmlcoin.com", - "icon": "htmlcoin", - "standard": "none" - } + 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" - } + 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" - } + name: "EMoney ethscan", + url: "https://ethscan.emoney.network", + icon: "emoney", + standard: "EIP3091", + }, ], "4613": [ { - "name": "VERY explorer", - "url": "https://www.veryscan.io", - "standard": "none" - } + name: "VERY explorer", + url: "https://www.veryscan.io", + standard: "none", + }, ], "4689": [ { - "name": "iotexscan", - "url": "https://iotexscan.io", - "standard": "EIP3091" - } + name: "iotexscan", + url: "https://iotexscan.io", + standard: "EIP3091", + }, ], "4690": [ { - "name": "testnet iotexscan", - "url": "https://testnet.iotexscan.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://testnet-explorer.blackfort.network", + icon: "blockscout", + standard: "EIP3091", + }, ], "4893": [ { - "name": "blockscout", - "url": "https://gcscan.io", - "standard": "none" - } + name: "blockscout", + url: "https://gcscan.io", + standard: "none", + }, ], "4918": [ { - "name": "Venidium EVM Testnet Explorer", - "url": "https://evm-testnet.venidiumexplorer.com", - "standard": "EIP3091" - } + name: "Venidium EVM Testnet Explorer", + url: "https://evm-testnet.venidiumexplorer.com", + standard: "EIP3091", + }, ], "4919": [ { - "name": "Venidium Explorer", - "url": "https://evm.venidiumexplorer.com", - "standard": "EIP3091" - } + name: "Venidium Explorer", + url: "https://evm.venidiumexplorer.com", + standard: "EIP3091", + }, ], "4999": [ { - "name": "blockscout", - "url": "https://explorer.blackfort.network", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.blackfort.network", + icon: "blockscout", + standard: "EIP3091", + }, ], "5000": [ { - "name": "Mantle Explorer", - "url": "https://explorer.mantle.xyz", - "standard": "EIP3091" - } + name: "Mantle Explorer", + url: "https://explorer.mantle.xyz", + standard: "EIP3091", + }, ], "5001": [ { - "name": "Mantle Testnet Explorer", - "url": "https://explorer.testnet.mantle.xyz", - "standard": "EIP3091" - } + 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" - } + name: "Treasurenet EVM BlockExplorer", + url: "https://evmexplorer.treasurenet.io", + icon: "treasurenet", + standard: "none", + }, ], "5003": [ { - "name": "blockscout", - "url": "https://explorer.sepolia.mantle.xyz", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ONIGIRI Explorer", + url: "https://subnets-test.avax.network/onigiri", + standard: "EIP3091", + }, ], "5040": [ { - "name": "ONIGIRI Explorer", - "url": "https://subnets.avax.network/onigiri", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://explorer.ham.fun", + icon: "blockscout", + standard: "EIP3091", + }, ], "5165": [ { - "name": "blockscout", - "url": "https://ftnscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://ftnscan.com", + standard: "none", + }, ], "5169": [ { - "name": "SLN Mainnet Explorer", - "url": "https://explorer.main.smartlayer.network", - "standard": "EIP3091" - } + name: "SLN Mainnet Explorer", + url: "https://explorer.main.smartlayer.network", + standard: "EIP3091", + }, ], "5177": [ { - "name": "TLChain Explorer", - "url": "https://explorer.tlchain.network", - "standard": "none" - } + name: "TLChain Explorer", + url: "https://explorer.tlchain.network", + standard: "none", + }, ], "5234": [ { - "name": "Subscan", - "url": "https://humanode.subscan.io", - "standard": "EIP3091", - "icon": "subscan" - } + 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" - } + 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" - } + 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" - } + name: "TRITANIUM Testnet Explorer", + icon: "tritanium", + url: "https://testnet.tritanium.network", + standard: "none", + }, ], "5372": [ { - "name": "Settlus Scan", - "url": "https://testnet.settlus.network", - "standard": "EIP3091" - } + name: "Settlus Scan", + url: "https://testnet.settlus.network", + standard: "EIP3091", + }, ], "5424": [ { - "name": "edexa-mainnet", - "url": "https://explorer.edexa.network", - "standard": "EIP3091" - } + name: "edexa-mainnet", + url: "https://explorer.edexa.network", + standard: "EIP3091", + }, ], "5439": [ { - "name": "egoscan", - "url": "https://egoscan.io", - "standard": "EIP3091" - } + name: "egoscan", + url: "https://egoscan.io", + standard: "EIP3091", + }, ], "5522": [ { - "name": "Vexascan-EVM-TestNet", - "url": "https://testnet.vexascan.com/evmexplorer", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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: "bscscan-opbnb-testnet", + url: "https://opbnb-testnet.bscscan.com", + standard: "EIP3091", }, { - "name": "opbnbscan", - "url": "https://opbnbscan.com", - "standard": "EIP3091" - } + name: "opbnbscan", + url: "https://opbnbscan.com", + standard: "EIP3091", + }, ], "5615": [ { - "name": "explorer-arcturus-testnet", - "url": "https://testnet.arcscan.net", - "standard": "EIP3091" - } + name: "explorer-arcturus-testnet", + url: "https://testnet.arcscan.net", + standard: "EIP3091", + }, ], "5656": [ { - "name": "QIE Explorer", - "url": "https://mainnet.qiblockchain.online", - "standard": "EIP3091" - } + name: "QIE Explorer", + url: "https://mainnet.qiblockchain.online", + standard: "EIP3091", + }, ], "5675": [ { - "name": "filenova testnet explorer", - "url": "https://scantest.filenova.org", - "icon": "filenova", - "standard": "none" - } + 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" - } + name: "BlockScout", + url: "https://3001-blockscout.a.dancebox.tanssi.network", + standard: "EIP3091", + }, ], "5700": [ { - "name": "Syscoin Testnet Block Explorer", - "url": "https://tanenbaum.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Tangle EVM Explorer", + url: "https://explorer.tangle.tools", + standard: "EIP3091", + icon: "tangle", + }, ], "5851": [ { - "name": "explorer", - "url": "https://explorer.ont.io/testnet", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.ont.io/testnet", + standard: "EIP3091", + }, ], "5869": [ { - "name": "wegoscan2", - "url": "https://scan2.wegochain.io", - "standard": "EIP3091" - } + name: "wegoscan2", + url: "https://scan2.wegochain.io", + standard: "EIP3091", + }, ], "6000": [ { - "name": "BBScan Testnet Explorer", - "url": "https://bbscan.io", - "standard": "none" - } + name: "BBScan Testnet Explorer", + url: "https://bbscan.io", + standard: "none", + }, ], "6001": [ { - "name": "BBScan Mainnet Explorer", - "url": "https://bbscan.io", - "standard": "none" - } + name: "BBScan Mainnet Explorer", + url: "https://bbscan.io", + standard: "none", + }, ], "6065": [ { - "name": "treslechesexplorer", - "url": "https://explorer-test.tresleches.finance", - "icon": "treslechesexplorer", - "standard": "EIP3091" - } + name: "treslechesexplorer", + url: "https://explorer-test.tresleches.finance", + icon: "treslechesexplorer", + standard: "EIP3091", + }, ], "6066": [ { - "name": "treslechesexplorer", - "url": "https://explorer.tresleches.finance", - "icon": "treslechesexplorer", - "standard": "EIP3091" - } + 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 EVM Explorer", + url: "https://explorer.cascadia.foundation", + standard: "none", + icon: "cascadia", }, { - "name": "Cascadia Cosmos Explorer", - "url": "https://validator.cascadia.foundation", - "standard": "none", - "icon": "cascadia" - } + name: "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" - } + name: "UPTN Testnet Explorer", + url: "https://testnet.explorer.uptn.io", + standard: "EIP3091", + }, ], "6119": [ { - "name": "UPTN Explorer", - "url": "https://explorer.uptn.io", - "standard": "EIP3091" - } + name: "UPTN Explorer", + url: "https://explorer.uptn.io", + standard: "EIP3091", + }, ], "6321": [ { - "name": "Aurascan Explorer", - "url": "https://euphoria.aurascan.io", - "standard": "none", - "icon": "aura" - } + name: "Aurascan Explorer", + url: "https://euphoria.aurascan.io", + standard: "none", + icon: "aura", + }, ], "6322": [ { - "name": "Aurascan Explorer", - "url": "https://aurascan.io", - "standard": "none", - "icon": "aura" - } + name: "Aurascan Explorer", + url: "https://aurascan.io", + standard: "none", + icon: "aura", + }, ], "6552": [ { - "name": "Scolscan Testnet Explorer", - "url": "https://testnet-explorer.scolcoin.com", - "standard": "EIP3091" - } + 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" - } + name: "FOX Testnet Explorer", + icon: "fox", + url: "https://testnet.foxscan.app", + standard: "none", + }, ], "6626": [ { - "name": "blockscout", - "url": "https://scan.chain.pixie.xyz", - "standard": "none" - } + name: "blockscout", + url: "https://scan.chain.pixie.xyz", + standard: "none", + }, ], "6660": [ { - "name": "Latest Chain", - "url": "http://testnet.latestchain.io", - "standard": "EIP3091" - } + name: "Latest Chain", + url: "http://testnet.latestchain.io", + standard: "EIP3091", + }, ], "6661": [ { - "name": "Cybria Explorer", - "url": "https://cybascan.io", - "icon": "cybascan", - "standard": "EIP3091" - } + name: "Cybria Explorer", + url: "https://cybascan.io", + icon: "cybascan", + standard: "EIP3091", + }, ], "6666": [ { - "name": "Cybria Explorer", - "url": "https://explorer.cybascan.io", - "icon": "cybascan", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "PAXB Explorer", + url: "https://scan.paxb.io", + icon: "paxb", + standard: "EIP3091", + }, ], "6779": [ { - "name": "cpvscan", - "url": "https://scan.compverse.io", - "standard": "EIP3091" - } + name: "cpvscan", + url: "https://scan.compverse.io", + standard: "EIP3091", + }, ], "6789": [ { - "name": "Gold Smart Chain", - "url": "https://mainnet.goldsmartchain.com", - "standard": "EIP3091" - } + name: "Gold Smart Chain", + url: "https://mainnet.goldsmartchain.com", + standard: "EIP3091", + }, ], "6868": [ { - "name": "poolsscan", - "url": "https://scan.poolsmobility.com", - "icon": "POOLS", - "standard": "EIP3091" - } + name: "poolsscan", + url: "https://scan.poolsmobility.com", + icon: "POOLS", + standard: "EIP3091", + }, ], "6969": [ { - "name": "tombscout", - "url": "https://tombscout.com", - "standard": "none" - } + name: "tombscout", + url: "https://tombscout.com", + standard: "none", + }, ], "7000": [ { - "name": "ZetaChain Mainnet Explorer", - "url": "https://explorer.zetachain.com", - "standard": "none" - } + 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: "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" - } + name: "blockscout", + url: "https://zetachain-athens-3.blockscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "7007": [ { - "name": "blockscout", - "url": "https://bstscan.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://bstscan.com", + standard: "EIP3091", + }, ], "7027": [ { - "name": "Ella", - "url": "https://ella.network", - "standard": "EIP3091" - } + name: "Ella", + url: "https://ella.network", + standard: "EIP3091", + }, ], "7070": [ { - "name": "Planq EVM Explorer (Blockscout)", - "url": "https://evm.planq.network", - "standard": "none" + name: "Planq EVM Explorer (Blockscout)", + url: "https://evm.planq.network", + standard: "none", }, { - "name": "Planq Cosmos Explorer (BigDipper)", - "url": "https://explorer.planq.network", - "standard": "none" - } + name: "Planq Cosmos Explorer (BigDipper)", + url: "https://explorer.planq.network", + standard: "none", + }, ], "7100": [ { - "name": "numeexplorer", - "url": "https://explorer.numecrypto.com", - "icon": "nume", - "standard": "none" - } + name: "numeexplorer", + url: "https://explorer.numecrypto.com", + icon: "nume", + standard: "none", + }, ], "7171": [ { - "name": "Bitrock Explorer", - "url": "https://explorer.bit-rock.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Shyft BX", + url: "https://bx.shyft.network", + standard: "EIP3091", + }, ], "7484": [ { - "name": "raba", - "url": "https://x.raba.app/explorer", - "standard": "none" - } + name: "raba", + url: "https://x.raba.app/explorer", + standard: "none", + }, ], "7518": [ { - "name": "MEVerse Chain Explorer", - "url": "https://www.meversescan.io", - "standard": "none", - "icon": "meverse" - } + name: "MEVerse Chain Explorer", + url: "https://www.meversescan.io", + standard: "none", + icon: "meverse", + }, ], "7560": [ { - "name": "Cyber Mainnet Explorer", - "url": "https://cyberscan.co", - "standard": "EIP3091" - } + name: "Cyber Mainnet Explorer", + url: "https://cyberscan.co", + standard: "EIP3091", + }, ], "7575": [ { - "name": "ADIL Testnet Explorer", - "url": "https://testnet.adilchain-scan.io", - "standard": "EIP3091" - } + name: "ADIL Testnet Explorer", + url: "https://testnet.adilchain-scan.io", + standard: "EIP3091", + }, ], "7576": [ { - "name": "ADIL Mainnet Explorer", - "url": "https://adilchain-scan.io", - "standard": "EIP3091" - } + name: "ADIL Mainnet Explorer", + url: "https://adilchain-scan.io", + standard: "EIP3091", + }, ], "7668": [ { - "name": "rootnet", - "url": "https://explorer.rootnet.live", - "standard": "EIP3091" - } + name: "rootnet", + url: "https://explorer.rootnet.live", + standard: "EIP3091", + }, ], "7672": [ { - "name": "rootnet", - "url": "https://explorer.rootnet.cloud", - "standard": "EIP3091" - } + name: "rootnet", + url: "https://explorer.rootnet.cloud", + standard: "EIP3091", + }, ], "7700": [ { - "name": "Canto Explorer (OKLink)", - "url": "https://www.oklink.com/canto", - "standard": "EIP3091" + name: "Canto Explorer (OKLink)", + url: "https://www.oklink.com/canto", + standard: "EIP3091", }, { - "name": "Canto EVM Explorer (Blockscout)", - "url": "https://tuber.build", - "standard": "EIP3091" + name: "Canto EVM Explorer (Blockscout)", + url: "https://tuber.build", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://canto.dex.guru", - "icon": "dexguru", - "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: "Canto Testnet EVM Explorer (Blockscout)", + url: "https://testnet.tuber.build", + standard: "none", }, { - "name": "dexguru", - "url": "https://canto-test.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + 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" - } + name: "Bitrock Testnet Explorer", + url: "https://testnetscan.bit-rock.io", + standard: "EIP3091", + }, ], "7775": [ { - "name": "GDCC", - "url": "https://testnet.gdccscan.io", - "standard": "none" - } + name: "GDCC", + url: "https://testnet.gdccscan.io", + standard: "none", + }, ], "7777": [ { - "name": "avascan", - "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - "standard": "none" - } + name: "avascan", + url: "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", + standard: "none", + }, ], "7778": [ { - "name": "ORE Mainnet Explorer", - "icon": "ore", - "url": "https://oreniumscan.org", - "standard": "none" - } + 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" - } + 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" - } + name: "maalscan testnet", + url: "https://testnet.maalscan.io", + standard: "EIP3091", + }, ], "7878": [ { - "name": "Hazlor Testnet Explorer", - "url": "https://explorer.hazlor.com", - "standard": "none" - } + name: "Hazlor Testnet Explorer", + url: "https://explorer.hazlor.com", + standard: "none", + }, ], "7887": [ { - "name": "Kinto Explorer", - "url": "https://explorer.kinto.xyz", - "icon": "kinto", - "standard": "EIP3091" - } + 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" - } + name: "ARDENIUM Athena Explorer", + icon: "ard", + url: "https://testnet.ardscan.com", + standard: "none", + }, ], "7923": [ { - "name": "blockscout", - "url": "https://explorer.dotblox.io", - "standard": "none" - } + name: "blockscout", + url: "https://explorer.dotblox.io", + standard: "none", + }, ], "7924": [ { - "name": "MO Explorer", - "url": "https://moscan.app", - "standard": "none" - } + name: "MO Explorer", + url: "https://moscan.app", + standard: "none", + }, ], "7979": [ { - "name": "DOScan", - "url": "https://doscan.io", - "icon": "doschain", - "standard": "EIP3091" - } + 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 EVM Explorer (Blockscout)", + url: "https://evm-explorer.teleport.network", + standard: "none", + icon: "teleport", }, { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.teleport.network", - "standard": "none", - "icon": "teleport" - } + name: "Teleport 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 EVM Explorer (Blockscout)", + url: "https://evm-explorer.testnet.teleport.network", + standard: "none", + icon: "teleport", }, { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.testnet.teleport.network", - "standard": "none", - "icon": "teleport" - } + name: "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" - } + 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" - } + name: "Karak Sepolia Explorer", + url: "https://explorer.sepolia.karak.network", + standard: "EIP3091", + }, ], "8080": [ { - "name": "Shardeum Scan", - "url": "https://explorer-liberty10.shardeum.org", - "standard": "EIP3091" - } + name: "Shardeum Scan", + url: "https://explorer-liberty10.shardeum.org", + standard: "EIP3091", + }, ], "8081": [ { - "name": "Shardeum Scan", - "url": "https://explorer-liberty20.shardeum.org", - "standard": "EIP3091" - } + name: "Shardeum Scan", + url: "https://explorer-liberty20.shardeum.org", + standard: "EIP3091", + }, ], "8082": [ { - "name": "Shardeum Scan", - "url": "https://explorer-sphinx.shardeum.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Testnet BeOne Chain", + url: "https://testnet.beonescan.com", + icon: "beonechain", + standard: "none", + }, ], "8192": [ { - "name": "blockscout", - "url": "https://toruscan.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://toruscan.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "8194": [ { - "name": "blockscout", - "url": "https://testnet.toruscan.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.toruscan.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "8217": [ { - "name": "Klaytnscope", - "url": "https://scope.klaytn.com", - "standard": "EIP3091" + name: "Klaytnscope", + url: "https://scope.klaytn.com", + standard: "EIP3091", }, { - "name": "Klaytnfinder", - "url": "https://klaytnfinder.io", - "standard": "EIP3091" - } + name: "Klaytnfinder", + url: "https://klaytnfinder.io", + standard: "EIP3091", + }, ], "8227": [ { - "name": "SPACE Explorer", - "url": "https://subnets.avax.network/space", - "standard": "EIP3091" - } + name: "SPACE Explorer", + url: "https://subnets.avax.network/space", + standard: "EIP3091", + }, ], "8272": [ { - "name": "Blockton Explorer", - "url": "https://blocktonscan.com", - "standard": "none" - } + name: "Blockton Explorer", + url: "https://blocktonscan.com", + standard: "none", + }, ], "8329": [ { - "name": "Lorenzo Explorer", - "url": "https://scan.lorenzo-protocol.xyz", - "standard": "none", - "icon": "lorenzo" - } + name: "Lorenzo Explorer", + url: "https://scan.lorenzo-protocol.xyz", + standard: "none", + icon: "lorenzo", + }, ], "8453": [ { - "name": "basescan", - "url": "https://basescan.org", - "standard": "none" + name: "basescan", + url: "https://basescan.org", + standard: "none", }, { - "name": "basescout", - "url": "https://base.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "basescout", + url: "https://base.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://base.dex.guru", - "icon": "dexguru", - "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" - } + 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" - } + name: "OLO Block Explorer", + url: "https://www.olo.network", + standard: "EIP3091", + }, ], "8726": [ { - "name": "Storscan", - "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", - "standard": "none" - } + 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" - } + name: "Storscan", + url: "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", + standard: "none", + }, ], "8738": [ { - "name": "alphscan", - "url": "https://explorer.alph.network", - "standard": "EIP3091" - } + name: "alphscan", + url: "https://explorer.alph.network", + standard: "EIP3091", + }, ], "8822": [ { - "name": "explorer", - "url": "https://explorer.evm.iota.org", - "icon": "iotaevm", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "MARO Scan", + url: "https://scan.ma.ro/#", + standard: "none", + }, ], "8866": [ { - "name": "Lumio explorer", - "url": "https://explorer.lumio.io", - "standard": "none" - } + name: "Lumio explorer", + url: "https://explorer.lumio.io", + standard: "none", + }, ], "8880": [ { - "name": "Unique Scan", - "url": "https://uniquescan.io/unique", - "standard": "none" - } + name: "Unique Scan", + url: "https://uniquescan.io/unique", + standard: "none", + }, ], "8881": [ { - "name": "Unique Scan / Quartz", - "url": "https://uniquescan.io/quartz", - "standard": "none" - } + name: "Unique Scan / Quartz", + url: "https://uniquescan.io/quartz", + standard: "none", + }, ], "8882": [ { - "name": "Unique Scan / Opal", - "url": "https://uniquescan.io/opal", - "standard": "none" - } + name: "Unique Scan / Opal", + url: "https://uniquescan.io/opal", + standard: "none", + }, ], "8883": [ { - "name": "Unique Scan / Sapphire", - "url": "https://uniquescan.io/sapphire", - "standard": "none" - } + name: "Unique Scan / Sapphire", + url: "https://uniquescan.io/sapphire", + standard: "none", + }, ], "8888": [ { - "name": "XANAChain", - "url": "https://xanachain.xana.net", - "standard": "EIP3091" - } + name: "XANAChain", + url: "https://xanachain.xana.net", + standard: "EIP3091", + }, ], "8890": [ { - "name": "ORE Testnet Explorer", - "icon": "ore", - "url": "https://testnet.oreniumscan.org", - "standard": "none" - } + name: "ORE Testnet Explorer", + icon: "ore", + url: "https://testnet.oreniumscan.org", + standard: "none", + }, ], "8898": [ { - "name": "mmtscan", - "url": "https://mmtscan.io", - "standard": "EIP3091", - "icon": "mmt" - } + name: "mmtscan", + url: "https://mmtscan.io", + standard: "EIP3091", + icon: "mmt", + }, ], "8899": [ { - "name": "JIBCHAIN Explorer", - "url": "https://exp-l1.jibchain.net", - "standard": "EIP3091" - } + name: "JIBCHAIN Explorer", + url: "https://exp-l1.jibchain.net", + standard: "EIP3091", + }, ], "8911": [ { - "name": "algscan", - "url": "https://scan.algen.network", - "icon": "alg", - "standard": "EIP3091" - } + name: "algscan", + url: "https://scan.algen.network", + icon: "alg", + standard: "EIP3091", + }, ], "8912": [ { - "name": "algscan", - "url": "https://scan.test.algen.network", - "icon": "alg", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Shidoblock Mainnet Explorer", + url: "https://shidoscan.com", + standard: "none", + icon: "shidoChain", + }, ], "9012": [ { - "name": "berylbit-explorer", - "url": "https://explorer.berylbit.io", - "standard": "EIP3091" - } + name: "berylbit-explorer", + url: "https://explorer.berylbit.io", + standard: "EIP3091", + }, ], "9024": [ { - "name": "Nexablock Testnet Explorer", - "url": "https://testnet.nexablockscan.io", - "standard": "none", - "icon": "nexaChain" - } + 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" - } + name: "Nexablock Mainnet Explorer", + url: "https://nexablockscan.io", + standard: "none", + icon: "nexaChain", + }, ], "9223": [ { - "name": "Codefin Net Explorer", - "url": "https://explorer.codefin.pro", - "standard": "EIP3091" - } + name: "Codefin Net Explorer", + url: "https://explorer.codefin.pro", + standard: "EIP3091", + }, ], "9339": [ { - "name": "Dogcoin", - "url": "https://testnet.dogcoin.network", - "standard": "EIP3091" - } + name: "Dogcoin", + url: "https://testnet.dogcoin.network", + standard: "EIP3091", + }, ], "9393": [ { - "name": "basescout", - "url": "https://sepolia-delascan.deperp.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "basescout", + url: "https://sepolia-delascan.deperp.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "9395": [ { - "name": "Evoke SmartChain Explorer", - "url": "https://explorer.evokescan.org", - "standard": "EIP3091" - } + name: "Evoke SmartChain Explorer", + url: "https://explorer.evokescan.org", + standard: "EIP3091", + }, ], "9527": [ { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } + name: "rangersscan-robin", + url: "https://robin-rangersscan.rangersprotocol.com", + standard: "none", + }, ], "9528": [ { - "name": "QEasyWeb3 Explorer", - "url": "https://www.qeasyweb3.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Boba BNB Testnet block explorer", + url: "https://testnet.bobascan.com", + standard: "none", + }, ], "9768": [ { - "name": "MainnetZ", - "url": "https://testnet.mainnetz.io", - "standard": "EIP3091" - } + name: "MainnetZ", + url: "https://testnet.mainnetz.io", + standard: "EIP3091", + }, ], "9779": [ { - "name": "Pepe Explorer", - "url": "https://explorer.pepenetwork.io", - "icon": "pepenetwork", - "standard": "none" - } + name: "Pepe Explorer", + url: "https://explorer.pepenetwork.io", + icon: "pepenetwork", + standard: "none", + }, ], "9789": [ { - "name": "Tabi Testnet Explorer", - "url": "https://testnet.tabiscan.com", - "standard": "none" - } + name: "Tabi Testnet Explorer", + url: "https://testnet.tabiscan.com", + standard: "none", + }, ], "9797": [ { - "name": "OptimusZ7 Mainnet Explorer", - "url": "https://explorer.optimusz7.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "IMPERIUM Explorer", + icon: "imp", + url: "https://impscan.com", + standard: "none", + }, ], "9888": [ { - "name": "Dogelayer mainnet explorer", - "url": "https://dl-explorer.dogelayer.org", - "standard": "EIP3091" - } + name: "Dogelayer mainnet explorer", + url: "https://dl-explorer.dogelayer.org", + standard: "EIP3091", + }, ], "9898": [ { - "name": "Larissa Scan", - "url": "https://scan.larissa.network", - "standard": "EIP3091" - } + name: "Larissa Scan", + url: "https://scan.larissa.network", + standard: "EIP3091", + }, ], "9911": [ { - "name": "escscan", - "url": "https://escscan.com", - "icon": "espento", - "standard": "EIP3091" - } + name: "escscan", + url: "https://escscan.com", + icon: "espento", + standard: "EIP3091", + }, ], "9977": [ { - "name": "Mind Chain explorer", - "url": "https://testnet.mindscan.info", - "standard": "EIP3091" - } + name: "Mind Chain explorer", + url: "https://testnet.mindscan.info", + standard: "EIP3091", + }, ], "9980": [ { - "name": "combotrace explorer", - "url": "https://combotrace.nodereal.io", - "standard": "EIP3091" - } + name: "combotrace explorer", + url: "https://combotrace.nodereal.io", + standard: "EIP3091", + }, ], "9981": [ { - "name": "Volley Mainnet Explorer", - "url": "https://volleyscan.io", - "standard": "EIP3091" - } + 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: "Polkadot.js", + url: "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", + standard: "none", }, { - "name": "Subscan", - "url": "https://agung.subscan.io", - "standard": "none" - } + name: "Subscan", + url: "https://agung.subscan.io", + standard: "none", + }, ], "9996": [ { - "name": "Mind Chain explorer", - "url": "https://mainnet.mindscan.info", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://testnet-rollup-explorer.altlayer.io", + icon: "blockscout", + standard: "EIP3091", + }, ], "10024": [ { - "name": "Gon Explorer", - "url": "https://gonscan.com", - "standard": "none" - } + name: "Gon Explorer", + url: "https://gonscan.com", + standard: "none", + }, ], "10081": [ { - "name": "Testnet Block Explorer", - "url": "https://explorer.testnet.japanopenchain.org", - "standard": "EIP3091" - } + 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-chiadochain", + url: "https://blockscout.chiadochain.net", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://gnosis-chiado.blockscout.com", - "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" - } + name: "MaxxChain Block Explorer", + url: "https://explorer.maxxchain.org", + standard: "EIP3091", + }, ], "10222": [ { - "name": "GLScan Explorer", - "url": "https://glscan.io", - "standard": "none", - "icon": "glc" - } + name: "GLScan Explorer", + url: "https://glscan.io", + standard: "none", + icon: "glc", + }, ], "10242": [ { - "name": "blockscout", - "url": "https://explorer.arthera.net", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.arthera.net", + icon: "blockscout", + standard: "EIP3091", + }, ], "10243": [ { - "name": "blockscout", - "url": "https://explorer-test.arthera.net", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer-test.arthera.net", + icon: "blockscout", + standard: "EIP3091", + }, ], "10248": [ { - "name": "0xtrade Scan", - "url": "https://www.0xtscan.com", - "standard": "none" - } + name: "0xtrade Scan", + url: "https://www.0xtscan.com", + standard: "none", + }, ], "10321": [ { - "name": "TAO Mainnet Explorer", - "url": "https://taoscan.org", - "standard": "EIP3091" - } + name: "TAO Mainnet Explorer", + url: "https://taoscan.org", + standard: "EIP3091", + }, ], "10324": [ { - "name": "TAO Testnet Explorer", - "url": "https://testnet.taoscan.org", - "standard": "EIP3091" - } + name: "TAO Testnet Explorer", + url: "https://testnet.taoscan.org", + standard: "EIP3091", + }, ], "10395": [ { - "name": "Worldland Explorer", - "url": "https://testscan.worldland.foundation", - "standard": "EIP3091" - } + name: "Worldland Explorer", + url: "https://testscan.worldland.foundation", + standard: "EIP3091", + }, ], "10507": [ { - "name": "ethernal", - "url": "https://mainnet.num.network", - "standard": "EIP3091" - } + name: "ethernal", + url: "https://mainnet.num.network", + standard: "EIP3091", + }, ], "10508": [ { - "name": "ethernal", - "url": "https://testnet.num.network", - "standard": "EIP3091" - } + name: "ethernal", + url: "https://testnet.num.network", + standard: "EIP3091", + }, ], "10823": [ { - "name": "CCP Explorer", - "url": "https://cryptocoinpay.info", - "standard": "EIP3091" - } + name: "CCP Explorer", + url: "https://cryptocoinpay.info", + standard: "EIP3091", + }, ], "10849": [ { - "name": "Lamina1 Explorer", - "url": "https://subnets.avax.network/lamina1", - "standard": "EIP3091" - } + name: "Lamina1 Explorer", + url: "https://subnets.avax.network/lamina1", + standard: "EIP3091", + }, ], "10850": [ { - "name": "Lamina1 Identity Explorer", - "url": "https://subnets.avax.network/lamina1id", - "standard": "EIP3091" - } + name: "Lamina1 Identity Explorer", + url: "https://subnets.avax.network/lamina1id", + standard: "EIP3091", + }, ], "10946": [ { - "name": "explorer", - "url": "https://explorer.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.quadrans.io", + icon: "quadrans", + standard: "EIP3091", + }, ], "10947": [ { - "name": "explorer", - "url": "https://explorer.testnet.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - } + 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 EVM Explorer (Blockscout)", + url: "https://explorer.astranaut.io", + standard: "none", + icon: "astra", }, { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.io/astra", - "standard": "none", - "icon": "astra" - } + name: "Astra 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" - } + 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 EVM Explorer", + url: "https://explorer.astranaut.dev", + standard: "EIP3091", + icon: "astra", }, { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.dev/astra", - "standard": "none", - "icon": "astra" - } + name: "Astra PingPub Explorer", + url: "https://ping.astranaut.dev/astra", + standard: "none", + icon: "astra", + }, ], "11119": [ { - "name": "hashbitscan", - "url": "https://explorer.hashbit.org", - "standard": "EIP3091" - } + name: "hashbitscan", + url: "https://explorer.hashbit.org", + standard: "EIP3091", + }, ], "11221": [ { - "name": "shinescan", - "url": "https://shinescan.io", - "icon": "shine", - "standard": "none" - } + name: "shinescan", + url: "https://shinescan.io", + icon: "shine", + standard: "none", + }, ], "11227": [ { - "name": "JIRITSUTES Explorer", - "url": "https://subnets-test.avax.network/jiritsutes", - "standard": "EIP3091" - } + name: "JIRITSUTES Explorer", + url: "https://subnets-test.avax.network/jiritsutes", + standard: "EIP3091", + }, ], "11235": [ { - "name": "Mainnet HAQQ Explorer", - "url": "https://explorer.haqq.network", - "standard": "EIP3091" - } + name: "Mainnet HAQQ Explorer", + url: "https://explorer.haqq.network", + standard: "EIP3091", + }, ], "11437": [ { - "name": "Shyft Testnet BX", - "url": "https://bx.testnet.shyft.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "bevm testnet scan", + url: "https://scan-testnet.bevm.io", + standard: "none", + }, ], "11612": [ { - "name": "Sardis", - "url": "https://testnet.sardisnetwork.com", - "standard": "EIP3091" - } + name: "Sardis", + url: "https://testnet.sardisnetwork.com", + standard: "EIP3091", + }, ], "11891": [ { - "name": "Polygon Supernet Arianee Explorer", - "url": "https://polygonsupernet.explorer.arianee.net", - "standard": "EIP3091" - } + name: "Polygon Supernet Arianee Explorer", + url: "https://polygonsupernet.explorer.arianee.net", + standard: "EIP3091", + }, ], "12009": [ { - "name": "SatoshiChain Explorer", - "url": "https://satoshiscan.io", - "standard": "EIP3091" - } + name: "SatoshiChain Explorer", + url: "https://satoshiscan.io", + standard: "EIP3091", + }, ], "12020": [ { - "name": "blockscout", - "url": "https://explorer.aternoschain.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.aternoschain.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "12051": [ { - "name": "zeroscan", - "url": "https://betaenv.singularity.gold:18002", - "standard": "EIP3091" - } + name: "zeroscan", + url: "https://betaenv.singularity.gold:18002", + standard: "EIP3091", + }, ], "12052": [ { - "name": "zeroscan", - "url": "https://zeroscan.singularity.gold", - "standard": "EIP3091" - } + name: "zeroscan", + url: "https://zeroscan.singularity.gold", + standard: "EIP3091", + }, ], "12123": [ { - "name": "BRC Chain Explorer", - "url": "https://scan.brcchain.io", - "standard": "EIP3091" - } + name: "BRC Chain Explorer", + url: "https://scan.brcchain.io", + standard: "EIP3091", + }, ], "12306": [ { - "name": "fiboscan", - "url": "https://scan.fibochain.org", - "standard": "EIP3091" - } + name: "fiboscan", + url: "https://scan.fibochain.org", + standard: "EIP3091", + }, ], "12324": [ { - "name": "L3X Mainnet Explorer", - "url": "https://explorer.l3x.com", - "standard": "EIP3091" - } + name: "L3X Mainnet Explorer", + url: "https://explorer.l3x.com", + standard: "EIP3091", + }, ], "12325": [ { - "name": "L3X Testnet Explorer", - "url": "https://explorer-testnet.l3x.com", - "standard": "EIP3091" - } + name: "L3X Testnet Explorer", + url: "https://explorer-testnet.l3x.com", + standard: "EIP3091", + }, ], "12345": [ { - "name": "StepScan", - "url": "https://testnet.stepscan.io", - "icon": "step", - "standard": "EIP3091" - } + name: "StepScan", + url: "https://testnet.stepscan.io", + icon: "step", + standard: "EIP3091", + }, ], "12553": [ { - "name": "RSS3 VSL Scan", - "url": "https://scan.rss3.io", - "standard": "EIP3091" - } + name: "RSS3 VSL Scan", + url: "https://scan.rss3.io", + standard: "EIP3091", + }, ], "12715": [ { - "name": "Rikeza Blockchain explorer", - "url": "https://testnet.rikscan.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Avalanche Subnet Explorer", + url: "https://subnets-test.avax.network/letsplayfair", + standard: "EIP3091", + }, ], "13000": [ { - "name": "SPS Explorer", - "url": "http://spsscan.ssquad.games", - "standard": "EIP3091" - } + name: "SPS Explorer", + url: "http://spsscan.ssquad.games", + standard: "EIP3091", + }, ], "13308": [ { - "name": "Creditscan", - "url": "https://scan.creditsmartchain.com", - "icon": "credit", - "standard": "EIP3091" - } + name: "Creditscan", + url: "https://scan.creditsmartchain.com", + icon: "credit", + standard: "EIP3091", + }, ], "13337": [ { - "name": "Beam Explorer", - "url": "https://subnets-test.avax.network/beam", - "standard": "EIP3091" - } + 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" - } + name: "Immutable explorer", + url: "https://explorer.immutable.com", + standard: "EIP3091", + icon: "immutable", + }, ], "13381": [ { - "name": "phoenixplorer", - "url": "https://phoenixplorer.com", - "standard": "EIP3091" - } + name: "phoenixplorer", + url: "https://phoenixplorer.com", + standard: "EIP3091", + }, ], "13396": [ { - "name": "Masa Explorer", - "url": "https://subnets.avax.network/masa", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "qbitscan", + url: "https://explorer.qbitscan.com", + icon: "kronobit", + standard: "EIP3091", + }, ], "13812": [ { - "name": "Susono", - "url": "http://explorer.opn.network", - "standard": "none" - } + name: "Susono", + url: "http://explorer.opn.network", + standard: "none", + }, ], "14000": [ { - "name": "SPS Test Explorer", - "url": "https://explorer.3sps.net", - "standard": "EIP3091" - } + name: "SPS Test Explorer", + url: "https://explorer.3sps.net", + standard: "EIP3091", + }, ], "14324": [ { - "name": "Evolve Testnet Explorer", - "url": "https://testnet.evolveblockchain.io", - "standard": "EIP3091" - } + 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" - } + name: "Vitruveo Testnet Explorer", + url: "https://test-explorer.vitruveo.xyz", + icon: "vitruveo", + standard: "EIP3091", + }, ], "14801": [ { - "name": "satoriscan", - "url": "https://satori.vanascan.io", - "standard": "EIP3091" - } + name: "satoriscan", + url: "https://satori.vanascan.io", + standard: "EIP3091", + }, ], "15003": [ { - "name": "Immutable Devnet explorer", - "url": "https://explorer.dev.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } + 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" - } + name: "Poodl Testnet Explorer", + url: "https://testnet.poodl.org", + standard: "EIP3091", + }, ], "15259": [ { - "name": "Poodl Mainnet Explorer", - "url": "https://explorer.poodl.org", - "standard": "EIP3091" - } + name: "Poodl Mainnet Explorer", + url: "https://explorer.poodl.org", + standard: "EIP3091", + }, ], "15551": [ { - "name": "loopscan", - "url": "http://explorer.mainnetloop.com", - "standard": "none" - } + name: "loopscan", + url: "http://explorer.mainnetloop.com", + standard: "none", + }, ], "15555": [ { - "name": "Trust EVM Explorer", - "url": "https://trustscan.one", - "standard": "EIP3091" - } + name: "Trust EVM Explorer", + url: "https://trustscan.one", + standard: "EIP3091", + }, ], "15557": [ { - "name": "EOS EVM Explorer", - "url": "https://explorer.testnet.evm.eosnetwork.com", - "standard": "EIP3091" - } + 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" - } + name: "DeFiVerse Explorer", + url: "https://scan.defi-verse.org", + icon: "defiverse", + standard: "EIP3091", + }, ], "16507": [ { - "name": "GchainExplorer", - "url": "https://gchainexplorer.genesys.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "AirDAO Network Explorer", + url: "https://airdao.io/explorer", + standard: "none", + }, ], "16888": [ { - "name": "ivarscan", - "url": "https://testnet.ivarscan.com", - "standard": "EIP3091" - } + name: "ivarscan", + url: "https://testnet.ivarscan.com", + standard: "EIP3091", + }, ], "17000": [ { - "name": "Holesky Explorer", - "url": "https://holesky.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" + 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: "otterscan-holesky", + url: "https://holesky.otterscan.io", + icon: "ethereum", + standard: "EIP3091", }, { - "name": "Holesky Etherscan", - "url": "https://holesky.etherscan.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" - } + 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" - } + 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" - } + name: "G8Chain", + url: "https://mainnet.oneg8.network", + standard: "EIP3091", + }, ], "17172": [ { - "name": "ECLIPSE Explorer", - "url": "https://subnets-test.avax.network/eclipse", - "standard": "EIP3091" - } + name: "ECLIPSE Explorer", + url: "https://subnets-test.avax.network/eclipse", + standard: "EIP3091", + }, ], "17180": [ { - "name": "Palettescan", - "url": "https://testnet.palettescan.com", - "icon": "PLT", - "standard": "none" - } + name: "Palettescan", + url: "https://testnet.palettescan.com", + icon: "PLT", + standard: "none", + }, ], "17217": [ { - "name": "konet-explorer", - "url": "https://explorer.kon-wallet.com", - "standard": "EIP3091" - } + name: "konet-explorer", + url: "https://explorer.kon-wallet.com", + standard: "EIP3091", + }, ], "17777": [ { - "name": "EOS EVM Explorer", - "url": "https://explorer.evm.eosnetwork.com", - "standard": "EIP3091" - } + name: "EOS EVM Explorer", + url: "https://explorer.evm.eosnetwork.com", + standard: "EIP3091", + }, ], "18000": [ { - "name": "Game Network", - "url": "https://explorer.fod.games", - "standard": "EIP3091" - } + name: "Game Network", + url: "https://explorer.fod.games", + standard: "EIP3091", + }, ], "18122": [ { - "name": "stnscan", - "url": "https://stnscan.com", - "icon": "stn", - "standard": "none" - } + name: "stnscan", + url: "https://stnscan.com", + icon: "stn", + standard: "none", + }, ], "18159": [ { - "name": "explorer-proofofmemes", - "url": "https://memescan.io", - "standard": "EIP3091" - } + name: "explorer-proofofmemes", + url: "https://memescan.io", + standard: "EIP3091", + }, ], "18181": [ { - "name": "G8Chain", - "url": "https://testnet.oneg8.network", - "standard": "EIP3091" - } + name: "G8Chain", + url: "https://testnet.oneg8.network", + standard: "EIP3091", + }, ], "18233": [ { - "name": "blockscout", - "url": "https://unreal.blockscout.com", - "icon": "unreal", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://unreal.blockscout.com", + icon: "unreal", + standard: "EIP3091", + }, ], "18686": [ { - "name": "MXC zkEVM Moonchain", - "url": "https://explorer.moonchain.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "HOME Verse Explorer", + url: "https://explorer.oasys.homeverse.games", + standard: "EIP3091", + }, ], "19224": [ { - "name": "Decentraconnect Social", - "url": "https://decentraconnect.io", - "standard": "EIP3091" - } + name: "Decentraconnect Social", + url: "https://decentraconnect.io", + standard: "EIP3091", + }, ], "19600": [ { - "name": "LBRY Block Explorer", - "url": "https://explorer.lbry.com", - "icon": "lbry", - "standard": "none" - } + name: "LBRY Block Explorer", + url: "https://explorer.lbry.com", + icon: "lbry", + standard: "none", + }, ], "19845": [ { - "name": "BTCIXScan", - "url": "https://btcixscan.com", - "standard": "none" - } + name: "BTCIXScan", + url: "https://btcixscan.com", + standard: "none", + }, ], "20001": [ { - "name": "CamelarkScan", - "url": "https://scan.camelark.com", - "standard": "EIP3091" - } + name: "CamelarkScan", + url: "https://scan.camelark.com", + standard: "EIP3091", + }, ], "20041": [ { - "name": "NizaScan", - "url": "https://nizascan.io", - "standard": "EIP3091" - } + name: "NizaScan", + url: "https://nizascan.io", + standard: "EIP3091", + }, ], "20073": [ { - "name": "NizaScan", - "url": "https://testnet.nizascan.io", - "standard": "EIP3091" - } + name: "NizaScan", + url: "https://testnet.nizascan.io", + standard: "EIP3091", + }, ], "20736": [ { - "name": "P12 Chain Explorer", - "url": "https://explorer.p12.games", - "standard": "EIP3091" - } + name: "P12 Chain Explorer", + url: "https://explorer.p12.games", + standard: "EIP3091", + }, ], "20765": [ { - "name": "JONO11 Explorer", - "url": "https://subnets-test.avax.network/jono11", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "AAH Blockscout", + url: "https://exp.c4ex.net", + icon: "aah", + standard: "EIP3091", + }, ], "21223": [ { - "name": "DCpay Mainnet Explorer", - "url": "https://mainnet.dcpay.io", - "standard": "EIP3091" - } + name: "DCpay Mainnet Explorer", + url: "https://mainnet.dcpay.io", + standard: "EIP3091", + }, ], "21224": [ { - "name": "DCpay Testnet Explorer", - "url": "https://testnet.dcpay.io", - "standard": "EIP3091" - } + name: "DCpay Testnet Explorer", + url: "https://testnet.dcpay.io", + standard: "EIP3091", + }, ], "21337": [ { - "name": "UNcover", - "url": "https://uncoverexplorer.com", - "standard": "none" - } + name: "UNcover", + url: "https://uncoverexplorer.com", + standard: "none", + }, ], "21816": [ { - "name": "omChain Explorer", - "url": "https://explorer.omchain.io", - "standard": "EIP3091" - } + name: "omChain Explorer", + url: "https://explorer.omchain.io", + standard: "EIP3091", + }, ], "21912": [ { - "name": "BSL Mainnet Explorer", - "url": "https://scan.nftruth.io", - "standard": "EIP3091" - } + 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 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" - } + 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" - } + name: "AirDAO Network Explorer", + url: "https://testnet.airdao.io/explorer", + standard: "none", + }, ], "22222": [ { - "name": "Nautscan", - "url": "https://nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" - } + name: "Nautscan", + url: "https://nautscan.com", + standard: "EIP3091", + icon: "nautilus", + }, ], "22324": [ { - "name": "GoldXChain Testnet Explorer", - "url": "https://testnet-explorer.goldxchain.io", - "standard": "EIP3091" - } + name: "GoldXChain Testnet Explorer", + url: "https://testnet-explorer.goldxchain.io", + standard: "EIP3091", + }, ], "22776": [ { - "name": "maposcan", - "url": "https://maposcan.io", - "standard": "EIP3091" - } + name: "maposcan", + url: "https://maposcan.io", + standard: "EIP3091", + }, ], "23006": [ { - "name": "Antofy Testnet", - "url": "https://test.antofyscan.com", - "standard": "EIP3091" - } + name: "Antofy Testnet", + url: "https://test.antofyscan.com", + standard: "EIP3091", + }, ], "23118": [ { - "name": "opsideInfo", - "url": "https://opside.info", - "standard": "EIP3091" - } + name: "opsideInfo", + url: "https://opside.info", + standard: "EIP3091", + }, ], "23294": [ { - "name": "Oasis Sapphire Explorer", - "url": "https://explorer.oasis.io/mainnet/sapphire", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "drxscan", + url: "https://scan.dreyerx.com", + icon: "dreyerx", + standard: "EIP3091", + }, ], "23452": [ { - "name": "drxscan", - "url": "https://testnet-scan.dreyerx.com", - "icon": "dreyerx", - "standard": "EIP3091" - } + name: "drxscan", + url: "https://testnet-scan.dreyerx.com", + icon: "dreyerx", + standard: "EIP3091", + }, ], "23888": [ { - "name": "Blast Testnet", - "url": "http://testnet-explorer.blastblockchain.com", - "standard": "EIP3091" - } + name: "Blast Testnet", + url: "http://testnet-explorer.blastblockchain.com", + standard: "EIP3091", + }, ], "25186": [ { - "name": "LiquidLayer Mainnet Explorer", - "url": "https://scan.liquidlayer.network", - "standard": "EIP3091" - } + name: "LiquidLayer Mainnet Explorer", + url: "https://scan.liquidlayer.network", + standard: "EIP3091", + }, ], "25839": [ { - "name": "AlveyScan Testnet", - "url": "https://alveytestnet.com", - "icon": "alveychain", - "standard": "EIP3091" - } + name: "AlveyScan Testnet", + url: "https://alveytestnet.com", + icon: "alveychain", + standard: "EIP3091", + }, ], "25888": [ { - "name": "Hammer Chain Explorer", - "url": "https://www.hammerchain.io", - "standard": "none" - } + name: "Hammer Chain Explorer", + url: "https://www.hammerchain.io", + standard: "none", + }, ], "25925": [ { - "name": "bkcscan-testnet", - "url": "https://testnet.bkcscan.com", - "standard": "none", - "icon": "bkc" - } + 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" - } + 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" - } + name: "Hertz Scan", + url: "https://hertzscan.com", + icon: "hertz-network", + standard: "EIP3091", + }, ], "26863": [ { - "name": "OasisChain Explorer", - "url": "https://scan.oasischain.io", - "standard": "EIP3091" - } + name: "OasisChain Explorer", + url: "https://scan.oasischain.io", + standard: "EIP3091", + }, ], "27181": [ { - "name": "blockscout", - "url": "https://blockscout.klaosnova.laosfoundation.io", - "icon": "k-laos", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ZEROONEMAI Explorer", + url: "https://subnets.avax.network/zeroonemai", + standard: "EIP3091", + }, ], "28516": [ { - "name": "blockscout", - "url": "https://explorer-sepolia.vizing.com", - "icon": "vizing", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer-sepolia.vizing.com", + icon: "vizing", + standard: "EIP3091", + }, ], "28518": [ { - "name": "blockscout", - "url": "https://explorer.vizing.com", - "icon": "vizing", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.vizing.com", + icon: "vizing", + standard: "EIP3091", + }, ], "28528": [ { - "name": "blockscout", - "url": "https://blockscout.com/optimism/bedrock-alpha", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.com/optimism/bedrock-alpha", + standard: "EIP3091", + }, ], "28882": [ { - "name": "Bobascan", - "url": "https://testnet.bobascan.com", - "standard": "none" - } + name: "Bobascan", + url: "https://testnet.bobascan.com", + standard: "none", + }, ], "29112": [ { - "name": "blockscout", - "url": "https://testnet.explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.explorer.hychain.com", + icon: "hychain", + standard: "EIP3091", + }, ], "29536": [ { - "name": "KaiChain Explorer", - "url": "https://testnet-explorer.kaichain.net", - "standard": "EIP3091" - } + name: "KaiChain Explorer", + url: "https://testnet-explorer.kaichain.net", + standard: "EIP3091", + }, ], "29548": [ { - "name": "MCH Verse Explorer", - "url": "https://explorer.oasys.mycryptoheroes.net", - "standard": "EIP3091" - } + name: "MCH Verse Explorer", + url: "https://explorer.oasys.mycryptoheroes.net", + standard: "EIP3091", + }, ], "30067": [ { - "name": "Piece Scan", - "url": "https://testnet-scan.piecenetwork.com", - "standard": "EIP3091" - } + name: "Piece Scan", + url: "https://testnet-scan.piecenetwork.com", + standard: "EIP3091", + }, ], "30088": [ { - "name": "MiYou block explorer", - "url": "https://myscan.miyou.io", - "standard": "EIP3091" - } + name: "MiYou block explorer", + url: "https://myscan.miyou.io", + standard: "EIP3091", + }, ], "30103": [ { - "name": "canxium explorer", - "url": "https://cerium-explorer.canxium.net", - "standard": "none" - } + name: "canxium explorer", + url: "https://cerium-explorer.canxium.net", + standard: "none", + }, ], "30730": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } + name: "mevm explorer", + url: "https://explorer.movementlabs.xyz", + standard: "none", + }, ], "30731": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } + name: "mevm explorer", + url: "https://explorer.movementlabs.xyz", + standard: "none", + }, ], "30732": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } + name: "mevm explorer", + url: "https://explorer.movementlabs.xyz", + standard: "none", + }, ], "31223": [ { - "name": "cloudtxscan", - "url": "https://scan.cloudtx.finance", - "standard": "EIP3091" - } + name: "cloudtxscan", + url: "https://scan.cloudtx.finance", + standard: "EIP3091", + }, ], "31224": [ { - "name": "cloudtxexplorer", - "url": "https://explorer.cloudtx.finance", - "standard": "EIP3091" - } + name: "cloudtxexplorer", + url: "https://explorer.cloudtx.finance", + standard: "EIP3091", + }, ], "31337": [ { - "name": "GoChain Testnet Explorer", - "url": "https://testnet-explorer.gochain.io", - "standard": "EIP3091" - } + 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" - } + name: "Evoke SmartChain Testnet Explorer", + url: "https://testnet-explorer.evokescan.org", + standard: "EIP3091", + }, ], "31753": [ { - "name": "Xchain Mainnet Explorer", - "url": "https://xchainscan.com", - "standard": "EIP3091" - } + name: "Xchain Mainnet Explorer", + url: "https://xchainscan.com", + standard: "EIP3091", + }, ], "31754": [ { - "name": "Xchain Testnet Explorer", - "url": "https://xchaintest.net", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Brise Scan", + url: "https://brisescan.com", + icon: "brise", + standard: "EIP3091", + }, ], "32659": [ { - "name": "fsnscan", - "url": "https://fsnscan.com", - "icon": "fsnscan", - "standard": "EIP3091" - } + name: "fsnscan", + url: "https://fsnscan.com", + icon: "fsnscan", + standard: "EIP3091", + }, ], "32769": [ { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } + 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" - } + 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" - } + name: "Entangle Mainnet Explorer", + url: "https://explorer.entangle.fi", + standard: "none", + }, ], "33101": [ { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } + name: "Zilliqa EVM Explorer", + url: "https://evmx.zilliqa.com", + standard: "none", + }, ], "33210": [ { - "name": "CLOUDVERSE Explorer", - "url": "https://subnets.avax.network/cloudverse", - "standard": "EIP3091" - } + name: "CLOUDVERSE Explorer", + url: "https://subnets.avax.network/cloudverse", + standard: "EIP3091", + }, ], "33333": [ { - "name": "avescan", - "url": "https://avescan.io", - "icon": "avescan", - "standard": "EIP3091" - } + name: "avescan", + url: "https://avescan.io", + icon: "avescan", + standard: "EIP3091", + }, ], "33385": [ { - "name": "Zilliqa EVM Devnet Explorer", - "url": "https://otterscan.devnet.zilliqa.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Funki Mainnet Explorer", + url: "https://mainnet.funkichain.com", + standard: "none", + }, ], "34443": [ { - "name": "modescout", - "url": "https://explorer.mode.network", - "standard": "none" - } + name: "modescout", + url: "https://explorer.mode.network", + standard: "none", + }, ], "35011": [ { - "name": "J2O Taro Explorer", - "url": "https://exp.j2o.io", - "icon": "j2otaro", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Q explorer", + url: "https://explorer.qtestnet.org", + icon: "q", + standard: "EIP3091", + }, ], "38400": [ { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } + name: "rangersscan", + url: "https://scan.rangersprotocol.com", + standard: "none", + }, ], "38401": [ { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } + name: "rangersscan-robin", + url: "https://robin-rangersscan.rangersprotocol.com", + standard: "none", + }, ], "39656": [ { - "name": "Primal Network", - "url": "https://prmscan.org", - "standard": "EIP3091" - } + name: "Primal Network", + url: "https://prmscan.org", + standard: "EIP3091", + }, ], "39815": [ { - "name": "ohoscan", - "url": "https://ohoscan.com", - "icon": "ohoscan", - "standard": "EIP3091" - } + name: "ohoscan", + url: "https://ohoscan.com", + icon: "ohoscan", + standard: "EIP3091", + }, ], "41500": [ { - "name": "Opulent-X BETA Explorer", - "url": "https://explorer.opulent-x.com", - "standard": "none" - } + 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" - } + name: "AgentLayer Testnet Explorer", + url: "https://testnet-explorer.agentlayer.xyz", + standard: "EIP3091", + }, ], "42161": [ { - "name": "Arbiscan", - "url": "https://arbiscan.io", - "standard": "EIP3091" + name: "Arbiscan", + url: "https://arbiscan.io", + standard: "EIP3091", }, { - "name": "Arbitrum Explorer", - "url": "https://explorer.arbitrum.io", - "standard": "EIP3091" + name: "Arbitrum Explorer", + url: "https://explorer.arbitrum.io", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://arbitrum.dex.guru", - "icon": "dexguru", - "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: "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" - } + name: "dexguru", + url: "https://nova.dex.guru", + icon: "dexguru", + standard: "EIP3091", + }, ], "42220": [ { - "name": "Celoscan", - "url": "https://celoscan.io", - "standard": "EIP3091" + name: "Celoscan", + url: "https://celoscan.io", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://explorer.celo.org", - "standard": "none" - } + name: "blockscout", + url: "https://explorer.celo.org", + standard: "none", + }, ], "42261": [ { - "name": "Oasis Emerald Testnet Explorer", - "url": "https://explorer.oasis.io/testnet/emerald", - "standard": "EIP3091" - } + 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" - } + name: "Oasis Emerald Explorer", + url: "https://explorer.oasis.io/mainnet/emerald", + standard: "EIP3091", + }, ], "42355": [ { - "name": "GoldXChain Explorer", - "url": "https://explorer.goldxchain.io", - "standard": "EIP3091" - } + name: "GoldXChain Explorer", + url: "https://explorer.goldxchain.io", + standard: "EIP3091", + }, ], "42766": [ { - "name": "blockscout", - "url": "https://scan.zkfair.io", - "icon": "zkfair", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.zkfair.io", + icon: "zkfair", + standard: "EIP3091", + }, ], "42793": [ { - "name": "Etherlink Explorer", - "url": "https://explorer.etherlink.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "kintoscan", + url: "http://35.215.120.180:4000", + standard: "EIP3091", + }, ], "43113": [ { - "name": "snowtrace", - "url": "https://testnet.snowtrace.io", - "standard": "EIP3091" - } + name: "snowtrace", + url: "https://testnet.snowtrace.io", + standard: "EIP3091", + }, ], "43114": [ { - "name": "snowtrace", - "url": "https://snowtrace.io", - "standard": "EIP3091" - } + name: "snowtrace", + url: "https://snowtrace.io", + standard: "EIP3091", + }, ], "43851": [ { - "name": "ZKFair Testnet Info", - "url": "https://testnet-scan.zkfair.io", - "icon": "zkfair", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://frenscan.io", + icon: "fren", + standard: "EIP3091", + }, ], "44445": [ { - "name": "Quantum Explorer", - "url": "https://qtm.avescoin.io", - "icon": "quantum", - "standard": "EIP3091" - } + name: "Quantum Explorer", + url: "https://qtm.avescoin.io", + icon: "quantum", + standard: "EIP3091", + }, ], "44787": [ { - "name": "Alfajoresscan", - "url": "https://alfajores.celoscan.io", - "standard": "EIP3091" - } + name: "Alfajoresscan", + url: "https://alfajores.celoscan.io", + standard: "EIP3091", + }, ], "45000": [ { - "name": "autobahn explorer", - "url": "https://explorer.autobahn.network", - "icon": "autobahn", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://swamps-explorer.tc.l2aas.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "45510": [ { - "name": "Deelance Mainnet Explorer", - "url": "https://deescan.com", - "standard": "EIP3091" - } + name: "Deelance Mainnet Explorer", + url: "https://deescan.com", + standard: "EIP3091", + }, ], "46688": [ { - "name": "fsnscan", - "url": "https://testnet.fsnscan.com", - "icon": "fsnscan", - "standard": "EIP3091" - } + name: "fsnscan", + url: "https://testnet.fsnscan.com", + icon: "fsnscan", + standard: "EIP3091", + }, ], "47805": [ { - "name": "rei-scan", - "url": "https://scan.rei.network", - "standard": "none" - } + name: "rei-scan", + url: "https://scan.rei.network", + standard: "none", + }, ], "48795": [ { - "name": "SPACE Explorer", - "url": "https://subnets-test.avax.network/space", - "standard": "EIP3091" - } + name: "SPACE Explorer", + url: "https://subnets-test.avax.network/space", + standard: "EIP3091", + }, ], "48899": [ { - "name": "Zircuit", - "url": "https://explorer.zircuit.com", - "icon": "zircuit", - "standard": "none" - } + name: "Zircuit", + url: "https://explorer.zircuit.com", + icon: "zircuit", + standard: "none", + }, ], "49049": [ { - "name": "Wire Explorer", - "url": "https://floripa-explorer.wireshape.org", - "standard": "EIP3091" - } + name: "Wire Explorer", + url: "https://floripa-explorer.wireshape.org", + standard: "EIP3091", + }, ], "49088": [ { - "name": "explorer-thebifrost", - "url": "https://explorer.testnet.bifrostnetwork.com", - "standard": "EIP3091" - } + name: "explorer-thebifrost", + url: "https://explorer.testnet.bifrostnetwork.com", + standard: "EIP3091", + }, ], "49321": [ { - "name": "blockscout", - "url": "https://testnet.gunzscan.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.gunzscan.io", + standard: "EIP3091", + }, ], "50005": [ { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.yooldo-verse.xyz", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "LumozTestnetInfo", + url: "https://lumoz.info", + icon: "opside-new", + standard: "EIP3091", + }, ], "51712": [ { - "name": "Sardis", - "url": "https://contract-mainnet.sardisnetwork.com", - "standard": "EIP3091" - } + name: "Sardis", + url: "https://contract-mainnet.sardisnetwork.com", + standard: "EIP3091", + }, ], "52014": [ { - "name": "blockscout", - "url": "https://blockexplorer.electroneum.com", - "icon": "electroneum", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockexplorer.electroneum.com", + icon: "electroneum", + standard: "EIP3091", + }, ], "53277": [ { - "name": "DOID Scan", - "url": "https://scan.doid.tech", - "icon": "doid", - "standard": "EIP3091" - } + name: "DOID Scan", + url: "https://scan.doid.tech", + icon: "doid", + standard: "EIP3091", + }, ], "53302": [ { - "name": "seedscout", - "url": "https://sepolia-explorer.superseed.xyz", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ethernal", + url: "https://explorer.dfkchain.com", + icon: "ethereum", + standard: "none", + }, ], "54211": [ { - "name": "TestEdge HAQQ Explorer", - "url": "https://explorer.testedge2.haqq.network", - "standard": "EIP3091" - } + name: "TestEdge HAQQ Explorer", + url: "https://explorer.testedge2.haqq.network", + standard: "EIP3091", + }, ], "54321": [ { - "name": "toronet_explorer", - "url": "https://testnet.toronet.org", - "standard": "none" - } + name: "toronet_explorer", + url: "https://testnet.toronet.org", + standard: "none", + }, ], "54555": [ { - "name": "photon_testnet_explorer", - "url": "https://testnet.photonchain.io", - "standard": "none" - } + name: "photon_testnet_explorer", + url: "https://testnet.photonchain.io", + standard: "none", + }, ], "55004": [ { - "name": "blockscout", - "url": "https://explorer.titan.tokamak.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.titan.tokamak.network", + standard: "EIP3091", + }, ], "55555": [ { - "name": "reiscan", - "url": "https://reiscan.com", - "standard": "EIP3091" - } + name: "reiscan", + url: "https://reiscan.com", + standard: "EIP3091", + }, ], "55556": [ { - "name": "reiscan", - "url": "https://testnet.reiscan.com", - "standard": "EIP3091" - } + name: "reiscan", + url: "https://testnet.reiscan.com", + standard: "EIP3091", + }, ], "56026": [ { - "name": "Lambda Chain Mainnet Explorer", - "url": "https://scan.lambda.im", - "standard": "EIP3091" - } + name: "Lambda Chain Mainnet Explorer", + url: "https://scan.lambda.im", + standard: "EIP3091", + }, ], "56288": [ { - "name": "Boba BNB block explorer", - "url": "https://bobascan.com", - "standard": "none" - } + name: "Boba BNB block explorer", + url: "https://bobascan.com", + standard: "none", + }, ], "56400": [ { - "name": "TESTNETZER Explorer", - "url": "https://subnets-test.avax.network/testnetzer", - "standard": "EIP3091" - } + name: "TESTNETZER Explorer", + url: "https://subnets-test.avax.network/testnetzer", + standard: "EIP3091", + }, ], "56789": [ { - "name": "novascan", - "url": "https://novascan.velo.org", - "standard": "EIP3091" - } + name: "novascan", + url: "https://novascan.velo.org", + standard: "EIP3091", + }, ], "56797": [ { - "name": "DOID Testnet Scan", - "url": "https://scan.testnet.doid.tech", - "icon": "doid", - "standard": "EIP3091" - } + 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" - } + name: "Rollux Testnet Explorer", + url: "https://rollux.tanenbaum.io", + standard: "EIP3091", + }, ], "57451": [ { - "name": "coinsecnetwork", - "url": "https://explorer.coinsec.network", - "standard": "EIP3091" - } + name: "coinsecnetwork", + url: "https://explorer.coinsec.network", + standard: "EIP3091", + }, ], "58008": [ { - "name": "blockscout", - "url": "https://explorer.sepolia.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } + 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: "Etherscan", + url: "https://goerli.lineascan.build", + standard: "EIP3091", + icon: "linea", }, { - "name": "Blockscout", - "url": "https://explorer.goerli.linea.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: "Etherscan", + url: "https://sepolia.lineascan.build", + standard: "EIP3091", + icon: "linea", }, { - "name": "Blockscout", - "url": "https://explorer.sepolia.linea.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: "Etherscan", + url: "https://lineascan.build", + standard: "EIP3091", + icon: "linea", }, { - "name": "Blockscout", - "url": "https://explorer.linea.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" - } + name: "L2scan", + url: "https://linea.l2scan.co", + standard: "EIP3091", + icon: "linea", + }, ], "59971": [ { - "name": "Genesys Scan", - "url": "https://genesysscan.io", - "icon": "genesyscode", - "standard": "none" - } + name: "Genesys Scan", + url: "https://genesysscan.io", + icon: "genesyscode", + standard: "none", + }, ], "60000": [ { - "name": "thinkiumscan", - "url": "https://test0.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://test0.thinkiumscan.net", + standard: "EIP3091", + }, ], "60001": [ { - "name": "thinkiumscan", - "url": "https://test1.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://test1.thinkiumscan.net", + standard: "EIP3091", + }, ], "60002": [ { - "name": "thinkiumscan", - "url": "https://test2.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://test2.thinkiumscan.net", + standard: "EIP3091", + }, ], "60103": [ { - "name": "thinkiumscan", - "url": "https://test103.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://test103.thinkiumscan.net", + standard: "EIP3091", + }, ], "60808": [ { - "name": "bobscout", - "url": "https://explorer.gobob.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "bobscout", + url: "https://explorer.gobob.xyz", + icon: "blockscout", + standard: "EIP3091", + }, ], "61406": [ { - "name": "KaiChain Explorer", - "url": "https://explorer.kaichain.net", - "standard": "EIP3091" - } + name: "KaiChain Explorer", + url: "https://explorer.kaichain.net", + standard: "EIP3091", + }, ], "61800": [ { - "name": "AxelChain Dev-Net Explorer", - "url": "https://devexplorer2.viacube.com", - "standard": "EIP3091" - } + name: "AxelChain Dev-Net Explorer", + url: "https://devexplorer2.viacube.com", + standard: "EIP3091", + }, ], "61803": [ { - "name": "eticascan", - "url": "https://eticascan.org", - "standard": "EIP3091" + name: "eticascan", + url: "https://eticascan.org", + standard: "EIP3091", }, { - "name": "eticastats", - "url": "http://explorer.etica-stats.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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Scolscan Explorer", + url: "https://explorer.scolcoin.com", + standard: "EIP3091", + }, ], "66988": [ { - "name": "JanusNetwork Testnet Explorer", - "url": "https://beta.scan.janusnetwork.io", - "standard": "none" - } + name: "JanusNetwork Testnet Explorer", + url: "https://beta.scan.janusnetwork.io", + standard: "none", + }, ], "68770": [ { - "name": "DM2Verse Explorer", - "url": "https://explorer.dm2verse.dmm.com", - "standard": "EIP3091" - } + name: "DM2Verse Explorer", + url: "https://explorer.dm2verse.dmm.com", + standard: "EIP3091", + }, ], "69420": [ { - "name": "Condrieu explorer", - "url": "https://explorer.condrieu.ethdevops.io", - "standard": "none" - } + name: "Condrieu explorer", + url: "https://explorer.condrieu.ethdevops.io", + standard: "none", + }, ], "70000": [ { - "name": "thinkiumscan", - "url": "https://chain0.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://chain0.thinkiumscan.net", + standard: "EIP3091", + }, ], "70001": [ { - "name": "thinkiumscan", - "url": "https://chain1.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://chain1.thinkiumscan.net", + standard: "EIP3091", + }, ], "70002": [ { - "name": "thinkiumscan", - "url": "https://chain2.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://chain2.thinkiumscan.net", + standard: "EIP3091", + }, ], "70103": [ { - "name": "thinkiumscan", - "url": "https://chain103.thinkiumscan.net", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "GWScan Block Explorer", + url: "https://v1.testnet.gwscan.com", + standard: "none", + }, ], "71402": [ { - "name": "GWScan Block Explorer", - "url": "https://v1.gwscan.com", - "standard": "none" - } + name: "GWScan Block Explorer", + url: "https://v1.gwscan.com", + standard: "none", + }, ], "72778": [ { - "name": "ankara", - "url": "https://explorer.ankara-cagacrypto.com", - "standard": "EIP3091" - } + name: "ankara", + url: "https://explorer.ankara-cagacrypto.com", + standard: "EIP3091", + }, ], "72992": [ { - "name": "GrokScan", - "url": "https://mainnet-explorer.grokchain.dev", - "standard": "none" - } + name: "GrokScan", + url: "https://mainnet-explorer.grokchain.dev", + standard: "none", + }, ], "73114": [ { - "name": "ICB Tesnet Explorer", - "url": "https://testnet.icbscan.io", - "standard": "EIP3091" - } + name: "ICB Tesnet Explorer", + url: "https://testnet.icbscan.io", + standard: "EIP3091", + }, ], "73115": [ { - "name": "ICB Explorer", - "url": "https://icbscan.io", - "standard": "EIP3091" - } + name: "ICB Explorer", + url: "https://icbscan.io", + standard: "EIP3091", + }, ], "73927": [ { - "name": "mvmscan", - "url": "https://scan.mvm.dev", - "icon": "mvm", - "standard": "EIP3091" - } + name: "mvmscan", + url: "https://scan.mvm.dev", + icon: "mvm", + standard: "EIP3091", + }, ], "75000": [ { - "name": "ResinScan", - "url": "https://explorer.resincoin.dev", - "standard": "none" - } + name: "ResinScan", + url: "https://explorer.resincoin.dev", + standard: "none", + }, ], "75512": [ { - "name": "Geek Explorer", - "url": "https://explorer.geekout-pte.com", - "standard": "EIP3091" - } + 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" - } + name: "Geek Testnet Explorer", + url: "https://explorer-testnet.geekout-pte.com", + standard: "EIP3091", + }, ], "77001": [ { - "name": "BORAchainscope", - "url": "https://scope.boraportal.com", - "standard": "EIP3091" - } + name: "BORAchainscope", + url: "https://scope.boraportal.com", + standard: "EIP3091", + }, ], "77238": [ { - "name": "Foundry Scan Testnet", - "url": "https://testnet-explorer.foundryscan.org", - "standard": "EIP3091" - } + name: "Foundry Scan Testnet", + url: "https://testnet-explorer.foundryscan.org", + standard: "EIP3091", + }, ], "77612": [ { - "name": "ventionscan", - "url": "https://ventionscan.io", - "standard": "EIP3091" - } + name: "ventionscan", + url: "https://ventionscan.io", + standard: "EIP3091", + }, ], "77777": [ { - "name": "toronet_explorer", - "url": "https://toronet.org/explorer", - "standard": "none" - } + name: "toronet_explorer", + url: "https://toronet.org/explorer", + standard: "none", + }, ], "78281": [ { - "name": "Dragonfly Blockscout", - "url": "https://blockscout.dragonfly.hexapod.network", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Gold Smart Chain", + url: "https://testnet.goldsmartchain.com", + standard: "EIP3091", + }, ], "80001": [ { - "name": "polygonscan", - "url": "https://mumbai.polygonscan.com", - "standard": "EIP3091" - } + name: "polygonscan", + url: "https://mumbai.polygonscan.com", + standard: "EIP3091", + }, ], "80002": [ { - "name": "polygonamoy", - "url": "https://www.oklink.com/amoy", - "standard": "EIP3091" - } + name: "polygonamoy", + url: "https://www.oklink.com/amoy", + standard: "EIP3091", + }, ], "80085": [ { - "name": "Beratrail", - "url": "https://artio.beratrail.io", - "icon": "berachain", - "standard": "none" - } + name: "Beratrail", + url: "https://artio.beratrail.io", + icon: "berachain", + standard: "none", + }, ], "80096": [ { - "name": "blockscout", - "url": "https://hizoco.net:38443", - "standard": "none" - } + name: "blockscout", + url: "https://hizoco.net:38443", + standard: "none", + }, ], "81041": [ { - "name": "nordek", - "url": "https://nordekscan.com", - "standard": "EIP3091" - } + name: "nordek", + url: "https://nordekscan.com", + standard: "EIP3091", + }, ], "81457": [ { - "name": "Blastscan", - "url": "https://blastscan.io", - "icon": "blast", - "standard": "EIP3091" + name: "Blastscan", + url: "https://blastscan.io", + icon: "blast", + standard: "EIP3091", }, { - "name": "Blast Explorer", - "url": "https://blastexplorer.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" - } + name: "Quantum Scan Mainnet", + url: "https://quantumscan.org", + standard: "EIP3091", + }, ], "82459": [ { - "name": "SLN Testnet Explorer", - "url": "https://explorer.test.smartlayer.network", - "standard": "EIP3091" - } + name: "SLN Testnet Explorer", + url: "https://explorer.test.smartlayer.network", + standard: "EIP3091", + }, ], "83872": [ { - "name": "Zedscan", - "url": "http://zedscan.net", - "standard": "EIP3091" - } + name: "Zedscan", + url: "http://zedscan.net", + standard: "EIP3091", + }, ], "84531": [ { - "name": "basescan", - "url": "https://goerli.basescan.org", - "standard": "none" + name: "basescan", + url: "https://goerli.basescan.org", + standard: "none", }, { - "name": "basescout", - "url": "https://base-goerli.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "basescout", + url: "https://base-goerli.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://base-goerli.dex.guru", - "icon": "dexguru", - "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" - } + 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" - } + name: "Aerie Explorer", + url: "https://explorer.aerielab.io", + icon: "aerie", + standard: "EIP3091", + }, ], "88002": [ { - "name": "Nautscan", - "url": "https://proteus.nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" - } + name: "Nautscan", + url: "https://proteus.nautscan.com", + standard: "EIP3091", + icon: "nautilus", + }, ], "88559": [ { - "name": "inoai live", - "url": "https://inoai.live", - "standard": "none" - } + name: "inoai live", + url: "https://inoai.live", + standard: "none", + }, ], "88817": [ { - "name": "explorer-testnet", - "url": "https://explorer-testnet.unit0.dev", - "standard": "EIP3091" - } + name: "explorer-testnet", + url: "https://explorer-testnet.unit0.dev", + standard: "EIP3091", + }, ], "88819": [ { - "name": "explorer-stagenet", - "url": "https://explorer-stagenet.unit0.dev", - "standard": "EIP3091" - } + name: "explorer-stagenet", + url: "https://explorer-stagenet.unit0.dev", + standard: "EIP3091", + }, ], "88882": [ { - "name": "spicy-explorer", - "url": "https://testnet.chiliscan.com", - "standard": "EIP3091" - } + name: "spicy-explorer", + url: "https://testnet.chiliscan.com", + standard: "EIP3091", + }, ], "88888": [ { - "name": "chiliscan", - "url": "https://chiliscan.com", - "standard": "EIP3091" + name: "chiliscan", + url: "https://chiliscan.com", + standard: "EIP3091", }, { - "name": "chilizscan", - "url": "https://scan.chiliz.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" - } + 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" - } + 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" - } + name: "Nautscan", + url: "https://triton.nautscan.com", + standard: "EIP3091", + }, ], "91120": [ { - "name": "MetaDAP Enterprise Mainnet explorer", - "url": "https://explorer.chain.metadap.io", - "standard": "none" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Green Chain Explorer", + url: "https://explorer.greenchain.app", + standard: "EIP3091", + }, ], "97970": [ { - "name": "OptimusZ7 Testnet Explorer", - "url": "https://testnet.optimusz7.com", - "standard": "EIP3091" - } + name: "OptimusZ7 Testnet Explorer", + url: "https://testnet.optimusz7.com", + standard: "EIP3091", + }, ], "99099": [ { - "name": "eLiberty Testnet", - "url": "https://testnet.eliberty.ngo", - "standard": "EIP3091" - } + name: "eLiberty Testnet", + url: "https://testnet.eliberty.ngo", + standard: "EIP3091", + }, ], "100001": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/0", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/0", + standard: "EIP3091", + }, ], "100002": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/1", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/1", + standard: "EIP3091", + }, ], "100003": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/2", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/2", + standard: "EIP3091", + }, ], "100004": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/3", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/3", + standard: "EIP3091", + }, ], "100005": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/4", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/4", + standard: "EIP3091", + }, ], "100006": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/5", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/5", + standard: "EIP3091", + }, ], "100007": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/6", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/6", + standard: "EIP3091", + }, ], "100008": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/7", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/7", + standard: "EIP3091", + }, ], "100009": [ { - "name": "VeChain Stats", - "url": "https://vechainstats.com", - "standard": "none" + name: "VeChain Stats", + url: "https://vechainstats.com", + standard: "none", }, { - "name": "VeChain Explorer", - "url": "https://explore.vechain.org", - "standard": "none" - } + name: "VeChain Explorer", + url: "https://explore.vechain.org", + standard: "none", + }, ], "100010": [ { - "name": "VeChain Explorer", - "url": "https://explore-testnet.vechain.org", - "standard": "none" - } + name: "VeChain Explorer", + url: "https://explore-testnet.vechain.org", + standard: "none", + }, ], "101010": [ { - "name": "blockscout", - "url": "https://stability.blockscout.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://stability.blockscout.com", + standard: "EIP3091", + }, ], "102031": [ { - "name": "blockscout", - "url": "https://creditcoin-testnet.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://creditcoin-testnet.blockscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "103090": [ { - "name": "blockscout", - "url": "https://scan.crystaleum.org", - "icon": "crystal", - "standard": "EIP3091" - } + 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" - } + name: "Masa Testnet Explorer", + url: "https://subnets-test.avax.network/masatestnet", + standard: "EIP3091", + }, ], "104566": [ { - "name": "KaspaClassic Explorer", - "url": "https://explorer.kaspaclassic.world", - "standard": "none" - } + name: "KaspaClassic Explorer", + url: "https://explorer.kaspaclassic.world", + standard: "none", + }, ], "105105": [ { - "name": "Stratis Explorer", - "url": "https://explorer.stratisevm.com", - "standard": "EIP3091" - } + name: "Stratis Explorer", + url: "https://explorer.stratisevm.com", + standard: "EIP3091", + }, ], "108801": [ { - "name": "BROChain Explorer", - "url": "https://explorer.brochain.org", - "standard": "EIP3091" - } + name: "BROChain Explorer", + url: "https://explorer.brochain.org", + standard: "EIP3091", + }, ], "110001": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/0", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/0", + standard: "EIP3091", + }, ], "110002": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/1", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/1", + standard: "EIP3091", + }, ], "110003": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/2", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/2", + standard: "EIP3091", + }, ], "110004": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/3", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/3", + standard: "EIP3091", + }, ], "110005": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/4", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/4", + standard: "EIP3091", + }, ], "110006": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/5", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/5", + standard: "EIP3091", + }, ], "110007": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/6", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/6", + standard: "EIP3091", + }, ], "110008": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/7", - "standard": "EIP3091" - } + 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" - } + 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 - 1", + url: "https://explorer.main.siberium.net", + icon: "siberium", + standard: "EIP3091", }, { - "name": "Siberium Mainnet Explorer - blockscout - 2", - "url": "https://explorer.main.siberium.net.ru", - "icon": "siberium", - "standard": "EIP3091" - } + name: "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" - } + name: "blockscout", + url: "https://explorer.re.al", + icon: "real", + standard: "EIP3091", + }, ], "112358": [ { - "name": "blockscout", - "url": "https://explorer.metachain.one", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Etherlink Testnet Explorer", + url: "https://testnet-explorer.etherlink.com", + standard: "EIP3091", + }, ], "131419": [ { - "name": "etndscan", - "url": "https://scan.etnd.pro", - "icon": "ETND", - "standard": "none" - } + name: "etndscan", + url: "https://scan.etnd.pro", + icon: "ETND", + standard: "none", + }, ], "132902": [ { - "name": "Form Testnet explorer", - "url": "https://testnet-explorer.form.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ICPlaza", + url: "https://browsemainnet.ic-plaza.org/index", + standard: "none", + }, ], "165279": [ { - "name": "Eclat Mainnet Explorer", - "url": "https://eclatscan.com", - "standard": "EIP3091" - } + name: "Eclat Mainnet Explorer", + url: "https://eclatscan.com", + standard: "EIP3091", + }, ], "167000": [ { - "name": "etherscan", - "url": "https://taikoscan.io", - "standard": "EIP3091" - } + name: "etherscan", + url: "https://taikoscan.io", + standard: "EIP3091", + }, ], "167008": [ { - "name": "blockscout", - "url": "https://explorer.katla.taiko.xyz", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.katla.taiko.xyz", + standard: "EIP3091", + }, ], "167009": [ { - "name": "blockscout", - "url": "https://blockscoutapi.hekla.taiko.xyz", - "standard": "EIP3091" + name: "blockscout", + url: "https://blockscoutapi.hekla.taiko.xyz", + standard: "EIP3091", }, { - "name": "routescan", - "url": "https://hekla.taikoscan.network", - "standard": "EIP3091" - } + name: "routescan", + url: "https://hekla.taikoscan.network", + standard: "EIP3091", + }, ], "188710": [ { - "name": "Bitica DPOS Blockchain Explorer", - "url": "https://biticablockchain.com", - "standard": "none" - } + name: "Bitica DPOS Blockchain Explorer", + url: "https://biticablockchain.com", + standard: "none", + }, ], "188881": [ { - "name": "CondorScan", - "url": "https://explorer.condor.systems", - "standard": "none" - } + name: "CondorScan", + url: "https://explorer.condor.systems", + standard: "none", + }, ], "200101": [ { - "name": "Blockscout", - "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } + 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" - } + 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" - } + name: "bitlayer testnet scan", + url: "https://testnet.btrscan.com", + standard: "EIP3091", + }, ], "200901": [ { - "name": "bitlayer mainnet scan", - "url": "https://www.btrscan.com", - "standard": "EIP3091" - } + name: "bitlayer mainnet scan", + url: "https://www.btrscan.com", + standard: "EIP3091", + }, ], "201018": [ { - "name": "alaya explorer", - "url": "https://scan.alaya.network", - "standard": "none" - } + name: "alaya explorer", + url: "https://scan.alaya.network", + standard: "none", + }, ], "201030": [ { - "name": "alaya explorer", - "url": "https://devnetscan.alaya.network", - "standard": "none" - } + name: "alaya explorer", + url: "https://devnetscan.alaya.network", + standard: "none", + }, ], "201804": [ { - "name": "Mythical Chain Explorer", - "url": "https://explorer.mythicalgames.com", - "icon": "mythical", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Auroria Testnet Explorer", + url: "https://auroria.explorer.stratisevm.com", + standard: "EIP3091", + }, ], "210425": [ { - "name": "PlatON explorer", - "url": "https://scan.platon.network", - "standard": "none" - } + name: "PlatON explorer", + url: "https://scan.platon.network", + standard: "none", + }, ], "220315": [ { - "name": "explorer masnet", - "url": "https://explorer.masnet.ai", - "standard": "EIP3091" - } + name: "explorer masnet", + url: "https://explorer.masnet.ai", + standard: "EIP3091", + }, ], "221230": [ { - "name": "Reapchain Dashboard", - "url": "https://dashboard.reapchain.org", - "icon": "reapchain", - "standard": "none" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://explorer.evm.hydration.cloud", + standard: "EIP3091", + }, ], "222555": [ { - "name": "DeepL Mainnet Explorer", - "url": "https://scan.deeplnetwork.org", - "icon": "deepl", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Taf ECO Chain Mainnet", + url: "https://ecoscan.tafchain.com", + standard: "EIP3091", + }, ], "224422": [ { - "name": "CONET Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" - } + name: "CONET Scan", + url: "https://scan.conet.network", + standard: "EIP3091", + }, ], "224433": [ { - "name": "CONET Holesky Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" - } + name: "CONET Holesky Scan", + url: "https://scan.conet.network", + standard: "EIP3091", + }, ], "230315": [ { - "name": "HashKey Chain Testnet Explorer", - "url": "https://testnet.hashkeyscan.io", - "standard": "none" - } + 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" - } + 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" - } + name: "saakuru-explorer-testnet", + url: "https://explorer-testnet.saakuru.network", + standard: "EIP3091", + }, ], "256256": [ { - "name": "Mainnet Scan", - "url": "https://mainnet.scan.caduceus.foundation", - "standard": "none" - } + name: "Mainnet Scan", + url: "https://mainnet.scan.caduceus.foundation", + standard: "none", + }, ], "262371": [ { - "name": "Eclat Testnet Explorer", - "url": "https://testnet-explorer.eclatscan.com", - "standard": "EIP3091" - } + name: "Eclat Testnet Explorer", + url: "https://testnet-explorer.eclatscan.com", + standard: "EIP3091", + }, ], "271271": [ { - "name": "EgonCoin Testnet", - "url": "https://testnet.egonscan.com", - "standard": "EIP3091" - } + name: "EgonCoin Testnet", + url: "https://testnet.egonscan.com", + standard: "EIP3091", + }, ], "282828": [ { - "name": "zillscout", - "url": "https://sepolia.zillnet.io", - "icon": "zillion", - "standard": "EIP3091" - } + 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" - } + name: "One World Chain Mainnet Explorer", + url: "https://mainnet.oneworldchain.org", + standard: "EIP3091", + }, ], "313313": [ { - "name": "Testnet Scan", - "url": "https://explorer.saharaa.info", - "standard": "EIP3091" - } + name: "Testnet Scan", + url: "https://explorer.saharaa.info", + standard: "EIP3091", + }, ], "314159": [ { - "name": "Filscan - Calibration", - "url": "https://calibration.filscan.io", - "standard": "none" + name: "Filscan - Calibration", + url: "https://calibration.filscan.io", + standard: "none", }, { - "name": "Filscout - Calibration", - "url": "https://calibration.filscout.com/en", - "standard": "none" + name: "Filscout - Calibration", + url: "https://calibration.filscout.com/en", + standard: "none", }, { - "name": "Filfox - Calibration", - "url": "https://calibration.filfox.info", - "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: "Glif Explorer - Calibration", + url: "https://explorer.glif.io/?network=calibration", + standard: "none", }, { - "name": "Beryx", - "url": "https://beryx.zondax.ch", - "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" - } + 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" - } + 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" - } + 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" - } + name: "Bloom Genesis Mainnet", + url: "https://explorer.bloomgenesis.com", + standard: "EIP3091", + }, ], "333331": [ { - "name": "avescan", - "url": "https://testnet.avescoin.io", - "icon": "avescan", - "standard": "EIP3091" - } + name: "avescan", + url: "https://testnet.avescoin.io", + icon: "avescan", + standard: "EIP3091", + }, ], "333333": [ { - "name": "Nativ3 Test Explorer", - "url": "https://scantest.nativ3.network", - "standard": "EIP3091" - } + name: "Nativ3 Test Explorer", + url: "https://scantest.nativ3.network", + standard: "EIP3091", + }, ], "333666": [ { - "name": "blockscout", - "url": "https://testnet.oonescan.com", - "standard": "none" - } + name: "blockscout", + url: "https://testnet.oonescan.com", + standard: "none", + }, ], "333777": [ { - "name": "blockscout", - "url": "https://dev.oonescan.com", - "standard": "none" - } + name: "blockscout", + url: "https://dev.oonescan.com", + standard: "none", + }, ], "336655": [ { - "name": "UPchain Testnet Explorer", - "url": "https://explorer-testnet.uniport.network", - "icon": "up", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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://explorer.testnet.bitfinity.network", + icon: "bitfinity", + standard: "EIP3091", }, { - "name": "Bitfinity Testnet Block Explorer", - "url": "https://bitfinity-test.dex.guru", - "icon": "dexguru", - "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" - } + 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" - } + 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" - } + name: "HAP EVM Explorer (Blockscout)", + url: "https://blockscout-test.hap.land", + standard: "none", + icon: "hap", + }, ], "381931": [ { - "name": "metalscan", - "url": "https://metalscan.io", - "standard": "EIP3091" - } + name: "metalscan", + url: "https://metalscan.io", + standard: "EIP3091", + }, ], "381932": [ { - "name": "metalscan", - "url": "https://tahoe.metalscan.io", - "standard": "EIP3091" - } + name: "metalscan", + url: "https://tahoe.metalscan.io", + standard: "EIP3091", + }, ], "404040": [ { - "name": "Tipboxcoin", - "url": "https://tipboxcoin.net", - "standard": "EIP3091" - } + name: "Tipboxcoin", + url: "https://tipboxcoin.net", + standard: "EIP3091", + }, ], "413413": [ { - "name": "aiescan-testnet", - "icon": "aie", - "url": "https://testnet.aiescan.io", - "standard": "none" - } + 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" - } + 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" - } + 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" - } + 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: "arbiscan-testnet", + url: "https://testnet.arbiscan.io", + standard: "EIP3091", }, { - "name": "arbitrum-rinkeby", - "url": "https://rinkeby-explorer.arbitrum.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" - } + 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" - } + name: "Arbitrum Sepolia Rollup Testnet Explorer", + url: "https://sepolia-explorer.arbitrum.io", + standard: "EIP3091", + }, ], "424242": [ { - "name": "blockscout", - "url": "https://testnet.ftnscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://testnet.ftnscan.com", + standard: "none", + }, ], "432201": [ { - "name": "Avalanche Subnet Testnet Explorer", - "url": "https://subnets-test.avax.network/dexalot", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "weelink-testnet", + url: "https://weelink.cloud/#/blockView/overview", + standard: "none", + }, ], "473861": [ { - "name": "ultraproscan", - "url": "https://ultraproscan.io", - "icon": "ultrapro", - "standard": "EIP3091" - } + name: "ultraproscan", + url: "https://ultraproscan.io", + icon: "ultrapro", + standard: "EIP3091", + }, ], "474142": [ { - "name": "SIDE SCAN", - "url": "https://sidescan.luniverse.io/1641349324562974539", - "standard": "none" - } + name: "SIDE SCAN", + url: "https://sidescan.luniverse.io/1641349324562974539", + standard: "none", + }, ], "504441": [ { - "name": "Playdapp Explorer", - "url": "https://subnets.avax.network/playdappne", - "standard": "EIP3091" - } + name: "Playdapp Explorer", + url: "https://subnets.avax.network/playdappne", + standard: "EIP3091", + }, ], "512512": [ { - "name": "Galaxy Scan", - "url": "https://galaxy.scan.caduceus.foundation", - "standard": "none" - } + name: "Galaxy Scan", + url: "https://galaxy.scan.caduceus.foundation", + standard: "none", + }, ], "513100": [ { - "name": "DisChain", - "url": "https://www.oklink.com/dis", - "standard": "EIP3091" - } + name: "DisChain", + url: "https://www.oklink.com/dis", + standard: "EIP3091", + }, ], "526916": [ { - "name": "DoCoin Community Chain Explorer", - "url": "https://explorer.docoin.shop", - "standard": "EIP3091" - } + name: "DoCoin Community Chain Explorer", + url: "https://explorer.docoin.shop", + standard: "EIP3091", + }, ], "534351": [ { - "name": "Scroll Sepolia Etherscan", - "url": "https://sepolia.scrollscan.com", - "standard": "EIP3091" - } + name: "Scroll Sepolia Etherscan", + url: "https://sepolia.scrollscan.com", + standard: "EIP3091", + }, ], "534352": [ { - "name": "Scrollscan", - "url": "https://scrollscan.com", - "standard": "EIP3091" - } + name: "Scrollscan", + url: "https://scrollscan.com", + standard: "EIP3091", + }, ], "534849": [ { - "name": "shinascan", - "url": "https://shinascan.shinarium.org", - "standard": "EIP3091" - } + name: "shinascan", + url: "https://shinascan.shinarium.org", + standard: "EIP3091", + }, ], "535037": [ { - "name": "bescscan", - "url": "https://Bescscan.io", - "standard": "EIP3091" - } + name: "bescscan", + url: "https://Bescscan.io", + standard: "EIP3091", + }, ], "552981": [ { - "name": "One World Chain Testnet Explorer", - "url": "https://testnet.oneworldchain.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ECLIPSE Explorer", + url: "https://subnets-test.avax.network/eclipsecha", + standard: "EIP3091", + }, ], "622277": [ { - "name": "hypra", - "url": "https://explorer.hypra.network", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + name: "Atlas Testnet Scan", + url: "https://explorer.testnet.atl.network", + icon: "atlas", + standard: "EIP3091", + }, ], "641230": [ { - "name": "brnkscan", - "url": "https://brnkscan.bearnetwork.net", - "standard": "EIP3091" - } + name: "brnkscan", + url: "https://brnkscan.bearnetwork.net", + standard: "EIP3091", + }, ], "651940": [ { - "name": "Alltra SmartChain Explorer", - "url": "https://alltra.global", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Won Explorer", + url: "https://scan.wonnetwork.org", + standard: "EIP3091", + }, ], "696969": [ { - "name": "Galadriel Explorer", - "url": "https://explorer.galadriel.com", - "standard": "none" - } + name: "Galadriel Explorer", + url: "https://explorer.galadriel.com", + standard: "none", + }, ], "710420": [ { - "name": "TILTYARD Explorer", - "url": "https://subnets.avax.network/tiltyard", - "standard": "EIP3091" - } + name: "TILTYARD Explorer", + url: "https://subnets.avax.network/tiltyard", + standard: "EIP3091", + }, ], "713715": [ { - "name": "Seistream", - "url": "https://seistream.app", - "standard": "none" + name: "Seistream", + url: "https://seistream.app", + standard: "none", }, { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } + name: "Seitrace", + url: "https://seitrace.com", + standard: "EIP3091", + }, ], "721529": [ { - "name": "Eramscan", - "url": "https://eramscan.com", - "standard": "EIP3091" - } + name: "Eramscan", + url: "https://eramscan.com", + standard: "EIP3091", + }, ], "743111": [ { - "name": "blockscout", - "url": "https://testnet.explorer.hemi.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.explorer.hemi.xyz", + icon: "blockscout", + standard: "EIP3091", + }, ], "751230": [ { - "name": "brnktestscan", - "url": "https://brnktest-scan.bearnetwork.net", - "standard": "EIP3091" - } + name: "brnktestscan", + url: "https://brnktest-scan.bearnetwork.net", + standard: "EIP3091", + }, ], "761412": [ { - "name": "Miexs Smartchain Explorer", - "url": "https://miexs.com", - "standard": "EIP3091" - } + name: "Miexs Smartchain Explorer", + url: "https://miexs.com", + standard: "EIP3091", + }, ], "764984": [ { - "name": "Lamina1 Test Explorer", - "url": "https://subnets-test.avax.network/lamina1tes", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "tscscan", + url: "https://testnet.tscscan.io", + icon: "netxscan", + standard: "none", + }, ], "827431": [ { - "name": "CURVE Mainnet", - "url": "https://curvescan.io", - "standard": "EIP3091" - } + name: "CURVE Mainnet", + url: "https://curvescan.io", + standard: "EIP3091", + }, ], "839320": [ { - "name": "Primal Network Testnet", - "url": "https://testnet-explorer.prmscan.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "BlocX Mainnet Explorer", + url: "https://explorer.blxscan.com", + icon: "blx", + standard: "none", + }, ], "888882": [ { - "name": "REXX Mainnet Explorer", - "url": "https://rexxnetwork.com", - "standard": "EIP3091" - } + name: "REXX Mainnet Explorer", + url: "https://rexxnetwork.com", + standard: "EIP3091", + }, ], "888888": [ { - "name": "Visionscan", - "url": "https://www.visionscan.org", - "standard": "EIP3091" - } + name: "Visionscan", + url: "https://www.visionscan.org", + standard: "EIP3091", + }, ], "900000": [ { - "name": "Posichain Explorer", - "url": "https://explorer.posichain.org", - "standard": "EIP3091" - } + name: "Posichain Explorer", + url: "https://explorer.posichain.org", + standard: "EIP3091", + }, ], "910000": [ { - "name": "Posichain Explorer Testnet", - "url": "https://explorer-testnet.posichain.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "JONO12 Explorer", + url: "https://subnets-test.avax.network/jono12", + standard: "EIP3091", + }, ], "955305": [ { - "name": "blockscout", - "url": "https://explorer.eluv.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.eluv.io", + standard: "EIP3091", + }, ], "978657": [ { - "name": "treasurescan", - "url": "https://testnet.treasurescan.io", - "icon": "treasure", - "standard": "EIP3091" - } + name: "treasurescan", + url: "https://testnet.treasurescan.io", + icon: "treasure", + standard: "EIP3091", + }, ], "984122": [ { - "name": "blockscout", - "url": "https://explorer.forma.art", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://explorer.sketchpad-1.forma.art", + icon: "blockscout", + standard: "EIP3091", + }, ], "988207": [ { - "name": "Ecrox Chain Explorer", - "url": "https://ecroxscan.com", - "standard": "EIP3091" - } + name: "Ecrox Chain Explorer", + url: "https://ecroxscan.com", + standard: "EIP3091", + }, ], "998899": [ { - "name": "supernet-testnet-explorer", - "url": "https://testnet-explorer.supernet.chaingames.io", - "standard": "EIP3091" - } + name: "supernet-testnet-explorer", + url: "https://testnet-explorer.supernet.chaingames.io", + standard: "EIP3091", + }, ], "999999": [ { - "name": "AMCAmChain explorer", - "url": "https://explorer.amchain.net", - "standard": "none" - } + 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" - } + 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" - } + 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: "Blockscout zKatana chain explorer", + url: "https://zkatana.blockscout.com", + standard: "EIP3091", }, { - "name": "Startale zKatana chain explorer", - "url": "https://zkatana.explorer.startale.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" - } + name: "blockscout", + url: "https://explorer.ethoprotocol.com", + standard: "none", + }, ], "1337702": [ { - "name": "kintsugi explorer", - "url": "https://explorer.kintsugi.themerge.dev", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "PlayFi Block Explorer", + url: "https://albireo-explorer.playfi.ai", + standard: "EIP3091", + }, ], "1637450": [ { - "name": "Xterio Testnet Explorer", - "url": "https://testnet.xterscan.io", - "standard": "EIP3091" - } + name: "Xterio Testnet Explorer", + url: "https://testnet.xterscan.io", + standard: "EIP3091", + }, ], "2021398": [ { - "name": "DeBank Chain Explorer", - "url": "https://explorer.testnet.debank.com", - "standard": "EIP3091" - } + name: "DeBank Chain Explorer", + url: "https://explorer.testnet.debank.com", + standard: "EIP3091", + }, ], "2099156": [ { - "name": "piscan", - "url": "https://piscan.plian.org/pchain", - "standard": "EIP3091" - } + name: "piscan", + url: "https://piscan.plian.org/pchain", + standard: "EIP3091", + }, ], "2206132": [ { - "name": "PlatON explorer", - "url": "https://devnet2scan.platon.network", - "standard": "none" - } + name: "PlatON explorer", + url: "https://devnet2scan.platon.network", + standard: "none", + }, ], "3397901": [ { - "name": "Funki Sepolia Sandbox Explorer", - "url": "https://sepolia-sandbox.funkichain.com", - "standard": "none" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Moonchain Geneva Testnet", + url: "https://geneva-explorer.moonchain.com", + standard: "EIP3091", + }, ], "5201420": [ { - "name": "blockscout", - "url": "https://blockexplorer.thesecurityteam.rocks", - "icon": "electroneum", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockexplorer.thesecurityteam.rocks", + icon: "electroneum", + standard: "EIP3091", + }, ], "5318008": [ { - "name": "reactscan", - "url": "https://kopli.reactscan.net", - "standard": "none" - } + 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 EVM explorer (Blockscout)", + url: "https://txe.imversed.network", + icon: "imversed", + standard: "EIP3091", }, { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-c.imversed.com", - "icon": "imversed", - "standard": "none" - } + name: "Imversed 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 EVM Explorer (Blockscout)", + url: "https://txe-test.imversed.network", + icon: "imversed", + standard: "EIP3091", }, { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-t.imversed.com", - "icon": "imversed", - "standard": "none" - } + name: "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" - } + 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" - } + 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" - } + 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" - } + name: "saakuru-explorer", + url: "https://explorer.saakuru.network", + standard: "EIP3091", + }, ], "7355310": [ { - "name": "openvessel-mainnet", - "url": "https://mainnet-explorer.openvessel.io", - "standard": "none" - } + 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" - } + 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" - } + name: "Zora Network Explorer", + url: "https://explorer.zora.energy", + standard: "EIP3091", + }, ], "8007736": [ { - "name": "piscan", - "url": "https://piscan.plian.org/child_0", - "standard": "EIP3091" - } + 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" - } + name: "Fhenix Helium Explorer (Blockscout)", + url: "https://explorer.helium.fhenix.zone", + standard: "EIP3091", + }, ], "8080808": [ { - "name": "Hokum Explorer", - "url": "https://explorer.hokum.gg", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "piscan", + url: "https://testnet.plian.org/child_test", + standard: "EIP3091", + }, ], "10101010": [ { - "name": "Soverun", - "url": "https://explorer.soverun.com", - "standard": "EIP3091" - } + name: "Soverun", + url: "https://explorer.soverun.com", + standard: "EIP3091", + }, ], "10241025": [ { - "name": "Hal Explorer", - "url": "https://hal-explorer.alienxchain.io", - "standard": "EIP3091" - } + name: "Hal Explorer", + url: "https://hal-explorer.alienxchain.io", + standard: "EIP3091", + }, ], "11155111": [ { - "name": "etherscan-sepolia", - "url": "https://sepolia.etherscan.io", - "standard": "EIP3091" + name: "etherscan-sepolia", + url: "https://sepolia.etherscan.io", + standard: "EIP3091", }, { - "name": "otterscan-sepolia", - "url": "https://sepolia.otterscan.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" - } + 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" - } + 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" - } + name: "anduschain explorer", + url: "https://explorer.anduschain.io", + icon: "daon", + standard: "none", + }, ], "16658437": [ { - "name": "piscan", - "url": "https://testnet.plian.org/testnet", - "standard": "EIP3091" - } + name: "piscan", + url: "https://testnet.plian.org/testnet", + standard: "EIP3091", + }, ], "17000920": [ { - "name": "Lambda Chain Testnet Explorer", - "url": "https://testscan.lambda.im", - "standard": "EIP3091" - } + name: "Lambda Chain Testnet Explorer", + url: "https://testscan.lambda.im", + standard: "EIP3091", + }, ], "20180427": [ { - "name": "blockscout", - "url": "https://stability-testnet.blockscout.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://stability-testnet.blockscout.com", + standard: "EIP3091", + }, ], "20180430": [ { - "name": "spectrum", - "url": "https://spectrum.pub", - "standard": "none" - } + name: "spectrum", + url: "https://spectrum.pub", + standard: "none", + }, ], "20181205": [ { - "name": "qkiscan", - "url": "https://qkiscan.io", - "standard": "EIP3091" - } + name: "qkiscan", + url: "https://qkiscan.io", + standard: "EIP3091", + }, ], "20201022": [ { - "name": "Pego Network Explorer", - "url": "https://scan.pego.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Hokum Explorer", + url: "https://testnet-explorer.hokum.gg", + standard: "EIP3091", + }, ], "22052002": [ { - "name": "Excelon explorer", - "url": "https://explorer.excelon.io", - "standard": "EIP3091" - } + name: "Excelon explorer", + url: "https://explorer.excelon.io", + standard: "EIP3091", + }, ], "27082017": [ { - "name": "exlscan", - "url": "https://testnet-explorer.exlscan.com", - "icon": "exl", - "standard": "EIP3091" - } + name: "exlscan", + url: "https://testnet-explorer.exlscan.com", + icon: "exl", + standard: "EIP3091", + }, ], "27082022": [ { - "name": "exlscan", - "url": "https://exlscan.com", - "icon": "exl", - "standard": "EIP3091" - } + name: "exlscan", + url: "https://exlscan.com", + icon: "exl", + standard: "EIP3091", + }, ], "28122024": [ { - "name": "scan-testnet", - "url": "https://scanv2-testnet.ancient8.gg", - "standard": "EIP3091" - } + name: "scan-testnet", + url: "https://scanv2-testnet.ancient8.gg", + standard: "EIP3091", + }, ], "29032022": [ { - "name": "FLXExplorer", - "url": "https://explorer.flaexchange.top", - "standard": "EIP3091" - } + name: "FLXExplorer", + url: "https://explorer.flaexchange.top", + standard: "EIP3091", + }, ], "37084624": [ { - "name": "Blockscout", - "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } + 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" - } + name: "TravelSong", + url: "https://www.beastkingdom.io/travelsong", + standard: "EIP3091", + }, ], "43214913": [ { - "name": "maistesntet", - "url": "http://174.138.9.169:3006/?network=maistesntet", - "standard": "none" - } + name: "maistesntet", + url: "http://174.138.9.169:3006/?network=maistesntet", + standard: "none", + }, ], "65010002": [ { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } + name: "autonity-blockscout", + url: "https://bakerloo.autonity.org", + standard: "EIP3091", + }, ], "65100002": [ { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } + name: "autonity-blockscout", + url: "https://piccadilly.autonity.org", + standard: "EIP3091", + }, ], "68840142": [ { - "name": "Frame Testnet Explorer", - "url": "https://explorer.testnet.frame.xyz", - "standard": "EIP3091" - } + name: "Frame Testnet Explorer", + url: "https://explorer.testnet.frame.xyz", + standard: "EIP3091", + }, ], "77787778": [ { - "name": "blockscout", - "url": "https://test.0xhashscan.io", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://test.0xhashscan.io", + icon: "blockscout", + standard: "EIP3091", + }, ], "88888888": [ { - "name": "teamscan", - "url": "https://teamblockchain.team", - "standard": "EIP3091" - } + name: "teamscan", + url: "https://teamblockchain.team", + standard: "EIP3091", + }, ], "94204209": [ { - "name": "blockscout", - "url": "https://polygon-blackberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://polygon-blackberry.gelatoscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "111557560": [ { - "name": "Cyber Testnet Explorer", - "url": "https://testnet.cyberscan.co", - "standard": "EIP3091" - } + name: "Cyber Testnet Explorer", + url: "https://testnet.cyberscan.co", + standard: "EIP3091", + }, ], "123420111": [ { - "name": "blockscout", - "url": "https://opcelestia-raspberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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://testnet.meldscan.io", + icon: "meld", + standard: "EIP3091", }, { - "name": "explorer", - "url": "https://subnets-test.avax.network/meld", - "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: "neonscan", + url: "https://devnet.neonscan.org", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://neon-devnet.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://neon-devnet.blockscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "245022934": [ { - "name": "neonscan", - "url": "https://neonscan.org", - "standard": "EIP3091" + name: "neonscan", + url: "https://neonscan.org", + standard: "EIP3091", }, { - "name": "native", - "url": "https://neon.blockscout.com", - "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" - } + 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" - } + 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" - } + 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://meldscan.io", + icon: "meld", + standard: "EIP3091", }, { - "name": "explorer", - "url": "https://subnets.avax.network/meld", - "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" - } + name: "Blockscout", + url: "https://testnet-explorer.gather.network", + icon: "gather", + standard: "none", + }, ], "486217935": [ { - "name": "Blockscout", - "url": "https://devnet-explorer.gather.network", - "standard": "none" - } + name: "Blockscout", + url: "https://devnet-explorer.gather.network", + standard: "none", + }, ], "888888888": [ { - "name": "Ancient8 Explorer", - "url": "https://scan.ancient8.gg", - "standard": "EIP3091" - } + name: "Ancient8 Explorer", + url: "https://scan.ancient8.gg", + standard: "EIP3091", + }, ], "889910245": [ { - "name": "PTCESCAN Testnet Explorer", - "url": "https://explorer-testnet.ptcscan.io", - "standard": "EIP3091" - } + name: "PTCESCAN Testnet Explorer", + url: "https://explorer-testnet.ptcscan.io", + standard: "EIP3091", + }, ], "889910246": [ { - "name": "PTCESCAN Explorer", - "url": "https://ptcscan.io", - "standard": "EIP3091" - } + name: "PTCESCAN Explorer", + url: "https://ptcscan.io", + standard: "EIP3091", + }, ], "974399131": [ { - "name": "Blockscout", - "url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "aurorascan.dev", + url: "https://aurorascan.dev", + standard: "EIP3091", + }, ], "1313161555": [ { - "name": "aurorascan.dev", - "url": "https://testnet.aurorascan.dev", - "standard": "EIP3091" - } + name: "aurorascan.dev", + url: "https://testnet.aurorascan.dev", + standard: "EIP3091", + }, ], "1313161560": [ { - "name": "PowerGold explorer", - "url": "https://explorer.powergold.aurora.dev", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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 Scan", + url: "https://sepolia.kakarotscan.org", + standard: "EIP3091", }, { - "name": "Kakarot Explorer", - "url": "https://sepolia-explorer.kakarot.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" - } + 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" - } + 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" - } + name: "OneLedger Block Explorer", + url: "https://frankenstein-explorer.oneledger.network", + standard: "EIP3091", + }, ], "11297108109": [ { - "name": "Chainlens", - "url": "https://palm.chainlens.com", - "standard": "EIP3091" + name: "Chainlens", + url: "https://palm.chainlens.com", + standard: "EIP3091", }, { - "name": "Dora", - "url": "https://www.ondora.xyz/network/palm", - "standard": "none" - } + name: "Dora", + url: "https://www.ondora.xyz/network/palm", + standard: "none", + }, ], "11297108099": [ { - "name": "Chainlens", - "url": "https://testnet.palm.chainlens.com", - "standard": "EIP3091" + name: "Chainlens", + url: "https://testnet.palm.chainlens.com", + standard: "EIP3091", }, { - "name": "Dora", - "url": "https://www.ondora.xyz/network/palm-testnet", - "standard": "none" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://arb-blueberry.gelatoscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "111222333444": [ { - "name": "Alphabet Explorer", - "url": "https://scan.alphabetnetwork.org", - "standard": "EIP3091" - } + name: "Alphabet Explorer", + url: "https://scan.alphabetnetwork.org", + standard: "EIP3091", + }, ], "197710212030": [ { - "name": "Ntity Blockscout", - "url": "https://blockscout.ntity.io", - "icon": "ntity", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "zeniq-smart-chain-explorer", + url: "https://smart.zeniq.net", + standard: "EIP3091", + }, ], "666301171999": [ { - "name": "ipdcscan", - "url": "https://scan.ipdc.io", - "standard": "EIP3091" - } + name: "ipdcscan", + url: "https://scan.ipdc.io", + standard: "EIP3091", + }, ], "2713017997578000": [ { - "name": "dchaint scan", - "url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", - "standard": "EIP3091" - } + 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" - } - ] + name: "dchain scan", + url: "https://dchain-2716446429837000-1.sagaexplorer.io", + standard: "EIP3091", + }, + ], }; export const NETWORK_CURRENCIES = { "1": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2": { - "name": "Expanse Network Ether", - "symbol": "EXP", - "decimals": 18 + name: "Expanse Network Ether", + symbol: "EXP", + decimals: 18, }, "3": { - "name": "Ropsten Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ropsten Ether", + symbol: "ETH", + decimals: 18, }, "4": { - "name": "Rinkeby Ether", - "symbol": "ETH", - "decimals": 18 + name: "Rinkeby Ether", + symbol: "ETH", + decimals: 18, }, "5": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: "Goerli Ether", + symbol: "ETH", + decimals: 18, }, "7": { - "name": "ThaiChain Ether", - "symbol": "TCH", - "decimals": 18 + name: "ThaiChain Ether", + symbol: "TCH", + decimals: 18, }, "8": { - "name": "Ubiq Ether", - "symbol": "UBQ", - "decimals": 18 + name: "Ubiq Ether", + symbol: "UBQ", + decimals: 18, }, "9": { - "name": "Ubiq Testnet Ether", - "symbol": "TUBQ", - "decimals": 18 + name: "Ubiq Testnet Ether", + symbol: "TUBQ", + decimals: 18, }, "10": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "11": { - "name": "Metadium Mainnet Ether", - "symbol": "META", - "decimals": 18 + name: "Metadium Mainnet Ether", + symbol: "META", + decimals: 18, }, "12": { - "name": "Metadium Testnet Ether", - "symbol": "KAL", - "decimals": 18 + name: "Metadium Testnet Ether", + symbol: "KAL", + decimals: 18, }, "13": { - "name": "Staging Diodes", - "symbol": "sDIODE", - "decimals": 18 + name: "Staging Diodes", + symbol: "sDIODE", + decimals: 18, }, "14": { - "name": "Flare", - "symbol": "FLR", - "decimals": 18 + name: "Flare", + symbol: "FLR", + decimals: 18, }, "15": { - "name": "Diodes", - "symbol": "DIODE", - "decimals": 18 + name: "Diodes", + symbol: "DIODE", + decimals: 18, }, "16": { - "name": "Coston Flare", - "symbol": "CFLR", - "decimals": 18 + name: "Coston Flare", + symbol: "CFLR", + decimals: 18, }, "17": { - "name": "Thaifi Ether", - "symbol": "TFI", - "decimals": 18 + name: "Thaifi Ether", + symbol: "TFI", + decimals: 18, }, "18": { - "name": "ThunderCore Testnet Token", - "symbol": "TST", - "decimals": 18 + name: "ThunderCore Testnet Token", + symbol: "TST", + decimals: 18, }, "19": { - "name": "Songbird", - "symbol": "SGB", - "decimals": 18 + name: "Songbird", + symbol: "SGB", + decimals: 18, }, "20": { - "name": "Elastos", - "symbol": "ELA", - "decimals": 18 + name: "Elastos", + symbol: "ELA", + decimals: 18, }, "21": { - "name": "Elastos", - "symbol": "tELA", - "decimals": 18 + name: "Elastos", + symbol: "tELA", + decimals: 18, }, "22": { - "name": "Elastos", - "symbol": "ELA", - "decimals": 18 + name: "Elastos", + symbol: "ELA", + decimals: 18, }, "23": { - "name": "Elastos", - "symbol": "tELA", - "decimals": 18 + name: "Elastos", + symbol: "tELA", + decimals: 18, }, "24": { - "name": "KardiaChain", - "symbol": "KAI", - "decimals": 18 + name: "KardiaChain", + symbol: "KAI", + decimals: 18, }, "25": { - "name": "Cronos", - "symbol": "CRO", - "decimals": 18 + name: "Cronos", + symbol: "CRO", + decimals: 18, }, "26": { - "name": "L1 testcoin", - "symbol": "L1test", - "decimals": 18 + name: "L1 testcoin", + symbol: "L1test", + decimals: 18, }, "27": { - "name": "SHIBA INU COIN", - "symbol": "SHIB", - "decimals": 18 + name: "SHIBA INU COIN", + symbol: "SHIB", + decimals: 18, }, "29": { - "name": "L1 coin", - "symbol": "L1", - "decimals": 18 + name: "L1 coin", + symbol: "L1", + decimals: 18, }, "30": { - "name": "Smart Bitcoin", - "symbol": "RBTC", - "decimals": 18 + name: "Smart Bitcoin", + symbol: "RBTC", + decimals: 18, }, "31": { - "name": "Testnet Smart Bitcoin", - "symbol": "tRBTC", - "decimals": 18 + name: "Testnet Smart Bitcoin", + symbol: "tRBTC", + decimals: 18, }, "32": { - "name": "GoodData Testnet Ether", - "symbol": "GooD", - "decimals": 18 + name: "GoodData Testnet Ether", + symbol: "GooD", + decimals: 18, }, "33": { - "name": "GoodData Mainnet Ether", - "symbol": "GooD", - "decimals": 18 + name: "GoodData Mainnet Ether", + symbol: "GooD", + decimals: 18, }, "34": { - "name": "SecureChain", - "symbol": "SCAI", - "decimals": 18 + name: "SecureChain", + symbol: "SCAI", + decimals: 18, }, "35": { - "name": "TBWG Ether", - "symbol": "TBG", - "decimals": 18 + name: "TBWG Ether", + symbol: "TBG", + decimals: 18, }, "36": { - "name": "Dxchain", - "symbol": "DX", - "decimals": 18 + name: "Dxchain", + symbol: "DX", + decimals: 18, }, "37": { - "name": "XPLA", - "symbol": "XPLA", - "decimals": 18 + name: "XPLA", + symbol: "XPLA", + decimals: 18, }, "38": { - "name": "Valorbit", - "symbol": "VAL", - "decimals": 18 + name: "Valorbit", + symbol: "VAL", + decimals: 18, }, "39": { - "name": "Unicorn Ultra", - "symbol": "U2U", - "decimals": 18 + name: "Unicorn Ultra", + symbol: "U2U", + decimals: 18, }, "40": { - "name": "Telos", - "symbol": "TLOS", - "decimals": 18 + name: "Telos", + symbol: "TLOS", + decimals: 18, }, "41": { - "name": "Telos", - "symbol": "TLOS", - "decimals": 18 + name: "Telos", + symbol: "TLOS", + decimals: 18, }, "42": { - "name": "LUKSO", - "symbol": "LYX", - "decimals": 18 + name: "LUKSO", + symbol: "LYX", + decimals: 18, }, "43": { - "name": "Pangolin Network Native Token", - "symbol": "PRING", - "decimals": 18 + name: "Pangolin Network Native Token", + symbol: "PRING", + decimals: 18, }, "44": { - "name": "Crab Network Native Token", - "symbol": "CRAB", - "decimals": 18 + name: "Crab Network Native Token", + symbol: "CRAB", + decimals: 18, }, "45": { - "name": "Pangoro Network Native Token", - "symbol": "ORING", - "decimals": 18 + name: "Pangoro Network Native Token", + symbol: "ORING", + decimals: 18, }, "46": { - "name": "Darwinia Network Native Token", - "symbol": "RING", - "decimals": 18 + name: "Darwinia Network Native Token", + symbol: "RING", + decimals: 18, }, "47": { - "name": "ACRIA", - "symbol": "ACRIA", - "decimals": 18 + name: "ACRIA", + symbol: "ACRIA", + decimals: 18, }, "48": { - "name": "Ennothem", - "symbol": "ETMP", - "decimals": 18 + name: "Ennothem", + symbol: "ETMP", + decimals: 18, }, "49": { - "name": "Ennothem", - "symbol": "ETMP", - "decimals": 18 + name: "Ennothem", + symbol: "ETMP", + decimals: 18, }, "50": { - "name": "XinFin", - "symbol": "XDC", - "decimals": 18 + name: "XinFin", + symbol: "XDC", + decimals: 18, }, "51": { - "name": "XinFin", - "symbol": "TXDC", - "decimals": 18 + name: "XinFin", + symbol: "TXDC", + decimals: 18, }, "52": { - "name": "CoinEx Chain Native Token", - "symbol": "cet", - "decimals": 18 + name: "CoinEx Chain Native Token", + symbol: "cet", + decimals: 18, }, "53": { - "name": "CoinEx Chain Test Native Token", - "symbol": "cett", - "decimals": 18 + name: "CoinEx Chain Test Native Token", + symbol: "cett", + decimals: 18, }, "54": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 + name: "Belly", + symbol: "BELLY", + decimals: 18, }, "55": { - "name": "Zyx", - "symbol": "ZYX", - "decimals": 18 + name: "Zyx", + symbol: "ZYX", + decimals: 18, }, "56": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "BNB", + decimals: 18, }, "57": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 + name: "Syscoin", + symbol: "SYS", + decimals: 18, }, "58": { - "name": "ONG", - "symbol": "ONG", - "decimals": 18 + name: "ONG", + symbol: "ONG", + decimals: 18, }, "60": { - "name": "GoChain Ether", - "symbol": "GO", - "decimals": 18 + name: "GoChain Ether", + symbol: "GO", + decimals: 18, }, "61": { - "name": "Ether", - "symbol": "ETC", - "decimals": 18 + name: "Ether", + symbol: "ETC", + decimals: 18, }, "63": { - "name": "Mordor Ether", - "symbol": "METC", - "decimals": 18 + name: "Mordor Ether", + symbol: "METC", + decimals: 18, }, "64": { - "name": "Ellaism Ether", - "symbol": "ELLA", - "decimals": 18 + name: "Ellaism Ether", + symbol: "ELLA", + decimals: 18, }, "65": { - "name": "OKExChain Global Utility Token in testnet", - "symbol": "OKT", - "decimals": 18 + name: "OKExChain Global Utility Token in testnet", + symbol: "OKT", + decimals: 18, }, "66": { - "name": "OKXChain Global Utility Token", - "symbol": "OKT", - "decimals": 18 + name: "OKXChain Global Utility Token", + symbol: "OKT", + decimals: 18, }, "67": { - "name": "DBChain Testnet", - "symbol": "DBM", - "decimals": 18 + name: "DBChain Testnet", + symbol: "DBM", + decimals: 18, }, "68": { - "name": "SoterOne Mainnet Ether", - "symbol": "SOTER", - "decimals": 18 + name: "SoterOne Mainnet Ether", + symbol: "SOTER", + decimals: 18, }, "69": { - "name": "Kovan Ether", - "symbol": "ETH", - "decimals": 18 + name: "Kovan Ether", + symbol: "ETH", + decimals: 18, }, "70": { - "name": "Hoo Smart Chain Native Token", - "symbol": "HOO", - "decimals": 18 + name: "Hoo Smart Chain Native Token", + symbol: "HOO", + decimals: 18, }, "71": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 + name: "CFX", + symbol: "CFX", + decimals: 18, }, "72": { - "name": "DxChain Testnet", - "symbol": "DX", - "decimals": 18 + name: "DxChain Testnet", + symbol: "DX", + decimals: 18, }, "73": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 + name: "FNCY", + symbol: "FNCY", + decimals: 18, }, "74": { - "name": "EIDI", - "symbol": "EIDI", - "decimals": 18 + name: "EIDI", + symbol: "EIDI", + decimals: 18, }, "75": { - "name": "Decimal", - "symbol": "DEL", - "decimals": 18 + name: "Decimal", + symbol: "DEL", + decimals: 18, }, "76": { - "name": "Mix Ether", - "symbol": "MIX", - "decimals": 18 + name: "Mix Ether", + symbol: "MIX", + decimals: 18, }, "77": { - "name": "POA Sokol Ether", - "symbol": "SPOA", - "decimals": 18 + name: "POA Sokol Ether", + symbol: "SPOA", + decimals: 18, }, "78": { - "name": "Primus Ether", - "symbol": "PETH", - "decimals": 18 + name: "Primus Ether", + symbol: "PETH", + decimals: 18, }, "79": { - "name": "ZENITH", - "symbol": "ZENITH", - "decimals": 18 + name: "ZENITH", + symbol: "ZENITH", + decimals: 18, }, "80": { - "name": "RNA", - "symbol": "RNA", - "decimals": 18 + name: "RNA", + symbol: "RNA", + decimals: 18, }, "81": { - "name": "Japan Open Chain Token", - "symbol": "JOC", - "decimals": 18 + name: "Japan Open Chain Token", + symbol: "JOC", + decimals: 18, }, "82": { - "name": "Meter", - "symbol": "MTR", - "decimals": 18 + name: "Meter", + symbol: "MTR", + decimals: 18, }, "83": { - "name": "Meter", - "symbol": "MTR", - "decimals": 18 + name: "Meter", + symbol: "MTR", + decimals: 18, }, "84": { - "name": "XRP", - "symbol": "XRP", - "decimals": 18 + name: "XRP", + symbol: "XRP", + decimals: 18, }, "85": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 + name: "GateToken", + symbol: "GT", + decimals: 18, }, "86": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 + name: "GateToken", + symbol: "GT", + decimals: 18, }, "87": { - "name": "Supernova", - "symbol": "SNT", - "decimals": 18 + name: "Supernova", + symbol: "SNT", + decimals: 18, }, "88": { - "name": "Viction", - "symbol": "VIC", - "decimals": 18 + name: "Viction", + symbol: "VIC", + decimals: 18, }, "89": { - "name": "Viction", - "symbol": "VIC", - "decimals": 18 + name: "Viction", + symbol: "VIC", + decimals: 18, }, "90": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "91": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "92": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "93": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "94": { - "name": "BCTS", - "symbol": "BCTS", - "decimals": 18 + name: "BCTS", + symbol: "BCTS", + decimals: 18, }, "95": { - "name": "CADL", - "symbol": "CADL", - "decimals": 18 + name: "CADL", + symbol: "CADL", + decimals: 18, }, "96": { - "name": "Bitkub Coin", - "symbol": "KUB", - "decimals": 18 + name: "Bitkub Coin", + symbol: "KUB", + decimals: 18, }, "97": { - "name": "BNB Chain Native Token", - "symbol": "tBNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "tBNB", + decimals: 18, }, "98": { - "name": "SIX evm token", - "symbol": "SIX", - "decimals": 18 + name: "SIX evm token", + symbol: "SIX", + decimals: 18, }, "99": { - "name": "POA Network Core Ether", - "symbol": "POA", - "decimals": 18 + name: "POA Network Core Ether", + symbol: "POA", + decimals: 18, }, "100": { - "name": "xDAI", - "symbol": "XDAI", - "decimals": 18 + name: "xDAI", + symbol: "XDAI", + decimals: 18, }, "101": { - "name": "EtherInc Ether", - "symbol": "ETI", - "decimals": 18 + name: "EtherInc Ether", + symbol: "ETI", + decimals: 18, }, "102": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 + name: "Web3Games", + symbol: "W3G", + decimals: 18, }, "103": { - "name": "Worldland", - "symbol": "WLC", - "decimals": 18 + name: "Worldland", + symbol: "WLC", + decimals: 18, }, "104": { - "name": "Kaiba Testnet Token", - "symbol": "tKAIBA", - "decimals": 18 + name: "Kaiba Testnet Token", + symbol: "tKAIBA", + decimals: 18, }, "105": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 + name: "Web3Games", + symbol: "W3G", + decimals: 18, }, "106": { - "name": "Velas", - "symbol": "VLX", - "decimals": 18 + name: "Velas", + symbol: "VLX", + decimals: 18, }, "107": { - "name": "Nebula X", - "symbol": "NBX", - "decimals": 18 + name: "Nebula X", + symbol: "NBX", + decimals: 18, }, "108": { - "name": "ThunderCore Token", - "symbol": "TT", - "decimals": 18 + name: "ThunderCore Token", + symbol: "TT", + decimals: 18, }, "109": { - "name": "BONE Shibarium", - "symbol": "BONE", - "decimals": 18 + name: "BONE Shibarium", + symbol: "BONE", + decimals: 18, }, "110": { - "name": "Proton", - "symbol": "XPR", - "decimals": 4 + name: "Proton", + symbol: "XPR", + decimals: 4, }, "111": { - "name": "EtherLite", - "symbol": "ETL", - "decimals": 18 + name: "EtherLite", + symbol: "ETL", + decimals: 18, }, "112": { - "name": "Gas IDR", - "symbol": "GIDR", - "decimals": 18 + name: "Gas IDR", + symbol: "GIDR", + decimals: 18, }, "113": { - "name": "Dehvo", - "symbol": "Deh", - "decimals": 18 + name: "Dehvo", + symbol: "Deh", + decimals: 18, }, "114": { - "name": "Coston2 Flare", - "symbol": "C2FLR", - "decimals": 18 + name: "Coston2 Flare", + symbol: "C2FLR", + decimals: 18, }, "117": { - "name": "Uptick", - "symbol": "UPTICK", - "decimals": 18 + name: "Uptick", + symbol: "UPTICK", + decimals: 18, }, "118": { - "name": "Arcology Coin", - "symbol": "Acol", - "decimals": 18 + name: "Arcology Coin", + symbol: "Acol", + decimals: 18, }, "119": { - "name": "NULS", - "symbol": "NULS", - "decimals": 18 + name: "NULS", + symbol: "NULS", + decimals: 18, }, "120": { - "name": "NULS", - "symbol": "NULS", - "decimals": 18 + name: "NULS", + symbol: "NULS", + decimals: 18, }, "121": { - "name": "Realchain", - "symbol": "REAL", - "decimals": 18 + name: "Realchain", + symbol: "REAL", + decimals: 18, }, "122": { - "name": "Fuse", - "symbol": "FUSE", - "decimals": 18 + name: "Fuse", + symbol: "FUSE", + decimals: 18, }, "123": { - "name": "Spark", - "symbol": "SPARK", - "decimals": 18 + name: "Spark", + symbol: "SPARK", + decimals: 18, }, "124": { - "name": "Decentralized Web Utility", - "symbol": "DWU", - "decimals": 18 + name: "Decentralized Web Utility", + symbol: "DWU", + decimals: 18, }, "125": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 + name: "OYchain Token", + symbol: "OY", + decimals: 18, }, "126": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 + name: "OYchain Token", + symbol: "OY", + decimals: 18, }, "127": { - "name": "Factory 127 Token", - "symbol": "FETH", - "decimals": 18 + name: "Factory 127 Token", + symbol: "FETH", + decimals: 18, }, "128": { - "name": "Huobi ECO Chain Native Token", - "symbol": "HT", - "decimals": 18 + name: "Huobi ECO Chain Native Token", + symbol: "HT", + decimals: 18, }, "129": { - "name": "INOV8", - "symbol": "INOV8", - "decimals": 18 + name: "INOV8", + symbol: "INOV8", + decimals: 18, }, "131": { - "name": "Engram Tokio Testnet", - "symbol": "tGRAM", - "decimals": 18 + name: "Engram Tokio Testnet", + symbol: "tGRAM", + decimals: 18, }, "132": { - "name": "Namefi Coin", - "symbol": "NFIC", - "decimals": 18 + name: "Namefi Coin", + symbol: "NFIC", + decimals: 18, }, "133": { - "name": "HashKey EcoPoints", - "symbol": "HSK", - "decimals": 18 + name: "HashKey EcoPoints", + symbol: "HSK", + decimals: 18, }, "134": { - "name": "xRLC", - "symbol": "xRLC", - "decimals": 18 + name: "xRLC", + symbol: "xRLC", + decimals: 18, }, "135": { - "name": "Alyx Testnet Native Token", - "symbol": "ALYX", - "decimals": 18 + name: "Alyx Testnet Native Token", + symbol: "ALYX", + decimals: 18, }, "136": { - "name": "Deamchain Native Token", - "symbol": "DEAM", - "decimals": 18 + name: "Deamchain Native Token", + symbol: "DEAM", + decimals: 18, }, "137": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: "MATIC", + symbol: "MATIC", + decimals: 18, }, "138": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "139": { - "name": "WoopCoin", - "symbol": "WOOC", - "decimals": 18 + name: "WoopCoin", + symbol: "WOOC", + decimals: 18, }, "140": { - "name": "Eternal", - "symbol": "Eter", - "decimals": 18 + name: "Eternal", + symbol: "Eter", + decimals: 18, }, "141": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 + name: "Belly", + symbol: "BELLY", + decimals: 18, }, "142": { - "name": "Prodax", - "symbol": "DAX", - "decimals": 18 + name: "Prodax", + symbol: "DAX", + decimals: 18, }, "144": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 + name: "PHI", + symbol: "Φ", + decimals: 18, }, "145": { - "name": "SoraETH", - "symbol": "SETH", - "decimals": 18 + name: "SoraETH", + symbol: "SETH", + decimals: 18, }, "147": { - "name": "Flag", - "symbol": "FLAG", - "decimals": 18 + name: "Flag", + symbol: "FLAG", + decimals: 18, }, "148": { - "name": "SMR", - "symbol": "SMR", - "decimals": 18 + name: "SMR", + symbol: "SMR", + decimals: 18, }, "150": { - "name": "SIX testnet evm token", - "symbol": "tSIX", - "decimals": 18 + name: "SIX testnet evm token", + symbol: "tSIX", + decimals: 18, }, "151": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 + name: "Redbelly Network Coin", + symbol: "RBNT", + decimals: 18, }, "152": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 + name: "Redbelly Network Coin", + symbol: "RBNT", + decimals: 18, }, "153": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 + name: "Redbelly Network Coin", + symbol: "RBNT", + decimals: 18, }, "154": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 + name: "Redbelly Network Coin", + symbol: "RBNT", + decimals: 18, }, "155": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 + name: "TENET", + symbol: "TENET", + decimals: 18, }, "156": { - "name": "OEBlock", - "symbol": "OEB", - "decimals": 18 + name: "OEBlock", + symbol: "OEB", + decimals: 18, }, "157": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 + name: "BONE", + symbol: "BONE", + decimals: 18, }, "158": { - "name": "Roburna", - "symbol": "RBA", - "decimals": 18 + name: "Roburna", + symbol: "RBA", + decimals: 18, }, "159": { - "name": "Roburna", - "symbol": "RBAT", - "decimals": 18 + name: "Roburna", + symbol: "RBAT", + decimals: 18, }, "160": { - "name": "Armonia Multichain Native Token", - "symbol": "AMAX", - "decimals": 18 + name: "Armonia Multichain Native Token", + symbol: "AMAX", + decimals: 18, }, "161": { - "name": "Armonia Multichain Native Token", - "symbol": "AMAX", - "decimals": 18 + name: "Armonia Multichain Native Token", + symbol: "AMAX", + decimals: 18, }, "162": { - "name": "Lightstreams PHT", - "symbol": "PHT", - "decimals": 18 + name: "Lightstreams PHT", + symbol: "PHT", + decimals: 18, }, "163": { - "name": "Lightstreams PHT", - "symbol": "PHT", - "decimals": 18 + name: "Lightstreams PHT", + symbol: "PHT", + decimals: 18, }, "164": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 + name: "Omni", + symbol: "OMNI", + decimals: 18, }, "166": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 + name: "Omni", + symbol: "OMNI", + decimals: 18, }, "167": { - "name": "ATOSHI", - "symbol": "ATOS", - "decimals": 18 + name: "ATOSHI", + symbol: "ATOS", + decimals: 18, }, "168": { - "name": "AIOZ", - "symbol": "AIOZ", - "decimals": 18 + name: "AIOZ", + symbol: "AIOZ", + decimals: 18, }, "169": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "170": { - "name": "HOO", - "symbol": "HOO", - "decimals": 18 + name: "HOO", + symbol: "HOO", + decimals: 18, }, "172": { - "name": "Latam-Blockchain Resil Test Native Token", - "symbol": "usd", - "decimals": 18 + name: "Latam-Blockchain Resil Test Native Token", + symbol: "usd", + decimals: 18, }, "176": { - "name": "DC Native Token", - "symbol": "DCT", - "decimals": 18 + name: "DC Native Token", + symbol: "DCT", + decimals: 18, }, "180": { - "name": "AME", - "symbol": "AME", - "decimals": 18 + name: "AME", + symbol: "AME", + decimals: 18, }, "181": { - "name": "WATER", - "symbol": "WATER", - "decimals": 18 + name: "WATER", + symbol: "WATER", + decimals: 18, }, "185": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "186": { - "name": "Seele", - "symbol": "Seele", - "decimals": 18 + name: "Seele", + symbol: "Seele", + decimals: 18, }, "188": { - "name": "BTM", - "symbol": "BTM", - "decimals": 18 + name: "BTM", + symbol: "BTM", + decimals: 18, }, "189": { - "name": "BTM", - "symbol": "BTM", - "decimals": 18 + name: "BTM", + symbol: "BTM", + decimals: 18, }, "191": { - "name": "FFG", - "symbol": "FFG", - "decimals": 18 + name: "FFG", + symbol: "FFG", + decimals: 18, }, "193": { - "name": "Crypto Emergency", - "symbol": "CEM", - "decimals": 18 + name: "Crypto Emergency", + symbol: "CEM", + decimals: 18, }, "195": { - "name": "X Layer Global Utility Token in testnet", - "symbol": "OKB", - "decimals": 18 + name: "X Layer Global Utility Token in testnet", + symbol: "OKB", + decimals: 18, }, "196": { - "name": "X Layer Global Utility Token", - "symbol": "OKB", - "decimals": 18 + name: "X Layer Global Utility Token", + symbol: "OKB", + decimals: 18, }, "197": { - "name": "Neutrinos", - "symbol": "NEUTR", - "decimals": 18 + name: "Neutrinos", + symbol: "NEUTR", + decimals: 18, }, "198": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "199": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 + name: "BitTorrent", + symbol: "BTT", + decimals: 18, }, "200": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 + name: "xDAI", + symbol: "xDAI", + decimals: 18, }, "201": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 + name: "MOAC", + symbol: "mc", + decimals: 18, }, "202": { - "name": "Edgeless Wrapped Eth", - "symbol": "EwEth", - "decimals": 18 + name: "Edgeless Wrapped Eth", + symbol: "EwEth", + decimals: 18, }, "204": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "BNB", + decimals: 18, }, "206": { - "name": "VinuChain", - "symbol": "VC", - "decimals": 18 + name: "VinuChain", + symbol: "VC", + decimals: 18, }, "207": { - "name": "VinuChain", - "symbol": "VC", - "decimals": 18 + name: "VinuChain", + symbol: "VC", + decimals: 18, }, "208": { - "name": "Notes", - "symbol": "utx", - "decimals": 18 + name: "Notes", + symbol: "utx", + decimals: 18, }, "210": { - "name": "Bitnet", - "symbol": "BTN", - "decimals": 18 + name: "Bitnet", + symbol: "BTN", + decimals: 18, }, "211": { - "name": "Freight Trust Native", - "symbol": "0xF", - "decimals": 18 + name: "Freight Trust Native", + symbol: "0xF", + decimals: 18, }, "212": { - "name": "Makalu MAPO", - "symbol": "MAPO", - "decimals": 18 + name: "Makalu MAPO", + symbol: "MAPO", + decimals: 18, }, "213": { - "name": "BSquared Token", - "symbol": "B2", - "decimals": 18 + name: "BSquared Token", + symbol: "B2", + decimals: 18, }, "214": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 + name: "Shina Inu", + symbol: "SHI", + decimals: 18, }, "217": { - "name": "MCD", - "symbol": "MCD", - "decimals": 18 + name: "MCD", + symbol: "MCD", + decimals: 18, }, "220": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "223": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "224": { - "name": "Viridis Token", - "symbol": "VRD", - "decimals": 18 + name: "Viridis Token", + symbol: "VRD", + decimals: 18, }, "225": { - "name": "LA", - "symbol": "LA", - "decimals": 18 + name: "LA", + symbol: "LA", + decimals: 18, }, "226": { - "name": "TLA", - "symbol": "TLA", - "decimals": 18 + name: "TLA", + symbol: "TLA", + decimals: 18, }, "228": { - "name": "FHE", - "symbol": "FHE", - "decimals": 18 + name: "FHE", + symbol: "FHE", + decimals: 18, }, "230": { - "name": "SwapDEX", - "symbol": "SDX", - "decimals": 18 + name: "SwapDEX", + symbol: "SDX", + decimals: 18, }, "234": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 + name: "JNFTC", + symbol: "JNFTC", + decimals: 18, }, "236": { - "name": "Deamchain Native Token", - "symbol": "DEAM", - "decimals": 18 + name: "Deamchain Native Token", + symbol: "DEAM", + decimals: 18, }, "242": { - "name": "Plinga", - "symbol": "PLINGA", - "decimals": 18 + name: "Plinga", + symbol: "PLINGA", + decimals: 18, }, "246": { - "name": "Energy Web Token", - "symbol": "EWT", - "decimals": 18 + name: "Energy Web Token", + symbol: "EWT", + decimals: 18, }, "248": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "250": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 + name: "Fantom", + symbol: "FTM", + decimals: 18, }, "252": { - "name": "Frax Ether", - "symbol": "frxETH", - "decimals": 18 + name: "Frax Ether", + symbol: "frxETH", + decimals: 18, }, "255": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "256": { - "name": "Huobi ECO Chain Test Native Token", - "symbol": "htt", - "decimals": 18 + name: "Huobi ECO Chain Test Native Token", + symbol: "htt", + decimals: 18, }, "258": { - "name": "Setheum", - "symbol": "SETM", - "decimals": 18 + name: "Setheum", + symbol: "SETM", + decimals: 18, }, "259": { - "name": "Neonlink Native Token", - "symbol": "NEON", - "decimals": 18 + name: "Neonlink Native Token", + symbol: "NEON", + decimals: 18, }, "262": { - "name": "Suren", - "symbol": "SRN", - "decimals": 18 + name: "Suren", + symbol: "SRN", + decimals: 18, }, "266": { - "name": "Ankr", - "symbol": "ANKR", - "decimals": 18 + name: "Ankr", + symbol: "ANKR", + decimals: 18, }, "267": { - "name": "Testnet Ankr", - "symbol": "ANKR", - "decimals": 18 + name: "Testnet Ankr", + symbol: "ANKR", + decimals: 18, }, "268": { - "name": "Devnet Ankr", - "symbol": "ANKR", - "decimals": 18 + name: "Devnet Ankr", + symbol: "ANKR", + decimals: 18, }, "269": { - "name": "High Performance Blockchain Ether", - "symbol": "HPB", - "decimals": 18 + name: "High Performance Blockchain Ether", + symbol: "HPB", + decimals: 18, }, "271": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 + name: "EgonCoin", + symbol: "EGON", + decimals: 18, }, "274": { - "name": "LaCoin", - "symbol": "LAC", - "decimals": 18 + name: "LaCoin", + symbol: "LAC", + decimals: 18, }, "278": { - "name": "FAI", - "symbol": "FAI", - "decimals": 18 + name: "FAI", + symbol: "FAI", + decimals: 18, }, "279": { - "name": "BPX", - "symbol": "BPX", - "decimals": 18 + name: "BPX", + symbol: "BPX", + decimals: 18, }, "282": { - "name": "Cronos zkEVM Test Coin", - "symbol": "zkTCRO", - "decimals": 18 + name: "Cronos zkEVM Test Coin", + symbol: "zkTCRO", + decimals: 18, }, "288": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "291": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "295": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 18 + name: "hbar", + symbol: "HBAR", + decimals: 18, }, "296": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 18 + name: "hbar", + symbol: "HBAR", + decimals: 18, }, "297": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 18 + name: "hbar", + symbol: "HBAR", + decimals: 18, }, "298": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 18 + name: "hbar", + symbol: "HBAR", + decimals: 18, }, "300": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "302": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "303": { - "name": "Neurochain", - "symbol": "tNCN", - "decimals": 18 + name: "Neurochain", + symbol: "tNCN", + decimals: 18, }, "305": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "307": { - "name": "Lovely", - "symbol": "LOVELY", - "decimals": 18 + name: "Lovely", + symbol: "LOVELY", + decimals: 18, }, "308": { - "name": "Furtheon", - "symbol": "FTH", - "decimals": 18 + name: "Furtheon", + symbol: "FTH", + decimals: 18, }, "309": { - "name": "Wyzth", - "symbol": "WYZ", - "decimals": 18 + name: "Wyzth", + symbol: "WYZ", + decimals: 18, }, "311": { - "name": "OMAX COIN", - "symbol": "OMAX", - "decimals": 18 + name: "OMAX COIN", + symbol: "OMAX", + decimals: 18, }, "313": { - "name": "Neurochain", - "symbol": "NCN", - "decimals": 18 + name: "Neurochain", + symbol: "NCN", + decimals: 18, }, "314": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 + name: "filecoin", + symbol: "FIL", + decimals: 18, }, "321": { - "name": "KuCoin Token", - "symbol": "KCS", - "decimals": 18 + name: "KuCoin Token", + symbol: "KCS", + decimals: 18, }, "322": { - "name": "KuCoin Testnet Token", - "symbol": "tKCS", - "decimals": 18 + name: "KuCoin Testnet Token", + symbol: "tKCS", + decimals: 18, }, "323": { - "name": "Cosvm", - "symbol": "CVM", - "decimals": 18 + name: "Cosvm", + symbol: "CVM", + decimals: 18, }, "324": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "333": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 + name: "Web3Q", + symbol: "W3Q", + decimals: 18, }, "335": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 + name: "Jewel", + symbol: "JEWEL", + decimals: 18, }, "336": { - "name": "Shiden", - "symbol": "SDN", - "decimals": 18 + name: "Shiden", + symbol: "SDN", + decimals: 18, }, "338": { - "name": "Cronos Test Coin", - "symbol": "TCRO", - "decimals": 18 + name: "Cronos Test Coin", + symbol: "TCRO", + decimals: 18, }, "345": { - "name": "TAS", - "symbol": "TAS", - "decimals": 18 + name: "TAS", + symbol: "TAS", + decimals: 18, }, "361": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 + name: "Theta Fuel", + symbol: "TFUEL", + decimals: 18, }, "363": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 + name: "Theta Fuel", + symbol: "TFUEL", + decimals: 18, }, "364": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 + name: "Theta Fuel", + symbol: "TFUEL", + decimals: 18, }, "365": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 + name: "Theta Fuel", + symbol: "TFUEL", + decimals: 18, }, "369": { - "name": "Pulse", - "symbol": "PLS", - "decimals": 18 + name: "Pulse", + symbol: "PLS", + decimals: 18, }, "371": { - "name": "tCNT", - "symbol": "tCNT", - "decimals": 18 + name: "tCNT", + symbol: "tCNT", + decimals: 18, }, "380": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 + name: "filecoin", + symbol: "FIL", + decimals: 18, }, "381": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 + name: "filecoin", + symbol: "FIL", + decimals: 18, }, "385": { - "name": "Lisinski Ether", - "symbol": "LISINS", - "decimals": 18 + name: "Lisinski Ether", + symbol: "LISINS", + decimals: 18, }, "395": { - "name": "CADL", - "symbol": "CADL", - "decimals": 18 + name: "CADL", + symbol: "CADL", + decimals: 18, }, "397": { - "name": "NEAR", - "symbol": "NEAR", - "decimals": 18 + name: "NEAR", + symbol: "NEAR", + decimals: 18, }, "398": { - "name": "Testnet NEAR", - "symbol": "NEAR", - "decimals": 18 + name: "Testnet NEAR", + symbol: "NEAR", + decimals: 18, }, "399": { - "name": "USNT", - "symbol": "USNT", - "decimals": 18 + name: "USNT", + symbol: "USNT", + decimals: 18, }, "400": { - "name": "HyperonChain", - "symbol": "HPN", - "decimals": 18 + name: "HyperonChain", + symbol: "HPN", + decimals: 18, }, "401": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 + name: "OZONE", + symbol: "OZO", + decimals: 18, }, "404": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "411": { - "name": "Pepe", - "symbol": "PEPE", - "decimals": 18 + name: "Pepe", + symbol: "PEPE", + decimals: 18, }, "416": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 + name: "SX Network", + symbol: "SX", + decimals: 18, }, "418": { - "name": "Test LaCoin", - "symbol": "TLA", - "decimals": 18 + name: "Test LaCoin", + symbol: "TLA", + decimals: 18, }, "420": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: "Goerli Ether", + symbol: "ETH", + decimals: 18, }, "422": { - "name": "Viridis Token", - "symbol": "VRD", - "decimals": 18 + name: "Viridis Token", + symbol: "VRD", + decimals: 18, }, "424": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "427": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 + name: "Zeeth Token", + symbol: "ZTH", + decimals: 18, }, "428": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "434": { - "name": "Boyaa mainnet native coin", - "symbol": "BYC", - "decimals": 18 + name: "Boyaa mainnet native coin", + symbol: "BYC", + decimals: 18, }, "443": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "444": { - "name": "Sepolia ETH", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia ETH", + symbol: "ETH", + decimals: 18, }, "456": { - "name": "ARZIO", - "symbol": "AZO", - "decimals": 18 + name: "ARZIO", + symbol: "AZO", + decimals: 18, }, "462": { - "name": "Areon", - "symbol": "TAREA", - "decimals": 18 + name: "Areon", + symbol: "TAREA", + decimals: 18, }, "463": { - "name": "Areon", - "symbol": "AREA", - "decimals": 18 + name: "Areon", + symbol: "AREA", + decimals: 18, }, "499": { - "name": "Rupaya", - "symbol": "RUPX", - "decimals": 18 + name: "Rupaya", + symbol: "RUPX", + decimals: 18, }, "500": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 + name: "Camino", + symbol: "CAM", + decimals: 18, }, "501": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 + name: "Camino", + symbol: "CAM", + decimals: 18, }, "510": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "512": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 + name: "Acuteangle Native Token", + symbol: "AAC", + decimals: 18, }, "513": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 + name: "Acuteangle Native Token", + symbol: "AAC", + decimals: 18, }, "516": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 + name: "Gear Zero Network Native Token", + symbol: "GZN", + decimals: 18, }, "520": { - "name": "XT Smart Chain Native Token", - "symbol": "XT", - "decimals": 18 + name: "XT Smart Chain Native Token", + symbol: "XT", + decimals: 18, }, "529": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 + name: "Firechain", + symbol: "FIRE", + decimals: 18, }, "530": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 + name: "Function X", + symbol: "FX", + decimals: 18, }, "534": { - "name": "CANDLE", - "symbol": "CNDL", - "decimals": 18 + name: "CANDLE", + symbol: "CNDL", + decimals: 18, }, "537": { - "name": "BSC", - "symbol": "BNB", - "decimals": 18 + name: "BSC", + symbol: "BNB", + decimals: 18, }, "542": { - "name": "PAW", - "symbol": "PAW", - "decimals": 18 + name: "PAW", + symbol: "PAW", + decimals: 18, }, "545": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 + name: "FLOW", + symbol: "FLOW", + decimals: 18, }, "555": { - "name": "CLASS COIN", - "symbol": "CLASS", - "decimals": 18 + name: "CLASS COIN", + symbol: "CLASS", + decimals: 18, }, "558": { - "name": "Tao", - "symbol": "TAO", - "decimals": 18 + name: "Tao", + symbol: "TAO", + decimals: 18, }, "568": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 + name: "Dogecoin", + symbol: "DOGE", + decimals: 18, }, "570": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 + name: "Syscoin", + symbol: "SYS", + decimals: 18, }, "571": { - "name": "Metatime Coin", - "symbol": "MTC", - "decimals": 18 + name: "Metatime Coin", + symbol: "MTC", + decimals: 18, }, "579": { - "name": "Filecoin", - "symbol": "FIL", - "decimals": 18 + name: "Filecoin", + symbol: "FIL", + decimals: 18, }, "592": { - "name": "Astar", - "symbol": "ASTR", - "decimals": 18 + name: "Astar", + symbol: "ASTR", + decimals: 18, }, "595": { - "name": "Acala Mandala Token", - "symbol": "mACA", - "decimals": 18 + name: "Acala Mandala Token", + symbol: "mACA", + decimals: 18, }, "596": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 + name: "Karura Token", + symbol: "KAR", + decimals: 18, }, "597": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 + name: "Acala Token", + symbol: "ACA", + decimals: 18, }, "600": { - "name": "Meshnyan Testnet Native Token", - "symbol": "MESHT", - "decimals": 18 + name: "Meshnyan Testnet Native Token", + symbol: "MESHT", + decimals: 18, }, "601": { - "name": "VINE", - "symbol": "VNE", - "decimals": 18 + name: "VINE", + symbol: "VNE", + decimals: 18, }, "612": { - "name": "EIOB", - "symbol": "EIOB", - "decimals": 18 + name: "EIOB", + symbol: "EIOB", + decimals: 18, }, "614": { - "name": "GLQ", - "symbol": "GLQ", - "decimals": 18 + name: "GLQ", + symbol: "GLQ", + decimals: 18, }, "634": { - "name": "USDC", - "symbol": "USDC", - "decimals": 18 + name: "USDC", + symbol: "USDC", + decimals: 18, }, "646": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 + name: "FLOW", + symbol: "FLOW", + decimals: 18, }, "647": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 + name: "SX Network", + symbol: "SX", + decimals: 18, }, "648": { - "name": "Endurance Chain Native Token", - "symbol": "ACE", - "decimals": 18 + name: "Endurance Chain Native Token", + symbol: "ACE", + decimals: 18, }, "653": { - "name": "kalis", - "symbol": "KALIS", - "decimals": 18 + name: "kalis", + symbol: "KALIS", + decimals: 18, }, "654": { - "name": "kalis", - "symbol": "KALIS", - "decimals": 18 + name: "kalis", + symbol: "KALIS", + decimals: 18, }, "662": { - "name": "ulc", - "symbol": "ULC", - "decimals": 18 + name: "ulc", + symbol: "ULC", + decimals: 18, }, "666": { - "name": "Pixie Chain Testnet Native Token", - "symbol": "PCTT", - "decimals": 18 + name: "Pixie Chain Testnet Native Token", + symbol: "PCTT", + decimals: 18, }, "667": { - "name": "LAOS", - "symbol": "LAOS", - "decimals": 18 + name: "LAOS", + symbol: "LAOS", + decimals: 18, }, "668": { - "name": "JuncaChain Native Token", - "symbol": "JGC", - "decimals": 18 + name: "JuncaChain Native Token", + symbol: "JGC", + decimals: 18, }, "669": { - "name": "JuncaChain Testnet Native Token", - "symbol": "JGCT", - "decimals": 18 + name: "JuncaChain Testnet Native Token", + symbol: "JGCT", + decimals: 18, }, "686": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 + name: "Karura Token", + symbol: "KAR", + decimals: 18, }, "690": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "700": { - "name": "Social", - "symbol": "SNS", - "decimals": 18 + name: "Social", + symbol: "SNS", + decimals: 18, }, "701": { - "name": "Koi Network Native Token", - "symbol": "KRING", - "decimals": 18 + name: "Koi Network Native Token", + symbol: "KRING", + decimals: 18, }, "707": { - "name": "BCS Token", - "symbol": "BCS", - "decimals": 18 + name: "BCS Token", + symbol: "BCS", + decimals: 18, }, "708": { - "name": "BCS Testnet Token", - "symbol": "tBCS", - "decimals": 18 + name: "BCS Testnet Token", + symbol: "tBCS", + decimals: 18, }, "710": { - "name": "Fury", - "symbol": "FURY", - "decimals": 18 + name: "Fury", + symbol: "FURY", + decimals: 18, }, "713": { - "name": "VRC Chain", - "symbol": "VRC", - "decimals": 18 + name: "VRC Chain", + symbol: "VRC", + decimals: 18, }, "719": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 + name: "BONE", + symbol: "BONE", + decimals: 18, }, "721": { - "name": "Lycan", - "symbol": "LYC", - "decimals": 18 + name: "Lycan", + symbol: "LYC", + decimals: 18, }, "727": { - "name": "Blucrates", - "symbol": "BLU", - "decimals": 18 + name: "Blucrates", + symbol: "BLU", + decimals: 18, }, "730": { - "name": "Lovely", - "symbol": "LOVELY", - "decimals": 18 + name: "Lovely", + symbol: "LOVELY", + decimals: 18, }, "741": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 + name: "VNT", + symbol: "VNT", + decimals: 18, }, "742": { - "name": "Script", - "symbol": "SPAY", - "decimals": 18 + name: "Script", + symbol: "SPAY", + decimals: 18, }, "747": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 + name: "FLOW", + symbol: "FLOW", + decimals: 18, }, "766": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 + name: "Shiba Predator", + symbol: "QOM", + decimals: 18, }, "776": { - "name": "Openchain Testnet", - "symbol": "TOPC", - "decimals": 18 + name: "Openchain Testnet", + symbol: "TOPC", + decimals: 18, }, "777": { - "name": "cTH", - "symbol": "cTH", - "decimals": 18 + name: "cTH", + symbol: "cTH", + decimals: 18, }, "786": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 + name: "MAAL", + symbol: "MAAL", + decimals: 18, }, "787": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 + name: "Acala Token", + symbol: "ACA", + decimals: 18, }, "788": { - "name": "Aerochain Testnet", - "symbol": "TAero", - "decimals": 18 + name: "Aerochain Testnet", + symbol: "TAero", + decimals: 18, }, "789": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "799": { - "name": "Test Rupaya", - "symbol": "TRUPX", - "decimals": 18 + name: "Test Rupaya", + symbol: "TRUPX", + decimals: 18, }, "800": { - "name": "LUCID", - "symbol": "LUCID", - "decimals": 18 + name: "LUCID", + symbol: "LUCID", + decimals: 18, }, "803": { - "name": "Haicoin", - "symbol": "HAIC", - "decimals": 18 + name: "Haicoin", + symbol: "HAIC", + decimals: 18, }, "808": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 + name: "Portal Fantasy Token", + symbol: "PFT", + decimals: 18, }, "810": { - "name": "Haven1", - "symbol": "H1", - "decimals": 18 + name: "Haven1", + symbol: "H1", + decimals: 18, }, "813": { - "name": "Qitmeer", - "symbol": "MEER", - "decimals": 18 + name: "Qitmeer", + symbol: "MEER", + decimals: 18, }, "814": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "818": { - "name": "BeOne Chain Mainnet", - "symbol": "BOC", - "decimals": 18 + name: "BeOne Chain Mainnet", + symbol: "BOC", + decimals: 18, }, "820": { - "name": "Callisto", - "symbol": "CLO", - "decimals": 18 + name: "Callisto", + symbol: "CLO", + decimals: 18, }, "822": { - "name": "Bitcoin", - "symbol": "rBTC", - "decimals": 18 + name: "Bitcoin", + symbol: "rBTC", + decimals: 18, }, "831": { - "name": "CDT", - "symbol": "CDT", - "decimals": 18 + name: "CDT", + symbol: "CDT", + decimals: 18, }, "841": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 + name: "Tara", + symbol: "TARA", + decimals: 18, }, "842": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 + name: "Tara", + symbol: "TARA", + decimals: 18, }, "859": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 + name: "Zeeth Token", + symbol: "ZTH", + decimals: 18, }, "868": { - "name": "FST", - "symbol": "FST", - "decimals": 18 + name: "FST", + symbol: "FST", + decimals: 18, }, "876": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "877": { - "name": "Dexit network", - "symbol": "DXT", - "decimals": 18 + name: "Dexit network", + symbol: "DXT", + decimals: 18, }, "880": { - "name": "AMBROS", - "symbol": "AMBROS", - "decimals": 18 + name: "AMBROS", + symbol: "AMBROS", + decimals: 18, }, "888": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 + name: "Wancoin", + symbol: "WAN", + decimals: 18, }, "898": { - "name": "MAXI GAS", - "symbol": "MGAS", - "decimals": 18 + name: "MAXI GAS", + symbol: "MGAS", + decimals: 18, }, "899": { - "name": "MAXI GAS", - "symbol": "MGAS", - "decimals": 18 + name: "MAXI GAS", + symbol: "MGAS", + decimals: 18, }, "900": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "901": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "902": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "903": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "909": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 + name: "Portal Fantasy Token", + symbol: "PFT", + decimals: 18, }, "910": { - "name": "DecentraBone", - "symbol": "DBONE", - "decimals": 18 + name: "DecentraBone", + symbol: "DBONE", + decimals: 18, }, "911": { - "name": "TBTC", - "symbol": "TBTC", - "decimals": 18 + name: "TBTC", + symbol: "TBTC", + decimals: 18, }, "917": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 + name: "Firechain", + symbol: "FIRE", + decimals: 18, }, "919": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "927": { - "name": "Yidark", - "symbol": "YDK", - "decimals": 18 + name: "Yidark", + symbol: "YDK", + decimals: 18, }, "943": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 + name: "Test Pulse", + symbol: "tPLS", + decimals: 18, }, "956": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "957": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "963": { - "name": "BTCC", - "symbol": "BTCC", - "decimals": 18 + name: "BTCC", + symbol: "BTCC", + decimals: 18, }, "969": { - "name": "Settled EthXY Token", - "symbol": "SEXY", - "decimals": 18 + name: "Settled EthXY Token", + symbol: "SEXY", + decimals: 18, }, "970": { - "name": "Oort", - "symbol": "OORT", - "decimals": 18 + name: "Oort", + symbol: "OORT", + decimals: 18, }, "971": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 + name: "Oort", + symbol: "CCN", + decimals: 18, }, "972": { - "name": "Oort", - "symbol": "CCNA", - "decimals": 18 + name: "Oort", + symbol: "CCNA", + decimals: 18, }, "977": { - "name": "Nepal Blockchain Network Ether", - "symbol": "YETI", - "decimals": 18 + name: "Nepal Blockchain Network Ether", + symbol: "YETI", + decimals: 18, }, "979": { - "name": "Settled EthXY Token", - "symbol": "SEXY", - "decimals": 18 + name: "Settled EthXY Token", + symbol: "SEXY", + decimals: 18, }, "980": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "985": { - "name": "Memo", - "symbol": "CMEMO", - "decimals": 18 + name: "Memo", + symbol: "CMEMO", + decimals: 18, }, "989": { - "name": "TOP", - "symbol": "TOP", - "decimals": 6 + name: "TOP", + symbol: "TOP", + decimals: 6, }, "990": { - "name": "eLiberty", - "symbol": "$EL", - "decimals": 18 + name: "eLiberty", + symbol: "$EL", + decimals: 18, }, "997": { - "name": "5ire Token", - "symbol": "5ire", - "decimals": 18 + name: "5ire Token", + symbol: "5ire", + decimals: 18, }, "998": { - "name": "Lucky", - "symbol": "L99", - "decimals": 18 + name: "Lucky", + symbol: "L99", + decimals: 18, }, "999": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 + name: "Wancoin", + symbol: "WAN", + decimals: 18, }, "1000": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 + name: "GCD", + symbol: "GCD", + decimals: 18, }, "1001": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 + name: "KLAY", + symbol: "KLAY", + decimals: 18, }, "1003": { - "name": "Tectum", - "symbol": "TET", - "decimals": 8 + name: "Tectum", + symbol: "TET", + decimals: 8, }, "1004": { - "name": "T-EKTA", - "symbol": "T-EKTA", - "decimals": 18 + name: "T-EKTA", + symbol: "T-EKTA", + decimals: 18, }, "1007": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 + name: "Newton", + symbol: "NEW", + decimals: 18, }, "1008": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 + name: "Eurus", + symbol: "EUN", + decimals: 18, }, "1009": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 + name: "JNFTC", + symbol: "JNFTC", + decimals: 18, }, "1010": { - "name": "Evrice", - "symbol": "EVC", - "decimals": 18 + name: "Evrice", + symbol: "EVC", + decimals: 18, }, "1011": { - "name": "Rebus", - "symbol": "REBUS", - "decimals": 18 + name: "Rebus", + symbol: "REBUS", + decimals: 18, }, "1012": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 + name: "Newton", + symbol: "NEW", + decimals: 18, }, "1022": { - "name": "Sakura", - "symbol": "SKU", - "decimals": 18 + name: "Sakura", + symbol: "SKU", + decimals: 18, }, "1023": { - "name": "Clover", - "symbol": "CLV", - "decimals": 18 + name: "Clover", + symbol: "CLV", + decimals: 18, }, "1024": { - "name": "CLV", - "symbol": "CLV", - "decimals": 18 + name: "CLV", + symbol: "CLV", + decimals: 18, }, "1028": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 + name: "BitTorrent", + symbol: "BTT", + decimals: 18, }, "1030": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 + name: "CFX", + symbol: "CFX", + decimals: 18, }, "1031": { - "name": "PRX", - "symbol": "PRX", - "decimals": 18 + name: "PRX", + symbol: "PRX", + decimals: 18, }, "1038": { - "name": "tBRO", - "symbol": "tBRO", - "decimals": 18 + name: "tBRO", + symbol: "tBRO", + decimals: 18, }, "1039": { - "name": "BRO", - "symbol": "BRO", - "decimals": 18 + name: "BRO", + symbol: "BRO", + decimals: 18, }, "1073": { - "name": "SMR", - "symbol": "SMR", - "decimals": 18 + name: "SMR", + symbol: "SMR", + decimals: 18, }, "1075": { - "name": "IOTA", - "symbol": "IOTA", - "decimals": 18 + name: "IOTA", + symbol: "IOTA", + decimals: 18, }, "1079": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 + name: "MINTARA", + symbol: "MNTR", + decimals: 18, }, "1080": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 + name: "MINTARA", + symbol: "MNTR", + decimals: 18, }, "1088": { - "name": "Metis", - "symbol": "METIS", - "decimals": 18 + name: "Metis", + symbol: "METIS", + decimals: 18, }, "1089": { - "name": "HEART", - "symbol": "HEART", - "decimals": 18 + name: "HEART", + symbol: "HEART", + decimals: 18, }, "1099": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 + name: "MOAC", + symbol: "mc", + decimals: 18, }, "1100": { - "name": "DYM", - "symbol": "DYM", - "decimals": 18 + name: "DYM", + symbol: "DYM", + decimals: 18, }, "1101": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1107": { - "name": "BLXQ", - "symbol": "BLXQ", - "decimals": 18 + name: "BLXQ", + symbol: "BLXQ", + decimals: 18, }, "1108": { - "name": "BLXQ", - "symbol": "BLXQ", - "decimals": 18 + name: "BLXQ", + symbol: "BLXQ", + decimals: 18, }, "1111": { - "name": "WEMIX", - "symbol": "WEMIX", - "decimals": 18 + name: "WEMIX", + symbol: "WEMIX", + decimals: 18, }, "1112": { - "name": "TestnetWEMIX", - "symbol": "tWEMIX", - "decimals": 18 + name: "TestnetWEMIX", + symbol: "tWEMIX", + decimals: 18, }, "1113": { - "name": "BSquared Token", - "symbol": "B2", - "decimals": 18 + name: "BSquared Token", + symbol: "B2", + decimals: 18, }, "1115": { - "name": "Core Blockchain Testnet Native Token", - "symbol": "tCORE", - "decimals": 18 + name: "Core Blockchain Testnet Native Token", + symbol: "tCORE", + decimals: 18, }, "1116": { - "name": "Core Blockchain Native Token", - "symbol": "CORE", - "decimals": 18 + name: "Core Blockchain Native Token", + symbol: "CORE", + decimals: 18, }, "1117": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 + name: "Dogcoin", + symbol: "DOGS", + decimals: 18, }, "1123": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "1130": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 + name: "DeFiChain", + symbol: "DFI", + decimals: 18, }, "1131": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 + name: "DeFiChain", + symbol: "DFI", + decimals: 18, }, "1133": { - "name": "DeFiChain Token", - "symbol": "DFI", - "decimals": 18 + name: "DeFiChain Token", + symbol: "DFI", + decimals: 18, }, "1135": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1138": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 + name: "SINSO", + symbol: "SINSO", + decimals: 18, }, "1139": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 + name: "MathChain", + symbol: "MATH", + decimals: 18, }, "1140": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 + name: "MathChain", + symbol: "MATH", + decimals: 18, }, "1147": { - "name": "Flag Testnet", - "symbol": "FLAG", - "decimals": 18 + name: "Flag Testnet", + symbol: "FLAG", + decimals: 18, }, "1149": { - "name": "Plex Native Token", - "symbol": "PLEX", - "decimals": 18 + name: "Plex Native Token", + symbol: "PLEX", + decimals: 18, }, "1170": { - "name": "Origin", - "symbol": "UOC", - "decimals": 18 + name: "Origin", + symbol: "UOC", + decimals: 18, }, "1177": { - "name": "Smart Host Teknoloji TESTNET", - "symbol": "tSHT", - "decimals": 18 + name: "Smart Host Teknoloji TESTNET", + symbol: "tSHT", + decimals: 18, }, "1188": { - "name": "ClubMos", - "symbol": "MOS", - "decimals": 18 + name: "ClubMos", + symbol: "MOS", + decimals: 18, }, "1197": { - "name": "Iora", - "symbol": "IORA", - "decimals": 18 + name: "Iora", + symbol: "IORA", + decimals: 18, }, "1201": { - "name": "AVIS", - "symbol": "AVIS", - "decimals": 18 + name: "AVIS", + symbol: "AVIS", + decimals: 18, }, "1202": { - "name": "World Trade Token", - "symbol": "WTT", - "decimals": 18 + name: "World Trade Token", + symbol: "WTT", + decimals: 18, }, "1209": { - "name": "SaitaBlockChain(SBC)", - "symbol": "STC", - "decimals": 18 + name: "SaitaBlockChain(SBC)", + symbol: "STC", + decimals: 18, }, "1210": { - "name": "CuckooAI", - "symbol": "CAI", - "decimals": 18 + name: "CuckooAI", + symbol: "CAI", + decimals: 18, }, "1213": { - "name": "Popcat", - "symbol": "POP", - "decimals": 18 + name: "Popcat", + symbol: "POP", + decimals: 18, }, "1214": { - "name": "EnterCoin", - "symbol": "ENTER", - "decimals": 18 + name: "EnterCoin", + symbol: "ENTER", + decimals: 18, }, "1221": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1224": { - "name": "Hybrid", - "symbol": "HYB", - "decimals": 18 + name: "Hybrid", + symbol: "HYB", + decimals: 18, }, "1229": { - "name": "Exzo", - "symbol": "XZO", - "decimals": 18 + name: "Exzo", + symbol: "XZO", + decimals: 18, }, "1230": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 + name: "Ultron", + symbol: "ULX", + decimals: 18, }, "1231": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 + name: "Ultron", + symbol: "ULX", + decimals: 18, }, "1234": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 + name: "FITFI", + symbol: "FITFI", + decimals: 18, }, "1235": { - "name": "ITX", - "symbol": "ITX", - "decimals": 18 + name: "ITX", + symbol: "ITX", + decimals: 18, }, "1243": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 + name: "ARC", + symbol: "ARC", + decimals: 18, }, "1244": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 + name: "ARC", + symbol: "ARC", + decimals: 18, }, "1246": { - "name": "OMCOIN", - "symbol": "OM", - "decimals": 18 + name: "OMCOIN", + symbol: "OM", + decimals: 18, }, "1248": { - "name": "Dogether", - "symbol": "dogeth", - "decimals": 18 + name: "Dogether", + symbol: "dogeth", + decimals: 18, }, "1252": { - "name": "Crazy Internet Coin", - "symbol": "CICT", - "decimals": 18 + name: "Crazy Internet Coin", + symbol: "CICT", + decimals: 18, }, "1280": { - "name": "HALO", - "symbol": "HO", - "decimals": 18 + name: "HALO", + symbol: "HO", + decimals: 18, }, "1284": { - "name": "Glimmer", - "symbol": "GLMR", - "decimals": 18 + name: "Glimmer", + symbol: "GLMR", + decimals: 18, }, "1285": { - "name": "Moonriver", - "symbol": "MOVR", - "decimals": 18 + name: "Moonriver", + symbol: "MOVR", + decimals: 18, }, "1287": { - "name": "Dev", - "symbol": "DEV", - "decimals": 18 + name: "Dev", + symbol: "DEV", + decimals: 18, }, "1288": { - "name": "Rocs", - "symbol": "ROC", - "decimals": 18 + name: "Rocs", + symbol: "ROC", + decimals: 18, }, "1291": { - "name": "Swisstronik", - "symbol": "SWTR", - "decimals": 18 + name: "Swisstronik", + symbol: "SWTR", + decimals: 18, }, "1311": { - "name": "Dos Native Token", - "symbol": "DOS", - "decimals": 18 + name: "Dos Native Token", + symbol: "DOS", + decimals: 18, }, "1314": { - "name": "Alyx Chain Native Token", - "symbol": "ALYX", - "decimals": 18 + name: "Alyx Chain Native Token", + symbol: "ALYX", + decimals: 18, }, "1319": { - "name": "AIA Mainnet", - "symbol": "AIA", - "decimals": 18 + name: "AIA Mainnet", + symbol: "AIA", + decimals: 18, }, "1320": { - "name": "AIA Testnet", - "symbol": "AIA", - "decimals": 18 + name: "AIA Testnet", + symbol: "AIA", + decimals: 18, }, "1328": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 + name: "Sei", + symbol: "SEI", + decimals: 18, }, "1329": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 + name: "Sei", + symbol: "SEI", + decimals: 18, }, "1337": { - "name": "Geth Testnet Ether", - "symbol": "ETH", - "decimals": 18 + name: "Geth Testnet Ether", + symbol: "ETH", + decimals: 18, }, "1338": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 + name: "LAVA", + symbol: "LAVA", + decimals: 18, }, "1339": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 + name: "LAVA", + symbol: "LAVA", + decimals: 18, }, "1343": { - "name": "BLITZ GAS", - "symbol": "BGAS", - "decimals": 18 + name: "BLITZ GAS", + symbol: "BGAS", + decimals: 18, }, "1353": { - "name": "Crazy Internet Coin", - "symbol": "CIC", - "decimals": 18 + name: "Crazy Internet Coin", + symbol: "CIC", + decimals: 18, }, "1369": { - "name": "Zakumi Chain Native Token", - "symbol": "ZAFIC", - "decimals": 18 + name: "Zakumi Chain Native Token", + symbol: "ZAFIC", + decimals: 18, }, "1370": { - "name": "Rama", - "symbol": "RAMA", - "decimals": 18 + name: "Rama", + symbol: "RAMA", + decimals: 18, }, "1377": { - "name": "Rama", - "symbol": "tRAMA", - "decimals": 18 + name: "Rama", + symbol: "tRAMA", + decimals: 18, }, "1379": { - "name": "Kalar", - "symbol": "KLC", - "decimals": 18 + name: "Kalar", + symbol: "KLC", + decimals: 18, }, "1388": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 + name: "SINSO", + symbol: "SINSO", + decimals: 18, }, "1392": { - "name": "Joseon Mun", - "symbol": "JSM", - "decimals": 18 + name: "Joseon Mun", + symbol: "JSM", + decimals: 18, }, "1414": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1433": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 + name: "Rikeza", + symbol: "RIK", + decimals: 18, }, "1440": { - "name": "LAS", - "symbol": "LAS", - "decimals": 18 + name: "LAS", + symbol: "LAS", + decimals: 18, }, "1442": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1452": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 + name: "GANG", + symbol: "GANG", + decimals: 18, }, "1453": { - "name": "Metatime Coin", - "symbol": "MTC", - "decimals": 18 + name: "Metatime Coin", + symbol: "MTC", + decimals: 18, }, "1455": { - "name": "CTEX", - "symbol": "CTEX", - "decimals": 18 + name: "CTEX", + symbol: "CTEX", + decimals: 18, }, "1490": { - "name": "Vitruveo Coin", - "symbol": "VTRU", - "decimals": 18 + name: "Vitruveo Coin", + symbol: "VTRU", + decimals: 18, }, "1499": { - "name": "iDos Games Coin", - "symbol": "IGC", - "decimals": 18 + name: "iDos Games Coin", + symbol: "IGC", + decimals: 18, }, "1501": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "1506": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 + name: "KSX", + symbol: "KSX", + decimals: 18, }, "1507": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 + name: "KSX", + symbol: "KSX", + decimals: 18, }, "1515": { - "name": "Beagle", - "symbol": "BG", - "decimals": 18 + name: "Beagle", + symbol: "BG", + decimals: 18, }, "1559": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 + name: "TENET", + symbol: "TENET", + decimals: 18, }, "1617": { - "name": "Ethereum Inscription", - "symbol": "ETINS", - "decimals": 18 + name: "Ethereum Inscription", + symbol: "ETINS", + decimals: 18, }, "1618": { - "name": "Catecoin", - "symbol": "CATE", - "decimals": 18 + name: "Catecoin", + symbol: "CATE", + decimals: 18, }, "1620": { - "name": "Atheios Ether", - "symbol": "ATH", - "decimals": 18 + name: "Atheios Ether", + symbol: "ATH", + decimals: 18, }, "1625": { - "name": "Gravity", - "symbol": "G.", - "decimals": 18 + name: "Gravity", + symbol: "G.", + decimals: 18, }, "1657": { - "name": "Bitcoin Asset", - "symbol": "BTA", - "decimals": 18 + name: "Bitcoin Asset", + symbol: "BTA", + decimals: 18, }, "1662": { - "name": "Licoin", - "symbol": "LCN", - "decimals": 18 + name: "Licoin", + symbol: "LCN", + decimals: 18, }, "1663": { - "name": "Testnet Zen", - "symbol": "tZEN", - "decimals": 18 + name: "Testnet Zen", + symbol: "tZEN", + decimals: 18, }, "1686": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1687": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1688": { - "name": "LUDAN", - "symbol": "LUDAN", - "decimals": 18 + name: "LUDAN", + symbol: "LUDAN", + decimals: 18, }, "1701": { - "name": "ANY", - "symbol": "ANY", - "decimals": 18 + name: "ANY", + symbol: "ANY", + decimals: 18, }, "1707": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 + name: "Jinda", + symbol: "JINDA", + decimals: 18, }, "1708": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 + name: "Jinda", + symbol: "JINDA", + decimals: 18, }, "1717": { - "name": "Doric Native Token", - "symbol": "DRC", - "decimals": 18 + name: "Doric Native Token", + symbol: "DRC", + decimals: 18, }, "1718": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 + name: "Palette Token", + symbol: "PLT", + decimals: 18, }, "1729": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1740": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "1750": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "1773": { - "name": "Grams", - "symbol": "GRAMS", - "decimals": 18 + name: "Grams", + symbol: "GRAMS", + decimals: 18, }, "1777": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 + name: "GANG", + symbol: "GANG", + decimals: 18, }, "1789": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1804": { - "name": "Climate awaReness Coin", - "symbol": "CRC", - "decimals": 18 + name: "Climate awaReness Coin", + symbol: "CRC", + decimals: 18, }, "1807": { - "name": "Rabbit Analog Test Chain Native Token ", - "symbol": "rAna", - "decimals": 18 + name: "Rabbit Analog Test Chain Native Token ", + symbol: "rAna", + decimals: 18, }, "1818": { - "name": "Cube Chain Native Token", - "symbol": "CUBE", - "decimals": 18 + name: "Cube Chain Native Token", + symbol: "CUBE", + decimals: 18, }, "1819": { - "name": "Cube Chain Test Native Token", - "symbol": "CUBET", - "decimals": 18 + name: "Cube Chain Test Native Token", + symbol: "CUBET", + decimals: 18, }, "1821": { - "name": "RUBY Smart Chain Native Token", - "symbol": "RUBY", - "decimals": 18 + name: "RUBY Smart Chain Native Token", + symbol: "RUBY", + decimals: 18, }, "1856": { - "name": "Teslafunds Ether", - "symbol": "TSF", - "decimals": 18 + name: "Teslafunds Ether", + symbol: "TSF", + decimals: 18, }, "1875": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 + name: "WhiteBIT Coin", + symbol: "WBT", + decimals: 18, }, "1881": { - "name": "Gitshock Cartenz", - "symbol": "tGTFX", - "decimals": 18 + name: "Gitshock Cartenz", + symbol: "tGTFX", + decimals: 18, }, "1890": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "1891": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "1898": { - "name": "BOYACoin", - "symbol": "BOY", - "decimals": 18 + name: "BOYACoin", + symbol: "BOY", + decimals: 18, }, "1904": { - "name": "SCN", - "symbol": "SCN", - "decimals": 18 + name: "SCN", + symbol: "SCN", + decimals: 18, }, "1907": { - "name": "Bitci", - "symbol": "BITCI", - "decimals": 18 + name: "Bitci", + symbol: "BITCI", + decimals: 18, }, "1908": { - "name": "Test Bitci", - "symbol": "TBITCI", - "decimals": 18 + name: "Test Bitci", + symbol: "TBITCI", + decimals: 18, }, "1909": { - "name": "Merkle", - "symbol": "MRK", - "decimals": 18 + name: "Merkle", + symbol: "MRK", + decimals: 18, }, "1911": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1912": { - "name": "RUBY Smart Chain Native Token", - "symbol": "tRUBY", - "decimals": 18 + name: "RUBY Smart Chain Native Token", + symbol: "tRUBY", + decimals: 18, }, "1918": { - "name": "UPBEth", - "symbol": "UPBEth", - "decimals": 18 + name: "UPBEth", + symbol: "UPBEth", + decimals: 18, }, "1945": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 + name: "ONUS", + symbol: "ONUS", + decimals: 18, }, "1951": { - "name": "DOINX", - "symbol": "DOINX", - "decimals": 18 + name: "DOINX", + symbol: "DOINX", + decimals: 18, }, "1953": { - "name": "Selendra", - "symbol": "tSEL", - "decimals": 18 + name: "Selendra", + symbol: "tSEL", + decimals: 18, }, "1954": { - "name": "Dexilla Native Token", - "symbol": "DXZ", - "decimals": 18 + name: "Dexilla Native Token", + symbol: "DXZ", + decimals: 18, }, "1956": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "1961": { - "name": "Selendra", - "symbol": "SEL", - "decimals": 18 + name: "Selendra", + symbol: "SEL", + decimals: 18, }, "1967": { - "name": "Eleanor Metacoin", - "symbol": "MTC", - "decimals": 18 + name: "Eleanor Metacoin", + symbol: "MTC", + decimals: 18, }, "1969": { - "name": "Super Chain Native Token", - "symbol": "TSCS", - "decimals": 18 + name: "Super Chain Native Token", + symbol: "TSCS", + decimals: 18, }, "1970": { - "name": "Super Chain Native Token", - "symbol": "SCS", - "decimals": 18 + name: "Super Chain Native Token", + symbol: "SCS", + decimals: 18, }, "1971": { - "name": "ATLR", - "symbol": "ATLR", - "decimals": 18 + name: "ATLR", + symbol: "ATLR", + decimals: 18, }, "1972": { - "name": "RedeCoin", - "symbol": "REDEV2", - "decimals": 18 + name: "RedeCoin", + symbol: "REDEV2", + decimals: 18, }, "1975": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 + name: "ONUS", + symbol: "ONUS", + decimals: 18, }, "1984": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 + name: "Eurus", + symbol: "EUN", + decimals: 18, }, "1985": { - "name": "Tushy Token", - "symbol": "TUSHY", - "decimals": 18 + name: "Tushy Token", + symbol: "TUSHY", + decimals: 18, }, "1986": { - "name": "Tushy Token", - "symbol": "TUSHY", - "decimals": 18 + name: "Tushy Token", + symbol: "TUSHY", + decimals: 18, }, "1987": { - "name": "EtherGem Ether", - "symbol": "EGEM", - "decimals": 18 + name: "EtherGem Ether", + symbol: "EGEM", + decimals: 18, }, "1992": { - "name": "USD Coin", - "symbol": "USDC", - "decimals": 18 + name: "USD Coin", + symbol: "USDC", + decimals: 18, }, "1994": { - "name": "EKTA", - "symbol": "EKTA", - "decimals": 18 + name: "EKTA", + symbol: "EKTA", + decimals: 18, }, "1995": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 + name: "EDEXA", + symbol: "EDX", + decimals: 18, }, "1996": { - "name": "DMT", - "symbol": "DMT", - "decimals": 18 + name: "DMT", + symbol: "DMT", + decimals: 18, }, "1998": { - "name": "Kyoto", - "symbol": "KYOTO", - "decimals": 18 + name: "Kyoto", + symbol: "KYOTO", + decimals: 18, }, "2000": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 + name: "Dogecoin", + symbol: "DOGE", + decimals: 18, }, "2001": { - "name": "milkAda", - "symbol": "mADA", - "decimals": 18 + name: "milkAda", + symbol: "mADA", + decimals: 18, }, "2002": { - "name": "milkALGO", - "symbol": "mALGO", - "decimals": 18 + name: "milkALGO", + symbol: "mALGO", + decimals: 18, }, "2004": { - "name": "MetaLink", - "symbol": "MTL", - "decimals": 18 + name: "MetaLink", + symbol: "MTL", + decimals: 18, }, "2008": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 + name: "CloudWalk Native Token", + symbol: "CWN", + decimals: 18, }, "2009": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 + name: "CloudWalk Native Token", + symbol: "CWN", + decimals: 18, }, "2013": { - "name": "GAS", - "symbol": "GAS", - "decimals": 18 + name: "GAS", + symbol: "GAS", + decimals: 18, }, "2014": { - "name": "NOW Coin", - "symbol": "NOW", - "decimals": 18 + name: "NOW Coin", + symbol: "NOW", + decimals: 18, }, "2016": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 + name: "MainnetZ", + symbol: "NetZ", + decimals: 18, }, "2017": { - "name": "Telcoin", - "symbol": "TEL", - "decimals": 18 + name: "Telcoin", + symbol: "TEL", + decimals: 18, }, "2018": { - "name": "USD", - "symbol": "USD", - "decimals": 18 + name: "USD", + symbol: "USD", + decimals: 18, }, "2019": { - "name": "USD", - "symbol": "USD", - "decimals": 18 + name: "USD", + symbol: "USD", + decimals: 18, }, "2020": { - "name": "USD", - "symbol": "USD", - "decimals": 18 + name: "USD", + symbol: "USD", + decimals: 18, }, "2021": { - "name": "Edgeware", - "symbol": "EDG", - "decimals": 18 + name: "Edgeware", + symbol: "EDG", + decimals: 18, }, "2022": { - "name": "Testnet EDG", - "symbol": "tEDG", - "decimals": 18 + name: "Testnet EDG", + symbol: "tEDG", + decimals: 18, }, "2023": { - "name": "test-Shuffle", - "symbol": "tSFL", - "decimals": 18 + name: "test-Shuffle", + symbol: "tSFL", + decimals: 18, }, "2024": { - "name": "SWANETH", - "symbol": "sETH", - "decimals": 18 + name: "SWANETH", + symbol: "sETH", + decimals: 18, }, "2025": { - "name": "Rangers Protocol Gas", - "symbol": "RPG", - "decimals": 18 + name: "Rangers Protocol Gas", + symbol: "RPG", + decimals: 18, }, "2026": { - "name": "Edgeless Wrapped Eth", - "symbol": "EwEth", - "decimals": 18 + name: "Edgeless Wrapped Eth", + symbol: "EwEth", + decimals: 18, }, "2031": { - "name": "Centrifuge", - "symbol": "CFG", - "decimals": 18 + name: "Centrifuge", + symbol: "CFG", + decimals: 18, }, "2032": { - "name": "Catalyst CFG", - "symbol": "NCFG", - "decimals": 18 + name: "Catalyst CFG", + symbol: "NCFG", + decimals: 18, }, "2035": { - "name": "Phala", - "symbol": "PHA", - "decimals": 18 + name: "Phala", + symbol: "PHA", + decimals: 18, }, "2037": { - "name": "Shrapgas", - "symbol": "SHRAP", - "decimals": 18 + name: "Shrapgas", + symbol: "SHRAP", + decimals: 18, }, "2038": { - "name": "SHRAPG", - "symbol": "SHRAPG", - "decimals": 18 + name: "SHRAPG", + symbol: "SHRAPG", + decimals: 18, }, "2039": { - "name": "TZERO", - "symbol": "TZERO", - "decimals": 18 + name: "TZERO", + symbol: "TZERO", + decimals: 18, }, "2040": { - "name": "VANRY", - "symbol": "VANRY", - "decimals": 18 + name: "VANRY", + symbol: "VANRY", + decimals: 18, }, "2043": { - "name": "NeuroWeb Token", - "symbol": "NEURO", - "decimals": 12 + name: "NeuroWeb Token", + symbol: "NEURO", + decimals: 12, }, "2044": { - "name": "Shrapnel Gas Token", - "symbol": "SHRAPG", - "decimals": 18 + name: "Shrapnel Gas Token", + symbol: "SHRAPG", + decimals: 18, }, "2045": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "2047": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 + name: "STOS", + symbol: "STOS", + decimals: 18, }, "2048": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 + name: "STOS", + symbol: "STOS", + decimals: 18, }, "2049": { - "name": "Movo Smart Chain", - "symbol": "MOVO", - "decimals": 18 + name: "Movo Smart Chain", + symbol: "MOVO", + decimals: 18, }, "2077": { - "name": "Qkacoin", - "symbol": "QKA", - "decimals": 18 + name: "Qkacoin", + symbol: "QKA", + decimals: 18, }, "2088": { - "name": "Altair", - "symbol": "AIR", - "decimals": 18 + name: "Altair", + symbol: "AIR", + decimals: 18, }, "2100": { - "name": "Ecoball Coin", - "symbol": "ECO", - "decimals": 18 + name: "Ecoball Coin", + symbol: "ECO", + decimals: 18, }, "2101": { - "name": "Espuma Coin", - "symbol": "ECO", - "decimals": 18 + name: "Espuma Coin", + symbol: "ECO", + decimals: 18, }, "2109": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 + name: "Sama Token", + symbol: "SAMA", + decimals: 18, }, "2112": { - "name": "UCASH", - "symbol": "UCASH", - "decimals": 18 + name: "UCASH", + symbol: "UCASH", + decimals: 18, }, "2121": { - "name": "Catena", - "symbol": "CMCX", - "decimals": 18 + name: "Catena", + symbol: "CMCX", + decimals: 18, }, "2122": { - "name": "METAD", - "symbol": "METAD", - "decimals": 18 + name: "METAD", + symbol: "METAD", + decimals: 18, }, "2124": { - "name": "Metaunit", - "symbol": "MEU", - "decimals": 18 + name: "Metaunit", + symbol: "MEU", + decimals: 18, }, "2136": { - "name": "Dolarz", - "symbol": "Dolarz", - "decimals": 18 + name: "Dolarz", + symbol: "Dolarz", + decimals: 18, }, "2137": { - "name": "USD Coin", - "symbol": "USDC", - "decimals": 18 + name: "USD Coin", + symbol: "USDC", + decimals: 18, }, "2138": { - "name": "testEther", - "symbol": "tETH", - "decimals": 18 + name: "testEther", + symbol: "tETH", + decimals: 18, }, "2140": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "2141": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "2151": { - "name": "BOSAGORA", - "symbol": "BOA", - "decimals": 18 + name: "BOSAGORA", + symbol: "BOA", + decimals: 18, }, "2152": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 + name: "FRA", + symbol: "FRA", + decimals: 18, }, "2153": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 + name: "FRA", + symbol: "FRA", + decimals: 18, }, "2154": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 + name: "FRA", + symbol: "FRA", + decimals: 18, }, "2199": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 + name: "Sama Token", + symbol: "SAMA", + decimals: 18, }, "2202": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 + name: "Antofy", + symbol: "ABN", + decimals: 18, }, "2203": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "2213": { - "name": "EVA", - "symbol": "EVA", - "decimals": 18 + name: "EVA", + symbol: "EVA", + decimals: 18, }, "2221": { - "name": "TKava", - "symbol": "TKAVA", - "decimals": 18 + name: "TKava", + symbol: "TKAVA", + decimals: 18, }, "2222": { - "name": "Kava", - "symbol": "KAVA", - "decimals": 18 + name: "Kava", + symbol: "KAVA", + decimals: 18, }, "2223": { - "name": "VNDT", - "symbol": "VNDT", - "decimals": 18 + name: "VNDT", + symbol: "VNDT", + decimals: 18, }, "2241": { - "name": "Krest", - "symbol": "KRST", - "decimals": 18 + name: "Krest", + symbol: "KRST", + decimals: 18, }, "2300": { - "name": "BOMB Token", - "symbol": "BOMB", - "decimals": 18 + name: "BOMB Token", + symbol: "BOMB", + decimals: 18, }, "2306": { - "name": "Ebro", - "symbol": "ebro", - "decimals": 18 + name: "Ebro", + symbol: "ebro", + decimals: 18, }, "2309": { - "name": "Arev", - "symbol": "ARÉV", - "decimals": 18 + name: "Arev", + symbol: "ARÉV", + decimals: 18, }, "2323": { - "name": "SMA", - "symbol": "tSMA", - "decimals": 18 + name: "SMA", + symbol: "tSMA", + decimals: 18, }, "2330": { - "name": "Altcoin", - "symbol": "ALT", - "decimals": 18 + name: "Altcoin", + symbol: "ALT", + decimals: 18, }, "2331": { - "name": "RSS3", - "symbol": "RSS3", - "decimals": 18 + name: "RSS3", + symbol: "RSS3", + decimals: 18, }, "2332": { - "name": "Soma Native Token", - "symbol": "SMA", - "decimals": 18 + name: "Soma Native Token", + symbol: "SMA", + decimals: 18, }, "2340": { - "name": "Atla", - "symbol": "ATLA", - "decimals": 18 + name: "Atla", + symbol: "ATLA", + decimals: 18, }, "2342": { - "name": "Omnia", - "symbol": "OMNIA", - "decimals": 18 + name: "Omnia", + symbol: "OMNIA", + decimals: 18, }, "2355": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2358": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "2370": { - "name": "Nexis", - "symbol": "NZT", - "decimals": 18 + name: "Nexis", + symbol: "NZT", + decimals: 18, }, "2399": { - "name": "BOMB Token", - "symbol": "tBOMB", - "decimals": 18 + name: "BOMB Token", + symbol: "tBOMB", + decimals: 18, }, "2400": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "2410": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2415": { - "name": "XODEX Native Token", - "symbol": "XODEX", - "decimals": 18 + name: "XODEX Native Token", + symbol: "XODEX", + decimals: 18, }, "2425": { - "name": "King Of Legends", - "symbol": "KOL", - "decimals": 18 + name: "King Of Legends", + symbol: "KOL", + decimals: 18, }, "2442": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2458": { - "name": "Hybrid Chain Native Token", - "symbol": "tHRC", - "decimals": 18 + name: "Hybrid Chain Native Token", + symbol: "tHRC", + decimals: 18, }, "2468": { - "name": "Hybrid Chain Native Token", - "symbol": "HRC", - "decimals": 18 + name: "Hybrid Chain Native Token", + symbol: "HRC", + decimals: 18, }, "2484": { - "name": "Unicorn Ultra Nebulas Testnet", - "symbol": "U2U", - "decimals": 18 + name: "Unicorn Ultra Nebulas Testnet", + symbol: "U2U", + decimals: 18, }, "2522": { - "name": "Frax Ether", - "symbol": "frxETH", - "decimals": 18 + name: "Frax Ether", + symbol: "frxETH", + decimals: 18, }, "2525": { - "name": "Injective", - "symbol": "INJ", - "decimals": 18 + name: "Injective", + symbol: "INJ", + decimals: 18, }, "2559": { - "name": "KorthoChain", - "symbol": "KTO", - "decimals": 11 + name: "KorthoChain", + symbol: "KTO", + decimals: 11, }, "2569": { - "name": "TechPay", - "symbol": "TPC", - "decimals": 18 + name: "TechPay", + symbol: "TPC", + decimals: 18, }, "2606": { - "name": "Climate awaReness Coin", - "symbol": "CRC", - "decimals": 18 + name: "Climate awaReness Coin", + symbol: "CRC", + decimals: 18, }, "2611": { - "name": "Redlight Coin", - "symbol": "REDLC", - "decimals": 18 + name: "Redlight Coin", + symbol: "REDLC", + decimals: 18, }, "2612": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 + name: "EZChain", + symbol: "EZC", + decimals: 18, }, "2613": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 + name: "EZChain", + symbol: "EZC", + decimals: 18, }, "2625": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 + name: "WhiteBIT Coin", + symbol: "WBT", + decimals: 18, }, "2662": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2710": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2718": { - "name": "KLAOS", - "symbol": "KLAOS", - "decimals": 18 + name: "KLAOS", + symbol: "KLAOS", + decimals: 18, }, "2730": { - "name": "tXR", - "symbol": "tXR", - "decimals": 18 + name: "tXR", + symbol: "tXR", + decimals: 18, }, "2731": { - "name": "TIME", - "symbol": "TIME", - "decimals": 18 + name: "TIME", + symbol: "TIME", + decimals: 18, }, "2748": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2777": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2810": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2907": { - "name": "Elux Chain", - "symbol": "ELUX", - "decimals": 18 + name: "Elux Chain", + symbol: "ELUX", + decimals: 18, }, "2911": { - "name": "TOPIA", - "symbol": "TOPIA", - "decimals": 18 + name: "TOPIA", + symbol: "TOPIA", + decimals: 18, }, "2941": { - "name": "Xenon Testnet", - "symbol": "tXEN", - "decimals": 18 + name: "Xenon Testnet", + symbol: "tXEN", + decimals: 18, }, "2999": { - "name": "BTY", - "symbol": "BTY", - "decimals": 18 + name: "BTY", + symbol: "BTY", + decimals: 18, }, "3000": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 + name: "CPAY", + symbol: "CPAY", + decimals: 18, }, "3001": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 + name: "CPAY", + symbol: "CPAY", + decimals: 18, }, "3003": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 + name: "Canxium", + symbol: "CAU", + decimals: 18, }, "3011": { - "name": "3ULL", - "symbol": "3ULL", - "decimals": 18 + name: "3ULL", + symbol: "3ULL", + decimals: 18, }, "3031": { - "name": "Orlando", - "symbol": "ORL", - "decimals": 18 + name: "Orlando", + symbol: "ORL", + decimals: 18, }, "3033": { - "name": "Rebus", - "symbol": "REBUS", - "decimals": 18 + name: "Rebus", + symbol: "REBUS", + decimals: 18, }, "3068": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 + name: "Bifrost", + symbol: "BFC", + decimals: 18, }, "3073": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 + name: "Move", + symbol: "MOVE", + decimals: 18, }, "3100": { - "name": "IMMU", - "symbol": "IMMU", - "decimals": 18 + name: "IMMU", + symbol: "IMMU", + decimals: 18, }, "3102": { - "name": "VFI", - "symbol": "VFI", - "decimals": 18 + name: "VFI", + symbol: "VFI", + decimals: 18, }, "3109": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "3110": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "3269": { - "name": "Dubxcoin mainnet", - "symbol": "DUBX", - "decimals": 18 + name: "Dubxcoin mainnet", + symbol: "DUBX", + decimals: 18, }, "3270": { - "name": "Dubxcoin testnet", - "symbol": "TDUBX", - "decimals": 18 + name: "Dubxcoin testnet", + symbol: "TDUBX", + decimals: 18, }, "3306": { - "name": "Debounce Network", - "symbol": "DB", - "decimals": 18 + name: "Debounce Network", + symbol: "DB", + decimals: 18, }, "3331": { - "name": "ZCore", - "symbol": "ZCR", - "decimals": 18 + name: "ZCore", + symbol: "ZCR", + decimals: 18, }, "3333": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3334": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 + name: "Web3Q", + symbol: "W3Q", + decimals: 18, }, "3335": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3400": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 + name: "PRB", + symbol: "PRB", + decimals: 18, }, "3424": { - "name": "Evolve", - "symbol": "EVO", - "decimals": 18 + name: "Evolve", + symbol: "EVO", + decimals: 18, }, "3434": { - "name": "SCAI", - "symbol": "SCAI", - "decimals": 18 + name: "SCAI", + symbol: "SCAI", + decimals: 18, }, "3456": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "3500": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 + name: "PRB", + symbol: "PRB", + decimals: 18, }, "3501": { - "name": "JFIN Coin", - "symbol": "JFIN", - "decimals": 18 + name: "JFIN Coin", + symbol: "JFIN", + decimals: 18, }, "3601": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 + name: "pando-token", + symbol: "PTX", + decimals: 18, }, "3602": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 + name: "pando-token", + symbol: "PTX", + decimals: 18, }, "3630": { - "name": "Tycooncoin", - "symbol": "TYCO", - "decimals": 18 + name: "Tycooncoin", + symbol: "TYCO", + decimals: 18, }, "3636": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 + name: "Botanix", + symbol: "BTC", + decimals: 18, }, "3637": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 + name: "Botanix", + symbol: "BTC", + decimals: 18, }, "3639": { - "name": "ISLAMICOIN", - "symbol": "ISLAMI", - "decimals": 18 + name: "ISLAMICOIN", + symbol: "ISLAMI", + decimals: 18, }, "3666": { - "name": "J", - "symbol": "J", - "decimals": 18 + name: "J", + symbol: "J", + decimals: 18, }, "3690": { - "name": "Bittex", - "symbol": "BTX", - "decimals": 18 + name: "Bittex", + symbol: "BTX", + decimals: 18, }, "3693": { - "name": "Empire", - "symbol": "EMPIRE", - "decimals": 18 + name: "Empire", + symbol: "EMPIRE", + decimals: 18, }, "3698": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 + name: "SenjePowers", + symbol: "SPC", + decimals: 18, }, "3699": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 + name: "SenjePowers", + symbol: "SPC", + decimals: 18, }, "3737": { - "name": "Crossbell Token", - "symbol": "CSB", - "decimals": 18 + name: "Crossbell Token", + symbol: "CSB", + decimals: 18, }, "3776": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3797": { - "name": "AlveyCoin", - "symbol": "ALV", - "decimals": 18 + name: "AlveyCoin", + symbol: "ALV", + decimals: 18, }, "3799": { - "name": "Testnet Tangle Network Token", - "symbol": "tTNT", - "decimals": 18 + name: "Testnet Tangle Network Token", + symbol: "tTNT", + decimals: 18, }, "3885": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3888": { - "name": "KalyCoin", - "symbol": "KLC", - "decimals": 18 + name: "KalyCoin", + symbol: "KLC", + decimals: 18, }, "3889": { - "name": "KalyCoin", - "symbol": "KLC", - "decimals": 18 + name: "KalyCoin", + symbol: "KLC", + decimals: 18, }, "3912": { - "name": "DRAC", - "symbol": "DRAC", - "decimals": 18 + name: "DRAC", + symbol: "DRAC", + decimals: 18, }, "3939": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 + name: "DOS", + symbol: "DOS", + decimals: 18, }, "3966": { - "name": "DYNO Token", - "symbol": "DYNO", - "decimals": 18 + name: "DYNO Token", + symbol: "DYNO", + decimals: 18, }, "3967": { - "name": "DYNO Token", - "symbol": "tDYNO", - "decimals": 18 + name: "DYNO Token", + symbol: "tDYNO", + decimals: 18, }, "3993": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "3999": { - "name": "YCC", - "symbol": "YCC", - "decimals": 18 + name: "YCC", + symbol: "YCC", + decimals: 18, }, "4000": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 + name: "OZONE", + symbol: "OZO", + decimals: 18, }, "4001": { - "name": "Peperium Chain Testnet", - "symbol": "PERIUM", - "decimals": 18 + name: "Peperium Chain Testnet", + symbol: "PERIUM", + decimals: 18, }, "4002": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 + name: "Fantom", + symbol: "FTM", + decimals: 18, }, "4003": { - "name": "XN", - "symbol": "XN", - "decimals": 18 + name: "XN", + symbol: "XN", + decimals: 18, }, "4040": { - "name": "Carbonium", - "symbol": "tCBR", - "decimals": 18 + name: "Carbonium", + symbol: "tCBR", + decimals: 18, }, "4048": { - "name": "GP Token", - "symbol": "GP", - "decimals": 18 + name: "GP Token", + symbol: "GP", + decimals: 18, }, "4058": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 + name: "FTN", + symbol: "FTN", + decimals: 18, }, "4061": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "4062": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "4078": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "4080": { - "name": "Tobe Coin", - "symbol": "TBC", - "decimals": 18 + name: "Tobe Coin", + symbol: "TBC", + decimals: 18, }, "4090": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 + name: "FTN", + symbol: "FTN", + decimals: 18, }, "4096": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 + name: "BNI", + symbol: "$BNI", + decimals: 18, }, "4099": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 + name: "BNI", + symbol: "$BNI", + decimals: 18, }, "4102": { - "name": "testAIOZ", - "symbol": "AIOZ", - "decimals": 18 + name: "testAIOZ", + symbol: "AIOZ", + decimals: 18, }, "4139": { - "name": "HEART", - "symbol": "HEART", - "decimals": 18 + name: "HEART", + symbol: "HEART", + decimals: 18, }, "4141": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 + name: "Tipboxcoin", + symbol: "TPBX", + decimals: 18, }, "4157": { - "name": "XFI", - "symbol": "XFI", - "decimals": 18 + name: "XFI", + symbol: "XFI", + decimals: 18, }, "4181": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 + name: "PHI", + symbol: "Φ", + decimals: 18, }, "4200": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "4201": { - "name": "TestLYX", - "symbol": "LYXt", - "decimals": 18 + name: "TestLYX", + symbol: "LYXt", + decimals: 18, }, "4202": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "4242": { - "name": "Nexi", - "symbol": "NEXI", - "decimals": 18 + name: "Nexi", + symbol: "NEXI", + decimals: 18, }, "4243": { - "name": "NexiV2", - "symbol": "NEXI", - "decimals": 18 + name: "NexiV2", + symbol: "NEXI", + decimals: 18, }, "4337": { - "name": "Beam", - "symbol": "BEAM", - "decimals": 18 + name: "Beam", + symbol: "BEAM", + decimals: 18, }, "4400": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 + name: "Credit", + symbol: "CREDIT", + decimals: 18, }, "4444": { - "name": "Htmlcoin", - "symbol": "HTML", - "decimals": 8 + name: "Htmlcoin", + symbol: "HTML", + decimals: 8, }, "4460": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "4488": { - "name": "Hydra", - "symbol": "HYDRA", - "decimals": 18 + name: "Hydra", + symbol: "HYDRA", + decimals: 18, }, "4544": { - "name": "Emoney Network", - "symbol": "EMYC", - "decimals": 18 + name: "Emoney Network", + symbol: "EMYC", + decimals: 18, }, "4613": { - "name": "VERY", - "symbol": "VERY", - "decimals": 18 + name: "VERY", + symbol: "VERY", + decimals: 18, }, "4653": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "4689": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 + name: "IoTeX", + symbol: "IOTX", + decimals: 18, }, "4690": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 + name: "IoTeX", + symbol: "IOTX", + decimals: 18, }, "4759": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 + name: "MEVerse", + symbol: "MEV", + decimals: 18, }, "4777": { - "name": "BlackFort Testnet Token", - "symbol": "TBXN", - "decimals": 18 + name: "BlackFort Testnet Token", + symbol: "TBXN", + decimals: 18, }, "4893": { - "name": "Globel Chain", - "symbol": "GC", - "decimals": 18 + name: "Globel Chain", + symbol: "GC", + decimals: 18, }, "4918": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 + name: "Venidium", + symbol: "XVM", + decimals: 18, }, "4919": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 + name: "Venidium", + symbol: "XVM", + decimals: 18, }, "4999": { - "name": "BlackFort Token", - "symbol": "BXN", - "decimals": 18 + name: "BlackFort Token", + symbol: "BXN", + decimals: 18, }, "5000": { - "name": "Mantle", - "symbol": "MNT", - "decimals": 18 + name: "Mantle", + symbol: "MNT", + decimals: 18, }, "5001": { - "name": "Testnet Mantle", - "symbol": "MNT", - "decimals": 18 + name: "Testnet Mantle", + symbol: "MNT", + decimals: 18, }, "5002": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 + name: "UNIT", + symbol: "UNIT", + decimals: 18, }, "5003": { - "name": "Sepolia Mantle", - "symbol": "MNT", - "decimals": 18 + name: "Sepolia Mantle", + symbol: "MNT", + decimals: 18, }, "5005": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 + name: "UNIT", + symbol: "UNIT", + decimals: 18, }, "5039": { - "name": "ONIGIRI", - "symbol": "ONGR", - "decimals": 18 + name: "ONIGIRI", + symbol: "ONGR", + decimals: 18, }, "5040": { - "name": "ONIGIRI", - "symbol": "ONGR", - "decimals": 18 + name: "ONIGIRI", + symbol: "ONGR", + decimals: 18, }, "5051": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5100": { - "name": "S-Ether", - "symbol": "ETH", - "decimals": 18 + name: "S-Ether", + symbol: "ETH", + decimals: 18, }, "5101": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5102": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5103": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5104": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5105": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5106": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5112": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5165": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 + name: "FTN", + symbol: "FTN", + decimals: 18, }, "5169": { - "name": "Service Unit Token", - "symbol": "SU", - "decimals": 18 + name: "Service Unit Token", + symbol: "SU", + decimals: 18, }, "5177": { - "name": "TLChain Network", - "symbol": "TLC", - "decimals": 18 + name: "TLChain Network", + symbol: "TLC", + decimals: 18, }, "5197": { - "name": "EraSwap", - "symbol": "ES", - "decimals": 18 + name: "EraSwap", + symbol: "ES", + decimals: 18, }, "5234": { - "name": "eHMND", - "symbol": "eHMND", - "decimals": 18 + name: "eHMND", + symbol: "eHMND", + decimals: 18, }, "5315": { - "name": "UZMI", - "symbol": "UZMI", - "decimals": 18 + name: "UZMI", + symbol: "UZMI", + decimals: 18, }, "5317": { - "name": "TestBSC", - "symbol": "tBNB", - "decimals": 18 + name: "TestBSC", + symbol: "tBNB", + decimals: 18, }, "5321": { - "name": "ITX", - "symbol": "ITX", - "decimals": 18 + name: "ITX", + symbol: "ITX", + decimals: 18, }, "5353": { - "name": "Tritanium Native Token", - "symbol": "tTRN", - "decimals": 18 + name: "Tritanium Native Token", + symbol: "tTRN", + decimals: 18, }, "5372": { - "name": "Setl", - "symbol": "SETL", - "decimals": 18 + name: "Setl", + symbol: "SETL", + decimals: 18, }, "5424": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 + name: "EDEXA", + symbol: "EDX", + decimals: 18, }, "5439": { - "name": "EGAX", - "symbol": "EGAX", - "decimals": 18 + name: "EGAX", + symbol: "EGAX", + decimals: 18, }, "5522": { - "name": "VEX EVM TESTNET", - "symbol": "VEX", - "decimals": 18 + name: "VEX EVM TESTNET", + symbol: "VEX", + decimals: 18, }, "5551": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5555": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 + name: "Oasys", + symbol: "OAS", + decimals: 18, }, "5611": { - "name": "BNB Chain Native Token", - "symbol": "tBNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "tBNB", + decimals: 18, }, "5615": { - "name": "tARC", - "symbol": "tARC", - "decimals": 18 + name: "tARC", + symbol: "tARC", + decimals: 18, }, "5616": { - "name": "Test Arct", - "symbol": "tARCT", - "decimals": 18 + name: "Test Arct", + symbol: "tARCT", + decimals: 18, }, "5656": { - "name": "QIE Blockchain", - "symbol": "QIE", - "decimals": 18 + name: "QIE Blockchain", + symbol: "QIE", + decimals: 18, }, "5675": { - "name": "Test Filecoin", - "symbol": "tFIL", - "decimals": 18 + name: "Test Filecoin", + symbol: "tFIL", + decimals: 18, }, "5678": { - "name": "TANGO", - "symbol": "TANGO", - "decimals": 18 + name: "TANGO", + symbol: "TANGO", + decimals: 18, }, "5700": { - "name": "Testnet Syscoin", - "symbol": "tSYS", - "decimals": 18 + name: "Testnet Syscoin", + symbol: "tSYS", + decimals: 18, }, "5729": { - "name": "Hik Token", - "symbol": "HIK", - "decimals": 18 + name: "Hik Token", + symbol: "HIK", + decimals: 18, }, "5758": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 + name: "SatoshiChain Coin", + symbol: "SATS", + decimals: 18, }, "5777": { - "name": "Ganache Test Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ganache Test Ether", + symbol: "ETH", + decimals: 18, }, "5845": { - "name": "Tangle", - "symbol": "TNT", - "decimals": 18 + name: "Tangle", + symbol: "TNT", + decimals: 18, }, "5851": { - "name": "ONG", - "symbol": "ONG", - "decimals": 18 + name: "ONG", + symbol: "ONG", + decimals: 18, }, "5869": { - "name": "Rubid", - "symbol": "RBD", - "decimals": 18 + name: "Rubid", + symbol: "RBD", + decimals: 18, }, "6000": { - "name": "BounceBit", - "symbol": "BB", - "decimals": 18 + name: "BounceBit", + symbol: "BB", + decimals: 18, }, "6001": { - "name": "BounceBit", - "symbol": "BB", - "decimals": 18 + name: "BounceBit", + symbol: "BB", + decimals: 18, }, "6065": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 + name: "TRES", + symbol: "TRES", + decimals: 18, }, "6066": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 + name: "TRES", + symbol: "TRES", + decimals: 18, }, "6102": { - "name": "CC", - "symbol": "tCC", - "decimals": 18 + name: "CC", + symbol: "tCC", + decimals: 18, }, "6118": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 + name: "UPTN", + symbol: "UPTN", + decimals: 18, }, "6119": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 + name: "UPTN", + symbol: "UPTN", + decimals: 18, }, "6321": { - "name": "test-EAura", - "symbol": "eAura", - "decimals": 18 + name: "test-EAura", + symbol: "eAura", + decimals: 18, }, "6322": { - "name": "Aura", - "symbol": "AURA", - "decimals": 18 + name: "Aura", + symbol: "AURA", + decimals: 18, }, "6363": { - "name": "Digit Coin", - "symbol": "DGC", - "decimals": 18 + name: "Digit Coin", + symbol: "DGC", + decimals: 18, }, "6502": { - "name": "Peerpay", - "symbol": "P2P", - "decimals": 18 + name: "Peerpay", + symbol: "P2P", + decimals: 18, }, "6552": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 + name: "Scolcoin", + symbol: "SCOL", + decimals: 18, }, "6565": { - "name": "FOX Native Token", - "symbol": "tFOX", - "decimals": 18 + name: "FOX Native Token", + symbol: "tFOX", + decimals: 18, }, "6626": { - "name": "Pixie Chain Native Token", - "symbol": "PIX", - "decimals": 18 + name: "Pixie Chain Native Token", + symbol: "PIX", + decimals: 18, }, "6660": { - "name": "Latest", - "symbol": "LATEST", - "decimals": 18 + name: "Latest", + symbol: "LATEST", + decimals: 18, }, "6661": { - "name": "Cybria", - "symbol": "CYBA", - "decimals": 18 + name: "Cybria", + symbol: "CYBA", + decimals: 18, }, "6666": { - "name": "Cybria", - "symbol": "CYBA", - "decimals": 18 + name: "Cybria", + symbol: "CYBA", + decimals: 18, }, "6688": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 + name: "Eris", + symbol: "ERIS", + decimals: 18, }, "6699": { - "name": "OX", - "symbol": "OX", - "decimals": 18 + name: "OX", + symbol: "OX", + decimals: 18, }, "6701": { - "name": "PAXB", - "symbol": "PAXB", - "decimals": 18 + name: "PAXB", + symbol: "PAXB", + decimals: 18, }, "6779": { - "name": "compverse", - "symbol": "CPV", - "decimals": 18 + name: "compverse", + symbol: "CPV", + decimals: 18, }, "6789": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 + name: "Standard in Gold", + symbol: "STAND", + decimals: 18, }, "6868": { - "name": "POOLS Native Token", - "symbol": "POOLS", - "decimals": 18 + name: "POOLS Native Token", + symbol: "POOLS", + decimals: 18, }, "6969": { - "name": "Tomb", - "symbol": "TOMB", - "decimals": 18 + name: "Tomb", + symbol: "TOMB", + decimals: 18, }, "6999": { - "name": "PSC", - "symbol": "PSC", - "decimals": 18 + name: "PSC", + symbol: "PSC", + decimals: 18, }, "7000": { - "name": "Zeta", - "symbol": "ZETA", - "decimals": 18 + name: "Zeta", + symbol: "ZETA", + decimals: 18, }, "7001": { - "name": "Zeta", - "symbol": "ZETA", - "decimals": 18 + name: "Zeta", + symbol: "ZETA", + decimals: 18, }, "7007": { - "name": "BST Chain", - "symbol": "BSTC", - "decimals": 18 + name: "BST Chain", + symbol: "BSTC", + decimals: 18, }, "7027": { - "name": "Ella", - "symbol": "ELLA", - "decimals": 18 + name: "Ella", + symbol: "ELLA", + decimals: 18, }, "7070": { - "name": "Planq", - "symbol": "PLQ", - "decimals": 18 + name: "Planq", + symbol: "PLQ", + decimals: 18, }, "7077": { - "name": "Planq", - "symbol": "tPLQ", - "decimals": 18 + name: "Planq", + symbol: "tPLQ", + decimals: 18, }, "7100": { - "name": "Dai Stablecoin", - "symbol": "DAI", - "decimals": 18 + name: "Dai Stablecoin", + symbol: "DAI", + decimals: 18, }, "7118": { - "name": "Help The Homeless Coin", - "symbol": "HTH", - "decimals": 18 + name: "Help The Homeless Coin", + symbol: "HTH", + decimals: 18, }, "7171": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 + name: "BITROCK", + symbol: "BROCK", + decimals: 18, }, "7300": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "7331": { - "name": "KLYNTAR", - "symbol": "KLY", - "decimals": 18 + name: "KLYNTAR", + symbol: "KLY", + decimals: 18, }, "7332": { - "name": "Zencash", - "symbol": "ZEN", - "decimals": 18 + name: "Zencash", + symbol: "ZEN", + decimals: 18, }, "7341": { - "name": "Shyft", - "symbol": "SHYFT", - "decimals": 18 + name: "Shyft", + symbol: "SHYFT", + decimals: 18, }, "7484": { - "name": "Raba", - "symbol": "RABA", - "decimals": 18 + name: "Raba", + symbol: "RABA", + decimals: 18, }, "7518": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 + name: "MEVerse", + symbol: "MEV", + decimals: 18, }, "7560": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "7575": { - "name": "Testnet ADIL", - "symbol": "ADIL", - "decimals": 18 + name: "Testnet ADIL", + symbol: "ADIL", + decimals: 18, }, "7576": { - "name": "ADIL", - "symbol": "ADIL", - "decimals": 18 + name: "ADIL", + symbol: "ADIL", + decimals: 18, }, "7668": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 + name: "XRP", + symbol: "XRP", + decimals: 6, }, "7672": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 + name: "XRP", + symbol: "XRP", + decimals: 6, }, "7700": { - "name": "Canto", - "symbol": "CANTO", - "decimals": 18 + name: "Canto", + symbol: "CANTO", + decimals: 18, }, "7701": { - "name": "Testnet Canto", - "symbol": "CANTO", - "decimals": 18 + name: "Testnet Canto", + symbol: "CANTO", + decimals: 18, }, "7771": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 + name: "BITROCK", + symbol: "BROCK", + decimals: 18, }, "7775": { - "name": "GDCC", - "symbol": "GDCC", - "decimals": 18 + name: "GDCC", + symbol: "GDCC", + decimals: 18, }, "7777": { - "name": "Nano Machines", - "symbol": "NMAC", - "decimals": 18 + name: "Nano Machines", + symbol: "NMAC", + decimals: 18, }, "7778": { - "name": "ORENIUM", - "symbol": "ORE", - "decimals": 18 + name: "ORENIUM", + symbol: "ORE", + decimals: 18, }, "7798": { - "name": "USDT Testnet", - "symbol": "USDT", - "decimals": 18 + name: "USDT Testnet", + symbol: "USDT", + decimals: 18, }, "7860": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 + name: "MAAL", + symbol: "MAAL", + decimals: 18, }, "7878": { - "name": "Hazlor Test Coin", - "symbol": "TSCAS", - "decimals": 18 + name: "Hazlor Test Coin", + symbol: "TSCAS", + decimals: 18, }, "7887": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "7895": { - "name": "ARD", - "symbol": "tARD", - "decimals": 18 + name: "ARD", + symbol: "tARD", + decimals: 18, }, "7923": { - "name": "Dot Blox", - "symbol": "DTBX", - "decimals": 18 + name: "Dot Blox", + symbol: "DTBX", + decimals: 18, }, "7924": { - "name": "MO", - "symbol": "MO", - "decimals": 18 + name: "MO", + symbol: "MO", + decimals: 18, }, "7979": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 + name: "DOS", + symbol: "DOS", + decimals: 18, }, "8000": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 + name: "Tele", + symbol: "TELE", + decimals: 18, }, "8001": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 + name: "Tele", + symbol: "TELE", + decimals: 18, }, "8029": { - "name": "MDGL Token", - "symbol": "MDGLT", - "decimals": 18 + name: "MDGL Token", + symbol: "MDGLT", + decimals: 18, }, "8047": { - "name": "Best Of All Time Token", - "symbol": "BOAT", - "decimals": 18 + name: "Best Of All Time Token", + symbol: "BOAT", + decimals: 18, }, "8054": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8080": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 + name: "Shardeum SHM", + symbol: "SHM", + decimals: 18, }, "8081": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 + name: "Shardeum SHM", + symbol: "SHM", + decimals: 18, }, "8082": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 + name: "Shardeum SHM", + symbol: "SHM", + decimals: 18, }, "8086": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "8087": { - "name": "E-Dollar", - "symbol": "USD", - "decimals": 18 + name: "E-Dollar", + symbol: "USD", + decimals: 18, }, "8098": { - "name": "StreamuX", - "symbol": "SmuX", - "decimals": 18 + name: "StreamuX", + symbol: "SmuX", + decimals: 18, }, "8131": { - "name": "Qitmeer Testnet", - "symbol": "MEER-T", - "decimals": 18 + name: "Qitmeer Testnet", + symbol: "MEER-T", + decimals: 18, }, "8132": { - "name": "Qitmeer Mixnet", - "symbol": "MEER-M", - "decimals": 18 + name: "Qitmeer Mixnet", + symbol: "MEER-M", + decimals: 18, }, "8133": { - "name": "Qitmeer Privnet", - "symbol": "MEER-P", - "decimals": 18 + name: "Qitmeer Privnet", + symbol: "MEER-P", + decimals: 18, }, "8134": { - "name": "Amana Mainnet", - "symbol": "MEER", - "decimals": 18 + name: "Amana Mainnet", + symbol: "MEER", + decimals: 18, }, "8135": { - "name": "Flana Mainnet", - "symbol": "MEER", - "decimals": 18 + name: "Flana Mainnet", + symbol: "MEER", + decimals: 18, }, "8136": { - "name": "Mizana Mainnet", - "symbol": "MEER", - "decimals": 18 + name: "Mizana Mainnet", + symbol: "MEER", + decimals: 18, }, "8181": { - "name": "Testnet BeOne Chain", - "symbol": "tBOC", - "decimals": 18 + name: "Testnet BeOne Chain", + symbol: "tBOC", + decimals: 18, }, "8192": { - "name": "TQF", - "symbol": "TQF", - "decimals": 18 + name: "TQF", + symbol: "TQF", + decimals: 18, }, "8194": { - "name": "tTQF", - "symbol": "TTQF", - "decimals": 18 + name: "tTQF", + symbol: "TTQF", + decimals: 18, }, "8217": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 + name: "KLAY", + symbol: "KLAY", + decimals: 18, }, "8227": { - "name": "FUEL", - "symbol": "FUEL", - "decimals": 18 + name: "FUEL", + symbol: "FUEL", + decimals: 18, }, "8272": { - "name": "BLOCKTON", - "symbol": "BTON", - "decimals": 18 + name: "BLOCKTON", + symbol: "BTON", + decimals: 18, }, "8285": { - "name": "Kortho Test", - "symbol": "KTO", - "decimals": 11 + name: "Kortho Test", + symbol: "KTO", + decimals: 11, }, "8329": { - "name": "Lorenzo stBTC", - "symbol": "stBTC", - "decimals": 18 + name: "Lorenzo stBTC", + symbol: "stBTC", + decimals: 18, }, "8387": { - "name": "Functionally Universal Coin Kind", - "symbol": "FUCK", - "decimals": 18 + name: "Functionally Universal Coin Kind", + symbol: "FUCK", + decimals: 18, }, "8453": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8654": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 + name: "Toki", + symbol: "TOKI", + decimals: 18, }, "8655": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 + name: "Toki", + symbol: "TOKI", + decimals: 18, }, "8668": { - "name": "Hela HLUSD", - "symbol": "HLUSD", - "decimals": 18 + name: "Hela HLUSD", + symbol: "HLUSD", + decimals: 18, }, "8723": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 + name: "TOOL Global", + symbol: "OLO", + decimals: 18, }, "8724": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 + name: "TOOL Global", + symbol: "OLO", + decimals: 18, }, "8726": { - "name": "Storagechain", - "symbol": "STOR", - "decimals": 18 + name: "Storagechain", + symbol: "STOR", + decimals: 18, }, "8727": { - "name": "Storagechain", - "symbol": "STOR", - "decimals": 18 + name: "Storagechain", + symbol: "STOR", + decimals: 18, }, "8738": { - "name": "Alph Network", - "symbol": "ALPH", - "decimals": 18 + name: "Alph Network", + symbol: "ALPH", + decimals: 18, }, "8768": { - "name": "TMY", - "symbol": "TMY", - "decimals": 18 + name: "TMY", + symbol: "TMY", + decimals: 18, }, "8822": { - "name": "IOTA", - "symbol": "IOTA", - "decimals": 18 + name: "IOTA", + symbol: "IOTA", + decimals: 18, }, "8844": { - "name": "tHydra", - "symbol": "tHYDRA", - "decimals": 18 + name: "tHydra", + symbol: "tHYDRA", + decimals: 18, }, "8848": { - "name": "MARO", - "symbol": "MARO", - "decimals": 18 + name: "MARO", + symbol: "MARO", + decimals: 18, }, "8866": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8880": { - "name": "Unique", - "symbol": "UNQ", - "decimals": 18 + name: "Unique", + symbol: "UNQ", + decimals: 18, }, "8881": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 + name: "Quartz", + symbol: "QTZ", + decimals: 18, }, "8882": { - "name": "Opal", - "symbol": "UNQ", - "decimals": 18 + name: "Opal", + symbol: "UNQ", + decimals: 18, }, "8883": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 + name: "Quartz", + symbol: "QTZ", + decimals: 18, }, "8888": { - "name": "XETA", - "symbol": "XETA", - "decimals": 18 + name: "XETA", + symbol: "XETA", + decimals: 18, }, "8889": { - "name": "VSC", - "symbol": "VSC", - "decimals": 18 + name: "VSC", + symbol: "VSC", + decimals: 18, }, "8890": { - "name": "ORENIUM", - "symbol": "tORE", - "decimals": 18 + name: "ORENIUM", + symbol: "tORE", + decimals: 18, }, "8898": { - "name": "Mammoth Token", - "symbol": "MMT", - "decimals": 18 + name: "Mammoth Token", + symbol: "MMT", + decimals: 18, }, "8899": { - "name": "JIBCOIN", - "symbol": "JBC", - "decimals": 18 + name: "JIBCOIN", + symbol: "JBC", + decimals: 18, }, "8911": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 + name: "ALG", + symbol: "ALG", + decimals: 18, }, "8912": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 + name: "ALG", + symbol: "ALG", + decimals: 18, }, "8921": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 + name: "ALG", + symbol: "ALG", + decimals: 18, }, "8922": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 + name: "ALG", + symbol: "ALG", + decimals: 18, }, "8989": { - "name": "Giant Mammoth Coin", - "symbol": "GMMT", - "decimals": 18 + name: "Giant Mammoth Coin", + symbol: "GMMT", + decimals: 18, }, "8995": { - "name": "BERG", - "symbol": "U+25B3", - "decimals": 18 + name: "BERG", + symbol: "U+25B3", + decimals: 18, }, "9000": { - "name": "test-Evmos", - "symbol": "tEVMOS", - "decimals": 18 + name: "test-Evmos", + symbol: "tEVMOS", + decimals: 18, }, "9001": { - "name": "Evmos", - "symbol": "EVMOS", - "decimals": 18 + name: "Evmos", + symbol: "EVMOS", + decimals: 18, }, "9007": { - "name": "Shido Testnet Token", - "symbol": "SHIDO", - "decimals": 18 + name: "Shido Testnet Token", + symbol: "SHIDO", + decimals: 18, }, "9008": { - "name": "Shido Mainnet Token", - "symbol": "SHIDO", - "decimals": 18 + name: "Shido Mainnet Token", + symbol: "SHIDO", + decimals: 18, }, "9012": { - "name": "BerylBit Chain Native Token", - "symbol": "BRB", - "decimals": 18 + name: "BerylBit Chain Native Token", + symbol: "BRB", + decimals: 18, }, "9024": { - "name": "Nexa Testnet Token", - "symbol": "NEXB", - "decimals": 18 + name: "Nexa Testnet Token", + symbol: "NEXB", + decimals: 18, }, "9025": { - "name": "Nexa Mainnet Token", - "symbol": "NEXB", - "decimals": 18 + name: "Nexa Mainnet Token", + symbol: "NEXB", + decimals: 18, }, "9100": { - "name": "GN Coin", - "symbol": "GNC", - "decimals": 18 + name: "GN Coin", + symbol: "GNC", + decimals: 18, }, "9223": { - "name": "Codefin", - "symbol": "COF", - "decimals": 18 + name: "Codefin", + symbol: "COF", + decimals: 18, }, "9339": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 + name: "Dogcoin", + symbol: "DOGS", + decimals: 18, }, "9393": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "9395": { - "name": "MTHN", - "symbol": "MTHN", - "decimals": 18 + name: "MTHN", + symbol: "MTHN", + decimals: 18, }, "9527": { - "name": "Rangers Protocol Gas", - "symbol": "tRPG", - "decimals": 18 + name: "Rangers Protocol Gas", + symbol: "tRPG", + decimals: 18, }, "9528": { - "name": "QET", - "symbol": "QET", - "decimals": 18 + name: "QET", + symbol: "QET", + decimals: 18, }, "9559": { - "name": "Neonlink Native Token", - "symbol": "tNEON", - "decimals": 18 + name: "Neonlink Native Token", + symbol: "tNEON", + decimals: 18, }, "9700": { - "name": "Oort", - "symbol": "OORT", - "decimals": 18 + name: "Oort", + symbol: "OORT", + decimals: 18, }, "9728": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 + name: "Boba Token", + symbol: "BOBA", + decimals: 18, }, "9768": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 + name: "MainnetZ", + symbol: "NetZ", + decimals: 18, }, "9779": { - "name": "Pepe", - "symbol": "WPEPE", - "decimals": 18 + name: "Pepe", + symbol: "WPEPE", + decimals: 18, }, "9789": { - "name": "Tabi", - "symbol": "TABI", - "decimals": 18 + name: "Tabi", + symbol: "TABI", + decimals: 18, }, "9790": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 + name: "swth", + symbol: "SWTH", + decimals: 18, }, "9792": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 + name: "swth", + symbol: "SWTH", + decimals: 18, }, "9797": { - "name": "OptimusZ7", - "symbol": "OZ7", - "decimals": 18 + name: "OptimusZ7", + symbol: "OZ7", + decimals: 18, }, "9818": { - "name": "tIMP", - "symbol": "tIMP", - "decimals": 18 + name: "tIMP", + symbol: "tIMP", + decimals: 18, }, "9819": { - "name": "IMP", - "symbol": "IMP", - "decimals": 18 + name: "IMP", + symbol: "IMP", + decimals: 18, }, "9888": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 + name: "Dogecoin", + symbol: "DOGE", + decimals: 18, }, "9898": { - "name": "Larissa", - "symbol": "LRS", - "decimals": 18 + name: "Larissa", + symbol: "LRS", + decimals: 18, }, "9911": { - "name": "ESPENTO", - "symbol": "SPENT", - "decimals": 18 + name: "ESPENTO", + symbol: "SPENT", + decimals: 18, }, "9977": { - "name": "MIND Coin", - "symbol": "tMIND", - "decimals": 18 + name: "MIND Coin", + symbol: "tMIND", + decimals: 18, }, "9980": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "BNB", + decimals: 18, }, "9981": { - "name": "V2X", - "symbol": "V2X", - "decimals": 18 + name: "V2X", + symbol: "V2X", + decimals: 18, }, "9990": { - "name": "Agung", - "symbol": "AGNG", - "decimals": 18 + name: "Agung", + symbol: "AGNG", + decimals: 18, }, "9996": { - "name": "MIND Coin", - "symbol": "MIND", - "decimals": 18 + name: "MIND Coin", + symbol: "MIND", + decimals: 18, }, "9997": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "9998": { - "name": "Ztcer", - "symbol": "ZTC", - "decimals": 5 + name: "Ztcer", + symbol: "ZTC", + decimals: 5, }, "9999": { - "name": "MYN", - "symbol": "MYN", - "decimals": 18 + name: "MYN", + symbol: "MYN", + decimals: 18, }, "10000": { - "name": "Bitcoin Cash", - "symbol": "BCH", - "decimals": 18 + name: "Bitcoin Cash", + symbol: "BCH", + decimals: 18, }, "10001": { - "name": "Bitcoin Cash Test Token", - "symbol": "BCHT", - "decimals": 18 + name: "Bitcoin Cash Test Token", + symbol: "BCHT", + decimals: 18, }, "10024": { - "name": "Gon Token", - "symbol": "GT", - "decimals": 18 + name: "Gon Token", + symbol: "GT", + decimals: 18, }, "10081": { - "name": "Japan Open Chain Testnet Token", - "symbol": "JOCT", - "decimals": 18 + name: "Japan Open Chain Testnet Token", + symbol: "JOCT", + decimals: 18, }, "10086": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "10101": { - "name": "GEN", - "symbol": "GEN", - "decimals": 18 + name: "GEN", + symbol: "GEN", + decimals: 18, }, "10200": { - "name": "Chiado xDAI", - "symbol": "XDAI", - "decimals": 18 + name: "Chiado xDAI", + symbol: "XDAI", + decimals: 18, }, "10201": { - "name": "Power", - "symbol": "PWR", - "decimals": 18 + name: "Power", + symbol: "PWR", + decimals: 18, }, "10222": { - "name": "GLC", - "symbol": "GLC", - "decimals": 18 + name: "GLC", + symbol: "GLC", + decimals: 18, }, "10242": { - "name": "Arthera", - "symbol": "AA", - "decimals": 18 + name: "Arthera", + symbol: "AA", + decimals: 18, }, "10243": { - "name": "Arthera", - "symbol": "AA", - "decimals": 18 + name: "Arthera", + symbol: "AA", + decimals: 18, }, "10248": { - "name": "0XT", - "symbol": "0XT", - "decimals": 18 + name: "0XT", + symbol: "0XT", + decimals: 18, }, "10321": { - "name": "TAO", - "symbol": "TAO", - "decimals": 18 + name: "TAO", + symbol: "TAO", + decimals: 18, }, "10324": { - "name": "TAO", - "symbol": "TAO", - "decimals": 18 + name: "TAO", + symbol: "TAO", + decimals: 18, }, "10395": { - "name": "Worldland", - "symbol": "WLC", - "decimals": 18 + name: "Worldland", + symbol: "WLC", + decimals: 18, }, "10507": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 + name: "NUM Token", + symbol: "NUM", + decimals: 18, }, "10508": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 + name: "NUM Token", + symbol: "NUM", + decimals: 18, }, "10823": { - "name": "CryptoCoinPay", - "symbol": "CCP", - "decimals": 18 + name: "CryptoCoinPay", + symbol: "CCP", + decimals: 18, }, "10849": { - "name": "L1", - "symbol": "L1", - "decimals": 18 + name: "L1", + symbol: "L1", + decimals: 18, }, "10850": { - "name": "L1 ID", - "symbol": "L1ID", - "decimals": 18 + name: "L1 ID", + symbol: "L1ID", + decimals: 18, }, "10946": { - "name": "Quadrans Coin", - "symbol": "QDC", - "decimals": 18 + name: "Quadrans Coin", + symbol: "QDC", + decimals: 18, }, "10947": { - "name": "Quadrans Testnet Coin", - "symbol": "tQDC", - "decimals": 18 + name: "Quadrans Testnet Coin", + symbol: "tQDC", + decimals: 18, }, "11110": { - "name": "Astra", - "symbol": "ASA", - "decimals": 18 + name: "Astra", + symbol: "ASA", + decimals: 18, }, "11111": { - "name": "WAGMI", - "symbol": "WGM", - "decimals": 18 + name: "WAGMI", + symbol: "WGM", + decimals: 18, }, "11115": { - "name": "test-Astra", - "symbol": "tASA", - "decimals": 18 + name: "test-Astra", + symbol: "tASA", + decimals: 18, }, "11119": { - "name": "HashBit Native Token", - "symbol": "HBIT", - "decimals": 18 + name: "HashBit Native Token", + symbol: "HBIT", + decimals: 18, }, "11221": { - "name": "Shine", - "symbol": "SC20", - "decimals": 18 + name: "Shine", + symbol: "SC20", + decimals: 18, }, "11227": { - "name": "JIRI", - "symbol": "TZW", - "decimals": 18 + name: "JIRI", + symbol: "TZW", + decimals: 18, }, "11235": { - "name": "Islamic Coin", - "symbol": "ISLM", - "decimals": 18 + name: "Islamic Coin", + symbol: "ISLM", + decimals: 18, }, "11437": { - "name": "Shyft Test Token", - "symbol": "SHYFTT", - "decimals": 18 + name: "Shyft Test Token", + symbol: "SHYFTT", + decimals: 18, }, "11501": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "11503": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "11612": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 + name: "Sardis", + symbol: "SRDX", + decimals: 18, }, "11891": { - "name": "Arianee", - "symbol": "ARIA20", - "decimals": 18 + name: "Arianee", + symbol: "ARIA20", + decimals: 18, }, "12009": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 + name: "SatoshiChain Coin", + symbol: "SATS", + decimals: 18, }, "12020": { - "name": "Aternos", - "symbol": "ATR", - "decimals": 18 + name: "Aternos", + symbol: "ATR", + decimals: 18, }, "12051": { - "name": "ZERO", - "symbol": "tZERO", - "decimals": 18 + name: "ZERO", + symbol: "tZERO", + decimals: 18, }, "12052": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 + name: "ZERO", + symbol: "ZERO", + decimals: 18, }, "12123": { - "name": "BRC Chain mainnet native token", - "symbol": "BRC", - "decimals": 18 + name: "BRC Chain mainnet native token", + symbol: "BRC", + decimals: 18, }, "12306": { - "name": "FIBONACCI UTILITY TOKEN", - "symbol": "FIBO", - "decimals": 18 + name: "FIBONACCI UTILITY TOKEN", + symbol: "FIBO", + decimals: 18, }, "12321": { - "name": "Blg", - "symbol": "BLG", - "decimals": 18 + name: "Blg", + symbol: "BLG", + decimals: 18, }, "12324": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "12325": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "12345": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 + name: "FITFI", + symbol: "FITFI", + decimals: 18, }, "12553": { - "name": "RSS3", - "symbol": "RSS3", - "decimals": 18 + name: "RSS3", + symbol: "RSS3", + decimals: 18, }, "12715": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 + name: "Rikeza", + symbol: "RIK", + decimals: 18, }, "12781": { - "name": "Playdapp", - "symbol": "PDA", - "decimals": 18 + name: "Playdapp", + symbol: "PDA", + decimals: 18, }, "12890": { - "name": "Quantum Chain", - "symbol": "tQNET", - "decimals": 18 + name: "Quantum Chain", + symbol: "tQNET", + decimals: 18, }, "12898": { - "name": "BTLT Token", - "symbol": "BTLT", - "decimals": 18 + name: "BTLT Token", + symbol: "BTLT", + decimals: 18, }, "13000": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 + name: "ECG", + symbol: "ECG", + decimals: 18, }, "13308": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 + name: "Credit", + symbol: "CREDIT", + decimals: 18, }, "13337": { - "name": "Beam", - "symbol": "BEAM", - "decimals": 18 + name: "Beam", + symbol: "BEAM", + decimals: 18, }, "13371": { - "name": "IMX", - "symbol": "IMX", - "decimals": 18 + name: "IMX", + symbol: "IMX", + decimals: 18, }, "13381": { - "name": "Phoenix", - "symbol": "PHX", - "decimals": 18 + name: "Phoenix", + symbol: "PHX", + decimals: 18, }, "13396": { - "name": "Masa Token", - "symbol": "MASA", - "decimals": 18 + name: "Masa Token", + symbol: "MASA", + decimals: 18, }, "13473": { - "name": "Test IMX", - "symbol": "tIMX", - "decimals": 18 + name: "Test IMX", + symbol: "tIMX", + decimals: 18, }, "13505": { - "name": "Sepolia Gravity", - "symbol": "G.", - "decimals": 18 + name: "Sepolia Gravity", + symbol: "G.", + decimals: 18, }, "13600": { - "name": "Kronobit", - "symbol": "KNB", - "decimals": 18 + name: "Kronobit", + symbol: "KNB", + decimals: 18, }, "13812": { - "name": "Susono", - "symbol": "OPN", - "decimals": 18 + name: "Susono", + symbol: "OPN", + decimals: 18, }, "14000": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 + name: "ECG", + symbol: "ECG", + decimals: 18, }, "14324": { - "name": "Evolve", - "symbol": "EVO", - "decimals": 18 + name: "Evolve", + symbol: "EVO", + decimals: 18, }, "14333": { - "name": "Vitruveo Test Coin", - "symbol": "tVTRU", - "decimals": 18 + name: "Vitruveo Test Coin", + symbol: "tVTRU", + decimals: 18, }, "14801": { - "name": "DAT", - "symbol": "DAT", - "decimals": 18 + name: "DAT", + symbol: "DAT", + decimals: 18, }, "14853": { - "name": "eHMND", - "symbol": "eHMND", - "decimals": 18 + name: "eHMND", + symbol: "eHMND", + decimals: 18, }, "15003": { - "name": "Dev IMX", - "symbol": "dIMX", - "decimals": 18 + name: "Dev IMX", + symbol: "dIMX", + decimals: 18, }, "15257": { - "name": "Poodl", - "symbol": "POODL", - "decimals": 18 + name: "Poodl", + symbol: "POODL", + decimals: 18, }, "15259": { - "name": "Poodl", - "symbol": "POODL", - "decimals": 18 + name: "Poodl", + symbol: "POODL", + decimals: 18, }, "15551": { - "name": "LOOP", - "symbol": "LOOP", - "decimals": 18 + name: "LOOP", + symbol: "LOOP", + decimals: 18, }, "15555": { - "name": "Trust EVM", - "symbol": "EVM", - "decimals": 18 + name: "Trust EVM", + symbol: "EVM", + decimals: 18, }, "15557": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 + name: "EOS", + symbol: "EOS", + decimals: 18, }, "16000": { - "name": "MetaDot Token", - "symbol": "MTT", - "decimals": 18 + name: "MetaDot Token", + symbol: "MTT", + decimals: 18, }, "16001": { - "name": "MetaDot Token TestNet", - "symbol": "MTTest", - "decimals": 18 + name: "MetaDot Token TestNet", + symbol: "MTTest", + decimals: 18, }, "16116": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 + name: "Oasys", + symbol: "OAS", + decimals: 18, }, "16507": { - "name": "Genesys", - "symbol": "GSYS", - "decimals": 18 + name: "Genesys", + symbol: "GSYS", + decimals: 18, }, "16688": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 + name: "Eris", + symbol: "ERIS", + decimals: 18, }, "16718": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 + name: "Amber", + symbol: "AMB", + decimals: 18, }, "16888": { - "name": "tIvar", - "symbol": "tIVAR", - "decimals": 18 + name: "tIvar", + symbol: "tIVAR", + decimals: 18, }, "17000": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 + name: "Testnet ETH", + symbol: "ETH", + decimals: 18, }, "17069": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "17117": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 + name: "Oasys", + symbol: "OAS", + decimals: 18, }, "17171": { - "name": "G8Chain", - "symbol": "G8C", - "decimals": 18 + name: "G8Chain", + symbol: "G8C", + decimals: 18, }, "17172": { - "name": "Eclipse", - "symbol": "ECLP", - "decimals": 16 + name: "Eclipse", + symbol: "ECLP", + decimals: 16, }, "17180": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 + name: "Palette Token", + symbol: "PLT", + decimals: 18, }, "17217": { - "name": "KONET", - "symbol": "KONET", - "decimals": 18 + name: "KONET", + symbol: "KONET", + decimals: 18, }, "17777": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 + name: "EOS", + symbol: "EOS", + decimals: 18, }, "18000": { - "name": "ZKST", - "symbol": "ZKST", - "decimals": 18 + name: "ZKST", + symbol: "ZKST", + decimals: 18, }, "18122": { - "name": "STN", - "symbol": "STN", - "decimals": 18 + name: "STN", + symbol: "STN", + decimals: 18, }, "18159": { - "name": "Proof Of Memes", - "symbol": "POM", - "decimals": 18 + name: "Proof Of Memes", + symbol: "POM", + decimals: 18, }, "18181": { - "name": "G8Coin", - "symbol": "G8C", - "decimals": 18 + name: "G8Coin", + symbol: "G8C", + decimals: 18, }, "18233": { - "name": "unreal Ether", - "symbol": "reETH", - "decimals": 18 + name: "unreal Ether", + symbol: "reETH", + decimals: 18, }, "18686": { - "name": "MXC zkEVM Moonchain", - "symbol": "MXC", - "decimals": 18 + name: "MXC zkEVM Moonchain", + symbol: "MXC", + decimals: 18, }, "18888": { - "name": "Titan tkx", - "symbol": "TKX", - "decimals": 18 + name: "Titan tkx", + symbol: "TKX", + decimals: 18, }, "18889": { - "name": "Titan tkx", - "symbol": "TKX", - "decimals": 18 + name: "Titan tkx", + symbol: "TKX", + decimals: 18, }, "19011": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "19224": { - "name": "Decentraconnect Social", - "symbol": "DCSM", - "decimals": 18 + name: "Decentraconnect Social", + symbol: "DCSM", + decimals: 18, }, "19527": { - "name": "Magnet Network", - "symbol": "DOT", - "decimals": 18 + name: "Magnet Network", + symbol: "DOT", + decimals: 18, }, "19600": { - "name": "LBRY Credits", - "symbol": "LBC", - "decimals": 8 + name: "LBRY Credits", + symbol: "LBC", + decimals: 8, }, "19845": { - "name": "BTCIX Network", - "symbol": "BTCIX", - "decimals": 18 + name: "BTCIX Network", + symbol: "BTCIX", + decimals: 18, }, "20001": { - "name": "EthereumPoW", - "symbol": "ETHW", - "decimals": 18 + name: "EthereumPoW", + symbol: "ETHW", + decimals: 18, }, "20041": { - "name": "Niza Global", - "symbol": "NIZA", - "decimals": 18 + name: "Niza Global", + symbol: "NIZA", + decimals: 18, }, "20073": { - "name": "Niza Global", - "symbol": "NIZA", - "decimals": 18 + name: "Niza Global", + symbol: "NIZA", + decimals: 18, }, "20729": { - "name": "Callisto", - "symbol": "CLO", - "decimals": 18 + name: "Callisto", + symbol: "CLO", + decimals: 18, }, "20736": { - "name": "Hooked P2", - "symbol": "hP2", - "decimals": 18 + name: "Hooked P2", + symbol: "hP2", + decimals: 18, }, "20765": { - "name": "Jono11 Token", - "symbol": "JONO", - "decimals": 18 + name: "Jono11 Token", + symbol: "JONO", + decimals: 18, }, "21004": { - "name": "C4EI", - "symbol": "C4EI", - "decimals": 18 + name: "C4EI", + symbol: "C4EI", + decimals: 18, }, "21133": { - "name": "AAH", - "symbol": "AAH", - "decimals": 18 + name: "AAH", + symbol: "AAH", + decimals: 18, }, "21223": { - "name": "DCP", - "symbol": "DCP", - "decimals": 18 + name: "DCP", + symbol: "DCP", + decimals: 18, }, "21224": { - "name": "DCP", - "symbol": "DCP", - "decimals": 18 + name: "DCP", + symbol: "DCP", + decimals: 18, }, "21337": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 + name: "CPAY", + symbol: "CPAY", + decimals: 18, }, "21816": { - "name": "omChain", - "symbol": "OMC", - "decimals": 18 + name: "omChain", + symbol: "OMC", + decimals: 18, }, "21912": { - "name": "Origin NFT", - "symbol": "ONF", - "decimals": 18 + name: "Origin NFT", + symbol: "ONF", + decimals: 18, }, "22023": { - "name": "shuffle", - "symbol": "SFL", - "decimals": 18 + name: "shuffle", + symbol: "SFL", + decimals: 18, }, "22040": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 + name: "Amber", + symbol: "AMB", + decimals: 18, }, "22222": { - "name": "Zebec", - "symbol": "ZBC", - "decimals": 18 + name: "Zebec", + symbol: "ZBC", + decimals: 18, }, "22324": { - "name": "GoldX", - "symbol": "GOLDX", - "decimals": 18 + name: "GoldX", + symbol: "GOLDX", + decimals: 18, }, "22776": { - "name": "MAPO", - "symbol": "MAPO", - "decimals": 18 + name: "MAPO", + symbol: "MAPO", + decimals: 18, }, "23006": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 + name: "Antofy", + symbol: "ABN", + decimals: 18, }, "23118": { - "name": "IDE", - "symbol": "IDE", - "decimals": 18 + name: "IDE", + symbol: "IDE", + decimals: 18, }, "23294": { - "name": "Sapphire Rose", - "symbol": "ROSE", - "decimals": 18 + name: "Sapphire Rose", + symbol: "ROSE", + decimals: 18, }, "23295": { - "name": "Sapphire Test Rose", - "symbol": "TEST", - "decimals": 18 + name: "Sapphire Test Rose", + symbol: "TEST", + decimals: 18, }, "23451": { - "name": "DreyerX", - "symbol": "DRX", - "decimals": 18 + name: "DreyerX", + symbol: "DRX", + decimals: 18, }, "23452": { - "name": "DreyerX", - "symbol": "DRX", - "decimals": 18 + name: "DreyerX", + symbol: "DRX", + decimals: 18, }, "23888": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "24484": { - "name": "Webchain Ether", - "symbol": "WEB", - "decimals": 18 + name: "Webchain Ether", + symbol: "WEB", + decimals: 18, }, "24734": { - "name": "MintMe.com Coin", - "symbol": "MINTME", - "decimals": 18 + name: "MintMe.com Coin", + symbol: "MINTME", + decimals: 18, }, "25186": { - "name": "LiquidLayer", - "symbol": "LILA", - "decimals": 18 + name: "LiquidLayer", + symbol: "LILA", + decimals: 18, }, "25839": { - "name": "AlveyCoin Testnet", - "symbol": "tALV", - "decimals": 18 + name: "AlveyCoin Testnet", + symbol: "tALV", + decimals: 18, }, "25888": { - "name": "GOLDT", - "symbol": "GOLDT", - "decimals": 18 + name: "GOLDT", + symbol: "GOLDT", + decimals: 18, }, "25925": { - "name": "Bitkub Coin", - "symbol": "tKUB", - "decimals": 18 + name: "Bitkub Coin", + symbol: "tKUB", + decimals: 18, }, "26026": { - "name": "Ferrum", - "symbol": "tFRM", - "decimals": 18 + name: "Ferrum", + symbol: "tFRM", + decimals: 18, }, "26600": { - "name": "Hertz", - "symbol": "HTZ", - "decimals": 18 + name: "Hertz", + symbol: "HTZ", + decimals: 18, }, "26863": { - "name": "OAC", - "symbol": "OAC", - "decimals": 18 + name: "OAC", + symbol: "OAC", + decimals: 18, }, "27181": { - "name": "KLAOS", - "symbol": "KLAOS", - "decimals": 18 + name: "KLAOS", + symbol: "KLAOS", + decimals: 18, }, "27483": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "27827": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 + name: "ZERO", + symbol: "ZERO", + decimals: 18, }, "28516": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "28518": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "28528": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: "Goerli Ether", + symbol: "ETH", + decimals: 18, }, "28882": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "29112": { - "name": "TOPIA", - "symbol": "TOPIA", - "decimals": 18 + name: "TOPIA", + symbol: "TOPIA", + decimals: 18, }, "29536": { - "name": "KaiChain Testnet Native Token", - "symbol": "KEC", - "decimals": 18 + name: "KaiChain Testnet Native Token", + symbol: "KEC", + decimals: 18, }, "29548": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "30067": { - "name": "ECE", - "symbol": "ECE", - "decimals": 18 + name: "ECE", + symbol: "ECE", + decimals: 18, }, "30088": { - "name": "Miyou", - "symbol": "MY", - "decimals": 18 + name: "Miyou", + symbol: "MY", + decimals: 18, }, "30103": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 + name: "Canxium", + symbol: "CAU", + decimals: 18, }, "30730": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 + name: "Move", + symbol: "MOVE", + decimals: 18, }, "30731": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 + name: "Move", + symbol: "MOVE", + decimals: 18, }, "30732": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 + name: "Move", + symbol: "MOVE", + decimals: 18, }, "31102": { - "name": "Ethersocial Network Ether", - "symbol": "ESN", - "decimals": 18 + name: "Ethersocial Network Ether", + symbol: "ESN", + decimals: 18, }, "31223": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 + name: "CloudTx", + symbol: "CLD", + decimals: 18, }, "31224": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 + name: "CloudTx", + symbol: "CLD", + decimals: 18, }, "31337": { - "name": "GoChain Coin", - "symbol": "GO", - "decimals": 18 + name: "GoChain Coin", + symbol: "GO", + decimals: 18, }, "31414": { - "name": "MTHN Testnet", - "symbol": "MTHN", - "decimals": 18 + name: "MTHN Testnet", + symbol: "MTHN", + decimals: 18, }, "31753": { - "name": "Intdestcoin", - "symbol": "INTD", - "decimals": 18 + name: "Intdestcoin", + symbol: "INTD", + decimals: 18, }, "31754": { - "name": "Intdestcoin Testnet", - "symbol": "INTD", - "decimals": 18 + name: "Intdestcoin Testnet", + symbol: "INTD", + decimals: 18, }, "32001": { - "name": "W3Gamez Testnet Ether", - "symbol": "ETH", - "decimals": 18 + name: "W3Gamez Testnet Ether", + symbol: "ETH", + decimals: 18, }, "32382": { - "name": "SANR", - "symbol": "SANR", - "decimals": 18 + name: "SANR", + symbol: "SANR", + decimals: 18, }, "32520": { - "name": "Bitrise Token", - "symbol": "Brise", - "decimals": 18 + name: "Bitrise Token", + symbol: "Brise", + decimals: 18, }, "32659": { - "name": "Fusion", - "symbol": "FSN", - "decimals": 18 + name: "Fusion", + symbol: "FSN", + decimals: 18, }, "32769": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "32990": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "33033": { - "name": "Entangle", - "symbol": "NGL", - "decimals": 18 + name: "Entangle", + symbol: "NGL", + decimals: 18, }, "33101": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "33133": { - "name": "Entangle", - "symbol": "NGL", - "decimals": 18 + name: "Entangle", + symbol: "NGL", + decimals: 18, }, "33210": { - "name": "XCLOUD", - "symbol": "XCLOUD", - "decimals": 18 + name: "XCLOUD", + symbol: "XCLOUD", + decimals: 18, }, "33333": { - "name": "Aves", - "symbol": "AVS", - "decimals": 18 + name: "Aves", + symbol: "AVS", + decimals: 18, }, "33385": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "33469": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "33979": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "34443": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "35011": { - "name": "TARO Coin", - "symbol": "taro", - "decimals": 18 + name: "TARO Coin", + symbol: "taro", + decimals: 18, }, "35441": { - "name": "QGOV", - "symbol": "QGOV", - "decimals": 18 + name: "QGOV", + symbol: "QGOV", + decimals: 18, }, "35443": { - "name": "Q token", - "symbol": "Q", - "decimals": 18 + name: "Q token", + symbol: "Q", + decimals: 18, }, "38400": { - "name": "Rangers Protocol Gas", - "symbol": "cmRPG", - "decimals": 18 + name: "Rangers Protocol Gas", + symbol: "cmRPG", + decimals: 18, }, "38401": { - "name": "Rangers Protocol Gas", - "symbol": "ttRPG", - "decimals": 18 + name: "Rangers Protocol Gas", + symbol: "ttRPG", + decimals: 18, }, "39656": { - "name": "Primal Network", - "symbol": "PRM", - "decimals": 18 + name: "Primal Network", + symbol: "PRM", + decimals: 18, }, "39797": { - "name": "Energi", - "symbol": "NRG", - "decimals": 18 + name: "Energi", + symbol: "NRG", + decimals: 18, }, "39815": { - "name": "OHO", - "symbol": "OHO", - "decimals": 18 + name: "OHO", + symbol: "OHO", + decimals: 18, }, "41500": { - "name": "Oxyn Gas", - "symbol": "OXYN", - "decimals": 18 + name: "Oxyn Gas", + symbol: "OXYN", + decimals: 18, }, "42069": { - "name": "pegglecoin", - "symbol": "peggle", - "decimals": 18 + name: "pegglecoin", + symbol: "peggle", + decimals: 18, }, "42072": { - "name": "Agent", - "symbol": "AGENT", - "decimals": 18 + name: "Agent", + symbol: "AGENT", + decimals: 18, }, "42161": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "42170": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "42220": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 + name: "CELO", + symbol: "CELO", + decimals: 18, }, "42261": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 + name: "Emerald Rose", + symbol: "ROSE", + decimals: 18, }, "42262": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 + name: "Emerald Rose", + symbol: "ROSE", + decimals: 18, }, "42355": { - "name": "GoldX", - "symbol": "GOLDX", - "decimals": 18 + name: "GoldX", + symbol: "GOLDX", + decimals: 18, }, "42766": { - "name": "USDC Token", - "symbol": "USDC", - "decimals": 18 + name: "USDC Token", + symbol: "USDC", + decimals: 18, }, "42793": { - "name": "tez", - "symbol": "XTZ", - "decimals": 18 + name: "tez", + symbol: "XTZ", + decimals: 18, }, "42801": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "42888": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "43110": { - "name": "Athereum Ether", - "symbol": "ATH", - "decimals": 18 + name: "Athereum Ether", + symbol: "ATH", + decimals: 18, }, "43111": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "43113": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 + name: "Avalanche", + symbol: "AVAX", + decimals: 18, }, "43114": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 + name: "Avalanche", + symbol: "AVAX", + decimals: 18, }, "43851": { - "name": "USDC Token", - "symbol": "USDC", - "decimals": 18 + name: "USDC Token", + symbol: "USDC", + decimals: 18, }, "44444": { - "name": "FREN", - "symbol": "FREN", - "decimals": 18 + name: "FREN", + symbol: "FREN", + decimals: 18, }, "44445": { - "name": "Quantum", - "symbol": "QTM", - "decimals": 18 + name: "Quantum", + symbol: "QTM", + decimals: 18, }, "44787": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 + name: "CELO", + symbol: "CELO", + decimals: 18, }, "45000": { - "name": "TXL", - "symbol": "TXL", - "decimals": 18 + name: "TXL", + symbol: "TXL", + decimals: 18, }, "45454": { - "name": "SWP", - "symbol": "SWP", - "decimals": 18 + name: "SWP", + symbol: "SWP", + decimals: 18, }, "45510": { - "name": "Deelance", - "symbol": "DEE", - "decimals": 18 + name: "Deelance", + symbol: "DEE", + decimals: 18, }, "46688": { - "name": "Testnet Fusion", - "symbol": "T-FSN", - "decimals": 18 + name: "Testnet Fusion", + symbol: "T-FSN", + decimals: 18, }, "47805": { - "name": "REI", - "symbol": "REI", - "decimals": 18 + name: "REI", + symbol: "REI", + decimals: 18, }, "48795": { - "name": "FUEL", - "symbol": "FUEL", - "decimals": 18 + name: "FUEL", + symbol: "FUEL", + decimals: 18, }, "48899": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "49049": { - "name": "WIRE", - "symbol": "WIRE", - "decimals": 18 + name: "WIRE", + symbol: "WIRE", + decimals: 18, }, "49088": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 + name: "Bifrost", + symbol: "BFC", + decimals: 18, }, "49321": { - "name": "GUN", - "symbol": "GUN", - "decimals": 18 + name: "GUN", + symbol: "GUN", + decimals: 18, }, "49797": { - "name": "Energi", - "symbol": "NRG", - "decimals": 18 + name: "Energi", + symbol: "NRG", + decimals: 18, }, "50001": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "50005": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "50006": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "50021": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 + name: "GCD", + symbol: "GCD", + decimals: 18, }, "51178": { - "name": "Lumoz Test Token", - "symbol": "MOZ", - "decimals": 18 + name: "Lumoz Test Token", + symbol: "MOZ", + decimals: 18, }, "51712": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 + name: "Sardis", + symbol: "SRDX", + decimals: 18, }, "52014": { - "name": "Electroneum", - "symbol": "ETN", - "decimals": 18 + name: "Electroneum", + symbol: "ETN", + decimals: 18, }, "53277": { - "name": "DOID", - "symbol": "DOID", - "decimals": 18 + name: "DOID", + symbol: "DOID", + decimals: 18, }, "53302": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "53457": { - "name": "DODO", - "symbol": "DODO", - "decimals": 18 + name: "DODO", + symbol: "DODO", + decimals: 18, }, "53935": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 + name: "Jewel", + symbol: "JEWEL", + decimals: 18, }, "54211": { - "name": "Islamic Coin", - "symbol": "ISLMT", - "decimals": 18 + name: "Islamic Coin", + symbol: "ISLMT", + decimals: 18, }, "54321": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 + name: "Toro", + symbol: "TORO", + decimals: 18, }, "54555": { - "name": "Photon", - "symbol": "PTON", - "decimals": 18 + name: "Photon", + symbol: "PTON", + decimals: 18, }, "55004": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "55555": { - "name": "Rei", - "symbol": "REI", - "decimals": 18 + name: "Rei", + symbol: "REI", + decimals: 18, }, "55556": { - "name": "tRei", - "symbol": "tREI", - "decimals": 18 + name: "tRei", + symbol: "tREI", + decimals: 18, }, "56026": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "56288": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 + name: "Boba Token", + symbol: "BOBA", + decimals: 18, }, "56400": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 + name: "ZERO", + symbol: "ZERO", + decimals: 18, }, "56789": { - "name": "Nova", - "symbol": "NOVA", - "decimals": 18 + name: "Nova", + symbol: "NOVA", + decimals: 18, }, "56797": { - "name": "DOID", - "symbol": "DOID", - "decimals": 18 + name: "DOID", + symbol: "DOID", + decimals: 18, }, "57000": { - "name": "Testnet Syscoin", - "symbol": "TSYS", - "decimals": 18 + name: "Testnet Syscoin", + symbol: "TSYS", + decimals: 18, }, "57451": { - "name": "COINSEC", - "symbol": "SEC", - "decimals": 18 + name: "COINSEC", + symbol: "SEC", + decimals: 18, }, "58008": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "59140": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 + name: "Linea Ether", + symbol: "ETH", + decimals: 18, }, "59141": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 + name: "Linea Ether", + symbol: "ETH", + decimals: 18, }, "59144": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 + name: "Linea Ether", + symbol: "ETH", + decimals: 18, }, "59971": { - "name": "GenesysCode", - "symbol": "GCODE", - "decimals": 18 + name: "GenesysCode", + symbol: "GCODE", + decimals: 18, }, "60000": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "60001": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "60002": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "60103": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "60808": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "61406": { - "name": "KaiChain Native Token", - "symbol": "KEC", - "decimals": 18 + name: "KaiChain Native Token", + symbol: "KEC", + decimals: 18, }, "61800": { - "name": "Axelium", - "symbol": "AIUM", - "decimals": 18 + name: "Axelium", + symbol: "AIUM", + decimals: 18, }, "61803": { - "name": "EGAZ", - "symbol": "EGAZ", - "decimals": 18 + name: "EGAZ", + symbol: "EGAZ", + decimals: 18, }, "61916": { - "name": "DoKEN", - "symbol": "DKN", - "decimals": 18 + name: "DoKEN", + symbol: "DKN", + decimals: 18, }, "62049": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "62050": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "62298": { - "name": "Citrea BTC", - "symbol": "cBTC", - "decimals": 18 + name: "Citrea BTC", + symbol: "cBTC", + decimals: 18, }, "62320": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 + name: "CELO", + symbol: "CELO", + decimals: 18, }, "62621": { - "name": "MultiVAC", - "symbol": "MTV", - "decimals": 18 + name: "MultiVAC", + symbol: "MTV", + decimals: 18, }, "62831": { - "name": "PLYR", - "symbol": "PLYR", - "decimals": 18 + name: "PLYR", + symbol: "PLYR", + decimals: 18, }, "63000": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 + name: "eCredits", + symbol: "ECS", + decimals: 18, }, "63001": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 + name: "eCredits", + symbol: "ECS", + decimals: 18, }, "65450": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 + name: "Scolcoin", + symbol: "SCOL", + decimals: 18, }, "66988": { - "name": "Janus", - "symbol": "JNS", - "decimals": 18 + name: "Janus", + symbol: "JNS", + decimals: 18, }, "67588": { - "name": "Cosmic Chain", - "symbol": "COSMIC", - "decimals": 18 + name: "Cosmic Chain", + symbol: "COSMIC", + decimals: 18, }, "68770": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "69420": { - "name": "Condrieu Testnet Ether", - "symbol": "CTE", - "decimals": 18 + name: "Condrieu Testnet Ether", + symbol: "CTE", + decimals: 18, }, "70000": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "70001": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "70002": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "70103": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "70700": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "71111": { - "name": "GuapcoinX", - "symbol": "GuapX", - "decimals": 18 + name: "GuapcoinX", + symbol: "GuapX", + decimals: 18, }, "71393": { - "name": "CKB", - "symbol": "CKB", - "decimals": 8 + name: "CKB", + symbol: "CKB", + decimals: 8, }, "71401": { - "name": "pCKB", - "symbol": "pCKB", - "decimals": 18 + name: "pCKB", + symbol: "pCKB", + decimals: 18, }, "71402": { - "name": "pCKB", - "symbol": "pCKB", - "decimals": 18 + name: "pCKB", + symbol: "pCKB", + decimals: 18, }, "72778": { - "name": "Caga", - "symbol": "CAGA", - "decimals": 18 + name: "Caga", + symbol: "CAGA", + decimals: 18, }, "72992": { - "name": "Groc", - "symbol": "GROC", - "decimals": 18 + name: "Groc", + symbol: "GROC", + decimals: 18, }, "73114": { - "name": "ICB Testnet Token", - "symbol": "ICBT", - "decimals": 18 + name: "ICB Testnet Token", + symbol: "ICBT", + decimals: 18, }, "73115": { - "name": "ICB Native Token", - "symbol": "ICBX", - "decimals": 18 + name: "ICB Native Token", + symbol: "ICBX", + decimals: 18, }, "73799": { - "name": "Volta Token", - "symbol": "VT", - "decimals": 18 + name: "Volta Token", + symbol: "VT", + decimals: 18, }, "73927": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "75000": { - "name": "Ether", - "symbol": "RESIN", - "decimals": 18 + name: "Ether", + symbol: "RESIN", + decimals: 18, }, "75512": { - "name": "Geek", - "symbol": "GEEK", - "decimals": 18 + name: "Geek", + symbol: "GEEK", + decimals: 18, }, "75513": { - "name": "Geek", - "symbol": "GEEK", - "decimals": 18 + name: "Geek", + symbol: "GEEK", + decimals: 18, }, "77001": { - "name": "BORA", - "symbol": "BORA", - "decimals": 18 + name: "BORA", + symbol: "BORA", + decimals: 18, }, "77238": { - "name": "Foundry Chain Testnet", - "symbol": "tFNC", - "decimals": 18 + name: "Foundry Chain Testnet", + symbol: "tFNC", + decimals: 18, }, "77612": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 + name: "VNT", + symbol: "VNT", + decimals: 18, }, "77777": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 + name: "Toro", + symbol: "TORO", + decimals: 18, }, "78110": { - "name": "Firenze Ether", - "symbol": "FIN", - "decimals": 18 + name: "Firenze Ether", + symbol: "FIN", + decimals: 18, }, "78281": { - "name": "Dragonfly", - "symbol": "DFLY", - "decimals": 18 + name: "Dragonfly", + symbol: "DFLY", + decimals: 18, }, "78430": { - "name": "AMP", - "symbol": "AMP", - "decimals": 18 + name: "AMP", + symbol: "AMP", + decimals: 18, }, "78431": { - "name": "BLT", - "symbol": "BLT", - "decimals": 18 + name: "BLT", + symbol: "BLT", + decimals: 18, }, "78432": { - "name": "CON", - "symbol": "CON", - "decimals": 18 + name: "CON", + symbol: "CON", + decimals: 18, }, "78600": { - "name": "Vanguard Vanry", - "symbol": "VANRY", - "decimals": 18 + name: "Vanguard Vanry", + symbol: "VANRY", + decimals: 18, }, "79879": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 + name: "Standard in Gold", + symbol: "STAND", + decimals: 18, }, "80001": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: "MATIC", + symbol: "MATIC", + decimals: 18, }, "80002": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: "MATIC", + symbol: "MATIC", + decimals: 18, }, "80085": { - "name": "BERA Token", - "symbol": "BERA", - "decimals": 18 + name: "BERA Token", + symbol: "BERA", + decimals: 18, }, "80096": { - "name": "Hizoco", - "symbol": "HZC", - "decimals": 18 + name: "Hizoco", + symbol: "HZC", + decimals: 18, }, "81041": { - "name": "NRK", - "symbol": "NRK", - "decimals": 18 + name: "NRK", + symbol: "NRK", + decimals: 18, }, "81341": { - "name": "Amana Testnet", - "symbol": "MEER-T", - "decimals": 18 + name: "Amana Testnet", + symbol: "MEER-T", + decimals: 18, }, "81342": { - "name": "Amana Mixnet", - "symbol": "MEER-M", - "decimals": 18 + name: "Amana Mixnet", + symbol: "MEER-M", + decimals: 18, }, "81343": { - "name": "Amana Privnet", - "symbol": "MEER-P", - "decimals": 18 + name: "Amana Privnet", + symbol: "MEER-P", + decimals: 18, }, "81351": { - "name": "Flana Testnet", - "symbol": "MEER-T", - "decimals": 18 + name: "Flana Testnet", + symbol: "MEER-T", + decimals: 18, }, "81352": { - "name": "Flana Mixnet", - "symbol": "MEER-M", - "decimals": 18 + name: "Flana Mixnet", + symbol: "MEER-M", + decimals: 18, }, "81353": { - "name": "Flana Privnet", - "symbol": "MEER-P", - "decimals": 18 + name: "Flana Privnet", + symbol: "MEER-P", + decimals: 18, }, "81361": { - "name": "Mizana Testnet", - "symbol": "MEER-T", - "decimals": 18 + name: "Mizana Testnet", + symbol: "MEER-T", + decimals: 18, }, "81362": { - "name": "Mizana Mixnet", - "symbol": "MEER-M", - "decimals": 18 + name: "Mizana Mixnet", + symbol: "MEER-M", + decimals: 18, }, "81363": { - "name": "Mizana Privnet", - "symbol": "MEER-P", - "decimals": 18 + name: "Mizana Privnet", + symbol: "MEER-P", + decimals: 18, }, "81457": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "81720": { - "name": "Quantum Chain", - "symbol": "QNET", - "decimals": 18 + name: "Quantum Chain", + symbol: "QNET", + decimals: 18, }, "82459": { - "name": "Service Unit Token", - "symbol": "SU", - "decimals": 18 + name: "Service Unit Token", + symbol: "SU", + decimals: 18, }, "83872": { - "name": "Zedxion", - "symbol": "ZEDX", - "decimals": 9 + name: "Zedxion", + symbol: "ZEDX", + decimals: 9, }, "84531": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: "Goerli Ether", + symbol: "ETH", + decimals: 18, }, "84532": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "84886": { - "name": "Aerie", - "symbol": "AER", - "decimals": 18 + name: "Aerie", + symbol: "AER", + decimals: 18, }, "85449": { - "name": "Cyber Trust", - "symbol": "CYBER", - "decimals": 18 + name: "Cyber Trust", + symbol: "CYBER", + decimals: 18, }, "88002": { - "name": "Zebec Test Token", - "symbol": "tZBC", - "decimals": 18 + name: "Zebec Test Token", + symbol: "tZBC", + decimals: 18, }, "88559": { - "name": "Inoai", - "symbol": "INO", - "decimals": 18 + name: "Inoai", + symbol: "INO", + decimals: 18, }, "88817": { - "name": "UNIT0", - "symbol": "UNIT0", - "decimals": 18 + name: "UNIT0", + symbol: "UNIT0", + decimals: 18, }, "88819": { - "name": "UNIT0", - "symbol": "UNIT0", - "decimals": 18 + name: "UNIT0", + symbol: "UNIT0", + decimals: 18, }, "88882": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 + name: "Chiliz", + symbol: "CHZ", + decimals: 18, }, "88888": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 + name: "Chiliz", + symbol: "CHZ", + decimals: 18, }, "90001": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 + name: "Function X", + symbol: "FX", + decimals: 18, }, "90210": { - "name": "Beverly Hills Testnet Ether", - "symbol": "BVE", - "decimals": 18 + name: "Beverly Hills Testnet Ether", + symbol: "BVE", + decimals: 18, }, "90354": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "91002": { - "name": "Nautilus Zebec Testnet Tokens", - "symbol": "tZBC", - "decimals": 18 + name: "Nautilus Zebec Testnet Tokens", + symbol: "tZBC", + decimals: 18, }, "91120": { - "name": "DAP", - "symbol": "DAP", - "decimals": 18 + name: "DAP", + symbol: "DAP", + decimals: 18, }, "91715": { - "name": "BNB Chain Native Token", - "symbol": "tcBNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "tcBNB", + decimals: 18, }, "92001": { - "name": "test-Lamb", - "symbol": "LAMB", - "decimals": 18 + name: "test-Lamb", + symbol: "LAMB", + decimals: 18, }, "93572": { - "name": "LiquidLayer Testnet", - "symbol": "LILA", - "decimals": 18 + name: "LiquidLayer Testnet", + symbol: "LILA", + decimals: 18, }, "96970": { - "name": "Mantis", - "symbol": "MANTIS", - "decimals": 18 + name: "Mantis", + symbol: "MANTIS", + decimals: 18, }, "97531": { - "name": "GREEN", - "symbol": "GREEN", - "decimals": 18 + name: "GREEN", + symbol: "GREEN", + decimals: 18, }, "97970": { - "name": "OptimusZ7", - "symbol": "OZ7", - "decimals": 18 + name: "OptimusZ7", + symbol: "OZ7", + decimals: 18, }, "98881": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "99099": { - "name": "eLiberty", - "symbol": "$EL", - "decimals": 18 + name: "eLiberty", + symbol: "$EL", + decimals: 18, }, "99998": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 + name: "UBC", + symbol: "UBC", + decimals: 18, }, "99999": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 + name: "UBC", + symbol: "UBC", + decimals: 18, }, "100000": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100001": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100002": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100003": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100004": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100005": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100006": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100007": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100008": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100009": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 + name: "VeChain", + symbol: "VET", + decimals: 18, }, "100010": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 + name: "VeChain", + symbol: "VET", + decimals: 18, }, "100011": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "101010": { - "name": "FREE", - "symbol": "FREE", - "decimals": 18 + name: "FREE", + symbol: "FREE", + decimals: 18, }, "102031": { - "name": "Testnet CTC", - "symbol": "tCTC", - "decimals": 18 + name: "Testnet CTC", + symbol: "tCTC", + decimals: 18, }, "103090": { - "name": "CRFI", - "symbol": "◈", - "decimals": 18 + name: "CRFI", + symbol: "◈", + decimals: 18, }, "103454": { - "name": "Masa Token", - "symbol": "MASA", - "decimals": 18 + name: "Masa Token", + symbol: "MASA", + decimals: 18, }, "104566": { - "name": "KaspaClassic", - "symbol": "CAS", - "decimals": 18 + name: "KaspaClassic", + symbol: "CAS", + decimals: 18, }, "105105": { - "name": "Stratis", - "symbol": "STRAX", - "decimals": 18 + name: "Stratis", + symbol: "STRAX", + decimals: 18, }, "108801": { - "name": "Brother", - "symbol": "BRO", - "decimals": 18 + name: "Brother", + symbol: "BRO", + decimals: 18, }, "110000": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110001": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110002": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110003": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110004": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110005": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110006": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110007": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110008": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110011": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "111000": { - "name": "TestSIBR", - "symbol": "SIBR", - "decimals": 18 + name: "TestSIBR", + symbol: "SIBR", + decimals: 18, }, "111111": { - "name": "Siberium", - "symbol": "SIBR", - "decimals": 18 + name: "Siberium", + symbol: "SIBR", + decimals: 18, }, "111188": { - "name": "re.al Ether", - "symbol": "reETH", - "decimals": 18 + name: "re.al Ether", + symbol: "reETH", + decimals: 18, }, "112358": { - "name": "Metao", - "symbol": "METAO", - "decimals": 18 + name: "Metao", + symbol: "METAO", + decimals: 18, }, "119139": { - "name": "DAP", - "symbol": "DAP", - "decimals": 18 + name: "DAP", + symbol: "DAP", + decimals: 18, }, "123456": { - "name": "Devnet ADIL", - "symbol": "ADIL", - "decimals": 18 + name: "Devnet ADIL", + symbol: "ADIL", + decimals: 18, }, "128123": { - "name": "tez", - "symbol": "XTZ", - "decimals": 18 + name: "tez", + symbol: "XTZ", + decimals: 18, }, "131313": { - "name": "DIONE", - "symbol": "DIONE", - "decimals": 18 + name: "DIONE", + symbol: "DIONE", + decimals: 18, }, "131419": { - "name": "ETND", - "symbol": "ETND", - "decimals": 18 + name: "ETND", + symbol: "ETND", + decimals: 18, }, "132902": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "141319": { - "name": "MagApe", - "symbol": "MAG", - "decimals": 18 + name: "MagApe", + symbol: "MAG", + decimals: 18, }, "142857": { - "name": "ict", - "symbol": "ict", - "decimals": 18 + name: "ict", + symbol: "ict", + decimals: 18, }, "161212": { - "name": "Play", - "symbol": "PLAY", - "decimals": 18 + name: "Play", + symbol: "PLAY", + decimals: 18, }, "165279": { - "name": "Eclat", - "symbol": "ECLAT", - "decimals": 18 + name: "Eclat", + symbol: "ECLAT", + decimals: 18, }, "167000": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "167008": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "167009": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "188710": { - "name": "Bitica Coin", - "symbol": "BDCC", - "decimals": 18 + name: "Bitica Coin", + symbol: "BDCC", + decimals: 18, }, "188881": { - "name": "Condor Native Token", - "symbol": "CONDOR", - "decimals": 18 + name: "Condor Native Token", + symbol: "CONDOR", + decimals: 18, }, "192940": { - "name": "FHE", - "symbol": "FHE", - "decimals": 18 + name: "FHE", + symbol: "FHE", + decimals: 18, }, "200000": { - "name": "FAI", - "symbol": "FAI", - "decimals": 18 + name: "FAI", + symbol: "FAI", + decimals: 18, }, "200101": { - "name": "milkTAda", - "symbol": "mTAda", - "decimals": 18 + name: "milkTAda", + symbol: "mTAda", + decimals: 18, }, "200202": { - "name": "milkTAlgo", - "symbol": "mTAlgo", - "decimals": 18 + name: "milkTAlgo", + symbol: "mTAlgo", + decimals: 18, }, "200625": { - "name": "Akroma Ether", - "symbol": "AKA", - "decimals": 18 + name: "Akroma Ether", + symbol: "AKA", + decimals: 18, }, "200810": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "200901": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "201018": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 + name: "ATP", + symbol: "atp", + decimals: 18, }, "201030": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 + name: "ATP", + symbol: "atp", + decimals: 18, }, "201804": { - "name": "Mythos", - "symbol": "MYTH", - "decimals": 18 + name: "Mythos", + symbol: "MYTH", + decimals: 18, }, "202020": { - "name": "Decimal", - "symbol": "tDEL", - "decimals": 18 + name: "Decimal", + symbol: "tDEL", + decimals: 18, }, "202212": { - "name": "XN", - "symbol": "XN", - "decimals": 18 + name: "XN", + symbol: "XN", + decimals: 18, }, "202401": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "202624": { - "name": "Twala Coin", - "symbol": "TWL", - "decimals": 18 + name: "Twala Coin", + symbol: "TWL", + decimals: 18, }, "204005": { - "name": "XN", - "symbol": "XN", - "decimals": 18 + name: "XN", + symbol: "XN", + decimals: 18, }, "205205": { - "name": "Auroria Stratis", - "symbol": "tSTRAX", - "decimals": 18 + name: "Auroria Stratis", + symbol: "tSTRAX", + decimals: 18, }, "210049": { - "name": "GitAGI", - "symbol": "tGAGI", - "decimals": 18 + name: "GitAGI", + symbol: "tGAGI", + decimals: 18, }, "210425": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 + name: "LAT", + symbol: "lat", + decimals: 18, }, "220315": { - "name": "Master Bank", - "symbol": "MAS", - "decimals": 18 + name: "Master Bank", + symbol: "MAS", + decimals: 18, }, "221230": { - "name": "Reap", - "symbol": "REAP", - "decimals": 18 + name: "Reap", + symbol: "REAP", + decimals: 18, }, "221231": { - "name": "test-Reap", - "symbol": "tREAP", - "decimals": 18 + name: "test-Reap", + symbol: "tREAP", + decimals: 18, }, "222222": { - "name": "Wrapped ETH", - "symbol": "WETH", - "decimals": 18 + name: "Wrapped ETH", + symbol: "WETH", + decimals: 18, }, "222555": { - "name": "DeepL", - "symbol": "DEEPL", - "decimals": 18 + name: "DeepL", + symbol: "DEEPL", + decimals: 18, }, "222666": { - "name": "DeepL", - "symbol": "DEEPL", - "decimals": 18 + name: "DeepL", + symbol: "DEEPL", + decimals: 18, }, "224168": { - "name": "Taf ECO Chain Mainnet", - "symbol": "TAFECO", - "decimals": 18 + name: "Taf ECO Chain Mainnet", + symbol: "TAFECO", + decimals: 18, }, "224422": { - "name": "CONET Sebolia", - "symbol": "CONET", - "decimals": 18 + name: "CONET Sebolia", + symbol: "CONET", + decimals: 18, }, "224433": { - "name": "CONET Holesky", - "symbol": "CONET", - "decimals": 18 + name: "CONET Holesky", + symbol: "CONET", + decimals: 18, }, "230315": { - "name": "HashKey Token", - "symbol": "tHSK", - "decimals": 18 + name: "HashKey Token", + symbol: "tHSK", + decimals: 18, }, "234666": { - "name": "HAYMO", - "symbol": "HYM", - "decimals": 18 + name: "HAYMO", + symbol: "HYM", + decimals: 18, }, "240515": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "246529": { - "name": "ARTIS sigma1 Ether", - "symbol": "ATS", - "decimals": 18 + name: "ARTIS sigma1 Ether", + symbol: "ATS", + decimals: 18, }, "246785": { - "name": "ARTIS tau1 Ether", - "symbol": "tATS", - "decimals": 18 + name: "ARTIS tau1 Ether", + symbol: "tATS", + decimals: 18, }, "247253": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "256256": { - "name": "Caduceus Token", - "symbol": "CMP", - "decimals": 18 + name: "Caduceus Token", + symbol: "CMP", + decimals: 18, }, "262371": { - "name": "Eclat Testnet", - "symbol": "ECLAT", - "decimals": 18 + name: "Eclat Testnet", + symbol: "ECLAT", + decimals: 18, }, "266256": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 + name: "Gear Zero Network Native Token", + symbol: "GZN", + decimals: 18, }, "271271": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 + name: "EgonCoin", + symbol: "EGON", + decimals: 18, }, "281121": { - "name": "SoChain", - "symbol": "$OC", - "decimals": 18 + name: "SoChain", + symbol: "$OC", + decimals: 18, }, "282828": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "309075": { - "name": "OWCT", - "symbol": "OWCT", - "decimals": 18 + name: "OWCT", + symbol: "OWCT", + decimals: 18, }, "313313": { - "name": "SAHARA", - "symbol": "SAH", - "decimals": 18 + name: "SAHARA", + symbol: "SAH", + decimals: 18, }, "314159": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 + name: "testnet filecoin", + symbol: "tFIL", + decimals: 18, }, "322202": { - "name": "PAREX", - "symbol": "PRX", - "decimals": 18 + name: "PAREX", + symbol: "PRX", + decimals: 18, }, "323213": { - "name": "Bloom", - "symbol": "BGBC", - "decimals": 18 + name: "Bloom", + symbol: "BGBC", + decimals: 18, }, "330844": { - "name": "TTcoin", - "symbol": "TC", - "decimals": 18 + name: "TTcoin", + symbol: "TC", + decimals: 18, }, "333313": { - "name": "Bloom", - "symbol": "BGBC", - "decimals": 18 + name: "Bloom", + symbol: "BGBC", + decimals: 18, }, "333331": { - "name": "AvesT", - "symbol": "AVST", - "decimals": 18 + name: "AvesT", + symbol: "AVST", + decimals: 18, }, "333333": { - "name": "USNT", - "symbol": "USNT", - "decimals": 18 + name: "USNT", + symbol: "USNT", + decimals: 18, }, "333666": { - "name": "tOONE", - "symbol": "tOONE", - "decimals": 18 + name: "tOONE", + symbol: "tOONE", + decimals: 18, }, "333777": { - "name": "tOONE", - "symbol": "tOONE", - "decimals": 18 + name: "tOONE", + symbol: "tOONE", + decimals: 18, }, "333888": { - "name": "tPolis", - "symbol": "tPOLIS", - "decimals": 18 + name: "tPolis", + symbol: "tPOLIS", + decimals: 18, }, "333999": { - "name": "Polis", - "symbol": "POLIS", - "decimals": 18 + name: "Polis", + symbol: "POLIS", + decimals: 18, }, "336655": { - "name": "UBTC", - "symbol": "UBTC", - "decimals": 18 + name: "UBTC", + symbol: "UBTC", + decimals: 18, }, "336666": { - "name": "UBTC", - "symbol": "UBTC", - "decimals": 18 + name: "UBTC", + symbol: "UBTC", + decimals: 18, }, "355110": { - "name": "Bitfinity Token", - "symbol": "BFT", - "decimals": 18 + name: "Bitfinity Token", + symbol: "BFT", + decimals: 18, }, "355113": { - "name": "Bitfinity Token", - "symbol": "BFT", - "decimals": 18 + name: "Bitfinity Token", + symbol: "BFT", + decimals: 18, }, "360890": { - "name": "vTFUEL", - "symbol": "vTFUEL", - "decimals": 18 + name: "vTFUEL", + symbol: "vTFUEL", + decimals: 18, }, "363636": { - "name": "Digit Coin", - "symbol": "DGC", - "decimals": 18 + name: "Digit Coin", + symbol: "DGC", + decimals: 18, }, "373737": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 + name: "HAP", + symbol: "HAP", + decimals: 18, }, "381931": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 + name: "Metal", + symbol: "METAL", + decimals: 18, }, "381932": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 + name: "Metal", + symbol: "METAL", + decimals: 18, }, "404040": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 + name: "Tipboxcoin", + symbol: "TPBX", + decimals: 18, }, "413413": { - "name": "AIE", - "symbol": "tAIE", - "decimals": 18 + name: "AIE", + symbol: "tAIE", + decimals: 18, }, "420420": { - "name": "KEK", - "symbol": "KEK", - "decimals": 18 + name: "KEK", + symbol: "KEK", + decimals: 18, }, "420666": { - "name": "tKEK", - "symbol": "tKEK", - "decimals": 18 + name: "tKEK", + symbol: "tKEK", + decimals: 18, }, "420692": { - "name": "Alterium ETH", - "symbol": "AltETH", - "decimals": 18 + name: "Alterium ETH", + symbol: "AltETH", + decimals: 18, }, "421611": { - "name": "Arbitrum Rinkeby Ether", - "symbol": "ETH", - "decimals": 18 + name: "Arbitrum Rinkeby Ether", + symbol: "ETH", + decimals: 18, }, "421613": { - "name": "Arbitrum Goerli Ether", - "symbol": "AGOR", - "decimals": 18 + name: "Arbitrum Goerli Ether", + symbol: "AGOR", + decimals: 18, }, "421614": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "424242": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 + name: "FTN", + symbol: "FTN", + decimals: 18, }, "431140": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 + name: "Avalanche", + symbol: "AVAX", + decimals: 18, }, "432201": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 + name: "Dexalot", + symbol: "ALOT", + decimals: 18, }, "432204": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 + name: "Dexalot", + symbol: "ALOT", + decimals: 18, }, "444444": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "444900": { - "name": "Weelink Chain Token", - "symbol": "tWLK", - "decimals": 18 + name: "Weelink Chain Token", + symbol: "tWLK", + decimals: 18, }, "471100": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "473861": { - "name": "Ultra Pro", - "symbol": "UPRO", - "decimals": 18 + name: "Ultra Pro", + symbol: "UPRO", + decimals: 18, }, "474142": { - "name": "OpenCoin", - "symbol": "OPC", - "decimals": 10 + name: "OpenCoin", + symbol: "OPC", + decimals: 10, }, "504441": { - "name": "Playdapp", - "symbol": "PDA", - "decimals": 18 + name: "Playdapp", + symbol: "PDA", + decimals: 18, }, "512512": { - "name": "Caduceus Testnet Token", - "symbol": "CMP", - "decimals": 18 + name: "Caduceus Testnet Token", + symbol: "CMP", + decimals: 18, }, "513100": { - "name": "DisChain", - "symbol": "DIS", - "decimals": 18 + name: "DisChain", + symbol: "DIS", + decimals: 18, }, "526916": { - "name": "DO", - "symbol": "DCT", - "decimals": 18 + name: "DO", + symbol: "DCT", + decimals: 18, }, "534351": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "534352": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "534849": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 + name: "Shina Inu", + symbol: "SHI", + decimals: 18, }, "535037": { - "name": "BeanEco SmartChain", - "symbol": "BESC", - "decimals": 18 + name: "BeanEco SmartChain", + symbol: "BESC", + decimals: 18, }, "552981": { - "name": "OWCT", - "symbol": "OWCT", - "decimals": 18 + name: "OWCT", + symbol: "OWCT", + decimals: 18, }, "555555": { - "name": "Pentagon", - "symbol": "PEN", - "decimals": 18 + name: "Pentagon", + symbol: "PEN", + decimals: 18, }, "555666": { - "name": "Eclipse", - "symbol": "ECLPS", - "decimals": 18 + name: "Eclipse", + symbol: "ECLPS", + decimals: 18, }, "622277": { - "name": "Hypra", - "symbol": "HYP", - "decimals": 18 + name: "Hypra", + symbol: "HYP", + decimals: 18, }, "622463": { - "name": "TON", - "symbol": "TON", - "decimals": 18 + name: "TON", + symbol: "TON", + decimals: 18, }, "641230": { - "name": "Bear Network Chain Native Token", - "symbol": "BRNKC", - "decimals": 18 + name: "Bear Network Chain Native Token", + symbol: "BRNKC", + decimals: 18, }, "651940": { - "name": "ALL", - "symbol": "ALL", - "decimals": 18 + name: "ALL", + symbol: "ALL", + decimals: 18, }, "656476": { - "name": "EDU", - "symbol": "EDU", - "decimals": 18 + name: "EDU", + symbol: "EDU", + decimals: 18, }, "660279": { - "name": "Xai", - "symbol": "XAI", - "decimals": 18 + name: "Xai", + symbol: "XAI", + decimals: 18, }, "666666": { - "name": "VS", - "symbol": "VS", - "decimals": 18 + name: "VS", + symbol: "VS", + decimals: 18, }, "666888": { - "name": "Hela HLUSD", - "symbol": "HLUSD", - "decimals": 18 + name: "Hela HLUSD", + symbol: "HLUSD", + decimals: 18, }, "686868": { - "name": "Won", - "symbol": "WON", - "decimals": 18 + name: "Won", + symbol: "WON", + decimals: 18, }, "696969": { - "name": "Galadriel Devnet token", - "symbol": "GAL", - "decimals": 18 + name: "Galadriel Devnet token", + symbol: "GAL", + decimals: 18, }, "710420": { - "name": "TILT", - "symbol": "TILT", - "decimals": 18 + name: "TILT", + symbol: "TILT", + decimals: 18, }, "713715": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 + name: "Sei", + symbol: "SEI", + decimals: 18, }, "721529": { - "name": "ERAM", - "symbol": "ERAM", - "decimals": 18 + name: "ERAM", + symbol: "ERAM", + decimals: 18, }, "743111": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "751230": { - "name": "Bear Network Chain Testnet Token", - "symbol": "tBRNKC", - "decimals": 18 + name: "Bear Network Chain Testnet Token", + symbol: "tBRNKC", + decimals: 18, }, "761412": { - "name": "Miexs Coin", - "symbol": "MIX", - "decimals": 18 + name: "Miexs Coin", + symbol: "MIX", + decimals: 18, }, "764984": { - "name": "Lamina1 Test", - "symbol": "L1T", - "decimals": 18 + name: "Lamina1 Test", + symbol: "L1T", + decimals: 18, }, "767368": { - "name": "L1ID Test", - "symbol": "L1IDT", - "decimals": 18 + name: "L1ID Test", + symbol: "L1IDT", + decimals: 18, }, "776877": { - "name": "Modularium", - "symbol": "MDM", - "decimals": 18 + name: "Modularium", + symbol: "MDM", + decimals: 18, }, "800001": { - "name": "OctaSpace", - "symbol": "OCTA", - "decimals": 18 + name: "OctaSpace", + symbol: "OCTA", + decimals: 18, }, "808080": { - "name": "tBIZT", - "symbol": "tBIZT", - "decimals": 18 + name: "tBIZT", + symbol: "tBIZT", + decimals: 18, }, "810180": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "810181": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "810182": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "820522": { - "name": "TAS", - "symbol": "tTAS", - "decimals": 18 + name: "TAS", + symbol: "tTAS", + decimals: 18, }, "827431": { - "name": "Curve", - "symbol": "CURVE", - "decimals": 18 + name: "Curve", + symbol: "CURVE", + decimals: 18, }, "839320": { - "name": "Primal Network", - "symbol": "PRM", - "decimals": 18 + name: "Primal Network", + symbol: "PRM", + decimals: 18, }, "846000": { - "name": "APTA", - "symbol": "APTA", - "decimals": 18 + name: "APTA", + symbol: "APTA", + decimals: 18, }, "855456": { - "name": "Dodao", - "symbol": "DODAO", - "decimals": 18 + name: "Dodao", + symbol: "DODAO", + decimals: 18, }, "879151": { - "name": "BlocX", - "symbol": "BLX", - "decimals": 18 + name: "BlocX", + symbol: "BLX", + decimals: 18, }, "888882": { - "name": "REXX", - "symbol": "REXX", - "decimals": 18 + name: "REXX", + symbol: "REXX", + decimals: 18, }, "888888": { - "name": "VS", - "symbol": "VS", - "decimals": 18 + name: "VS", + symbol: "VS", + decimals: 18, }, "900000": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 + name: "Posichain Native Token", + symbol: "POSI", + decimals: 18, }, "910000": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 + name: "Posichain Native Token", + symbol: "POSI", + decimals: 18, }, "912559": { - "name": "RIA", - "symbol": "RIA", - "decimals": 18 + name: "RIA", + symbol: "RIA", + decimals: 18, }, "920000": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 + name: "Posichain Native Token", + symbol: "POSI", + decimals: 18, }, "920001": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 + name: "Posichain Native Token", + symbol: "POSI", + decimals: 18, }, "923018": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 + name: "FNCY", + symbol: "FNCY", + decimals: 18, }, "955081": { - "name": "Jono12 Token", - "symbol": "JONO", - "decimals": 18 + name: "Jono12 Token", + symbol: "JONO", + decimals: 18, }, "955305": { - "name": "ELV", - "symbol": "ELV", - "decimals": 18 + name: "ELV", + symbol: "ELV", + decimals: 18, }, "978657": { - "name": "Testnet MAGIC", - "symbol": "MAGIC", - "decimals": 18 + name: "Testnet MAGIC", + symbol: "MAGIC", + decimals: 18, }, "984122": { - "name": "TIA", - "symbol": "TIA", - "decimals": 18 + name: "TIA", + symbol: "TIA", + decimals: 18, }, "984123": { - "name": "TIA", - "symbol": "TIA", - "decimals": 18 + name: "TIA", + symbol: "TIA", + decimals: 18, }, "988207": { - "name": "ECROX COIN", - "symbol": "ECROX", - "decimals": 18 + name: "ECROX COIN", + symbol: "ECROX", + decimals: 18, }, "998899": { - "name": "CHAIN", - "symbol": "CHAIN", - "decimals": 18 + name: "CHAIN", + symbol: "CHAIN", + decimals: 18, }, "999999": { - "name": "AMC", - "symbol": "AMC", - "decimals": 18 + name: "AMC", + symbol: "AMC", + decimals: 18, }, "1100789": { - "name": "NMT", - "symbol": "NMT", - "decimals": 18 + name: "NMT", + symbol: "NMT", + decimals: 18, }, "1127469": { - "name": "Tiltyard Token", - "symbol": "TILTG", - "decimals": 18 + name: "Tiltyard Token", + symbol: "TILTG", + decimals: 18, }, "1261120": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1313114": { - "name": "Etho Protocol", - "symbol": "ETHO", - "decimals": 18 + name: "Etho Protocol", + symbol: "ETHO", + decimals: 18, }, "1313500": { - "name": "Xerom Ether", - "symbol": "XERO", - "decimals": 18 + name: "Xerom Ether", + symbol: "XERO", + decimals: 18, }, "1337702": { - "name": "kintsugi Ethere", - "symbol": "kiETH", - "decimals": 18 + name: "kintsugi Ethere", + symbol: "kiETH", + decimals: 18, }, "1337802": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 + name: "Testnet ETH", + symbol: "ETH", + decimals: 18, }, "1337803": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 + name: "Testnet ETH", + symbol: "ETH", + decimals: 18, }, "1398243": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1612127": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1637450": { - "name": "tBNB", - "symbol": "tBNB", - "decimals": 18 + name: "tBNB", + symbol: "tBNB", + decimals: 18, }, "1731313": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2021398": { - "name": "DeBank USD", - "symbol": "USD", - "decimals": 18 + name: "DeBank USD", + symbol: "USD", + decimals: 18, }, "2099156": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 + name: "Plian Token", + symbol: "PI", + decimals: 18, }, "2206132": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 + name: "LAT", + symbol: "lat", + decimals: 18, }, "2611555": { - "name": "DGC", - "symbol": "DGC", - "decimals": 18 + name: "DGC", + symbol: "DGC", + decimals: 18, }, "3132023": { - "name": "SAHARA", - "symbol": "SAH", - "decimals": 18 + name: "SAHARA", + symbol: "SAH", + decimals: 18, }, "3141592": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 + name: "testnet filecoin", + symbol: "tFIL", + decimals: 18, }, "3397901": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3441005": { - "name": "Manta", - "symbol": "MANTA", - "decimals": 18 + name: "Manta", + symbol: "MANTA", + decimals: 18, }, "3441006": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "4000003": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 + name: "ZERO", + symbol: "ZERO", + decimals: 18, }, "4281033": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5112023": { - "name": "NUMB Token", - "symbol": "NUMB", - "decimals": 18 + name: "NUMB Token", + symbol: "NUMB", + decimals: 18, }, "5167003": { - "name": "MXC Wannsee zkEVM Testnet", - "symbol": "MXC", - "decimals": 18 + name: "MXC Wannsee zkEVM Testnet", + symbol: "MXC", + decimals: 18, }, "5167004": { - "name": "Moonchain Geneva Testnet", - "symbol": "MXC", - "decimals": 18 + name: "Moonchain Geneva Testnet", + symbol: "MXC", + decimals: 18, }, "5201420": { - "name": "Electroneum", - "symbol": "ETN", - "decimals": 18 + name: "Electroneum", + symbol: "ETN", + decimals: 18, }, "5318008": { - "name": "Kopli React", - "symbol": "REACT", - "decimals": 18 + name: "Kopli React", + symbol: "REACT", + decimals: 18, }, "5555555": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 + name: "Imversed Token", + symbol: "IMV", + decimals: 18, }, "5555558": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 + name: "Imversed Token", + symbol: "IMV", + decimals: 18, }, "6038361": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "6666665": { - "name": "SAFE(AnWang)", - "symbol": "SAFE", - "decimals": 18 + name: "SAFE(AnWang)", + symbol: "SAFE", + decimals: 18, }, "6666666": { - "name": "SAFE(AnWang)", - "symbol": "SAFE", - "decimals": 18 + name: "SAFE(AnWang)", + symbol: "SAFE", + decimals: 18, }, "7225878": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "7355310": { - "name": "Vessel ETH", - "symbol": "VETH", - "decimals": 18 + name: "Vessel ETH", + symbol: "VETH", + decimals: 18, }, "7668378": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 + name: "Shiba Predator", + symbol: "QOM", + decimals: 18, }, "7762959": { - "name": "Musicoin", - "symbol": "MUSIC", - "decimals": 18 + name: "Musicoin", + symbol: "MUSIC", + decimals: 18, }, "7777777": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8007736": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 + name: "Plian Token", + symbol: "PI", + decimals: 18, }, "8008135": { - "name": "tFHE", - "symbol": "tFHE", - "decimals": 18 + name: "tFHE", + symbol: "tFHE", + decimals: 18, }, "8080808": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8601152": { - "name": "WATER", - "symbol": "WATER", - "decimals": 18 + name: "WATER", + symbol: "WATER", + decimals: 18, }, "8794598": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 + name: "HAP", + symbol: "HAP", + decimals: 18, }, "8888881": { - "name": "QARE", - "symbol": "QARE", - "decimals": 18 + name: "QARE", + symbol: "QARE", + decimals: 18, }, "8888888": { - "name": "QARE", - "symbol": "QARE", - "decimals": 18 + name: "QARE", + symbol: "QARE", + decimals: 18, }, "9322252": { - "name": "Gas", - "symbol": "GAS", - "decimals": 18 + name: "Gas", + symbol: "GAS", + decimals: 18, }, "9322253": { - "name": "Gas", - "symbol": "GAS", - "decimals": 18 + name: "Gas", + symbol: "GAS", + decimals: 18, }, "10067275": { - "name": "Plian Token", - "symbol": "TPI", - "decimals": 18 + name: "Plian Token", + symbol: "TPI", + decimals: 18, }, "10101010": { - "name": "Soverun", - "symbol": "SVRN", - "decimals": 18 + name: "Soverun", + symbol: "SVRN", + decimals: 18, }, "10241025": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "11155111": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "11155420": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "13068200": { - "name": "COTI2", - "symbol": "COTI2", - "decimals": 18 + name: "COTI2", + symbol: "COTI2", + decimals: 18, }, "13371337": { - "name": "PepChain Churchill Ether", - "symbol": "TPEP", - "decimals": 18 + name: "PepChain Churchill Ether", + symbol: "TPEP", + decimals: 18, }, "14288640": { - "name": "DAON", - "symbol": "DEB", - "decimals": 18 + name: "DAON", + symbol: "DEB", + decimals: 18, }, "16658437": { - "name": "Plian Testnet Token", - "symbol": "TPI", - "decimals": 18 + name: "Plian Testnet Token", + symbol: "TPI", + decimals: 18, }, "17000920": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "18289463": { - "name": "IOLite Ether", - "symbol": "ILT", - "decimals": 18 + name: "IOLite Ether", + symbol: "ILT", + decimals: 18, }, "20180427": { - "name": "FREE", - "symbol": "FREE", - "decimals": 18 + name: "FREE", + symbol: "FREE", + decimals: 18, }, "20180430": { - "name": "SmartMesh Native Token", - "symbol": "SMT", - "decimals": 18 + name: "SmartMesh Native Token", + symbol: "SMT", + decimals: 18, }, "20181205": { - "name": "quarkblockchain Native Token", - "symbol": "QKI", - "decimals": 18 + name: "quarkblockchain Native Token", + symbol: "QKI", + decimals: 18, }, "20201022": { - "name": "Pego Native Token", - "symbol": "PG", - "decimals": 18 + name: "Pego Native Token", + symbol: "PG", + decimals: 18, }, "20240324": { - "name": "DeBank USD", - "symbol": "USD", - "decimals": 18 + name: "DeBank USD", + symbol: "USD", + decimals: 18, }, "20241133": { - "name": "SWANETH", - "symbol": "sETH", - "decimals": 18 + name: "SWANETH", + symbol: "sETH", + decimals: 18, }, "20482050": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "22052002": { - "name": "Excelon", - "symbol": "xlon", - "decimals": 18 + name: "Excelon", + symbol: "xlon", + decimals: 18, }, "27082017": { - "name": "TExlcoin", - "symbol": "TEXL", - "decimals": 18 + name: "TExlcoin", + symbol: "TEXL", + decimals: 18, }, "27082022": { - "name": "Exlcoin", - "symbol": "EXL", - "decimals": 18 + name: "Exlcoin", + symbol: "EXL", + decimals: 18, }, "28122024": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "28945486": { - "name": "Auxilium coin", - "symbol": "AUX", - "decimals": 18 + name: "Auxilium coin", + symbol: "AUX", + decimals: 18, }, "29032022": { - "name": "Flacoin", - "symbol": "FLA", - "decimals": 18 + name: "Flacoin", + symbol: "FLA", + decimals: 18, }, "31415926": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 + name: "testnet filecoin", + symbol: "tFIL", + decimals: 18, }, "35855456": { - "name": "JOYS", - "symbol": "JOYS", - "decimals": 18 + name: "JOYS", + symbol: "JOYS", + decimals: 18, }, "37084624": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "39916801": { - "name": "Kozi", - "symbol": "KOZI", - "decimals": 18 + name: "Kozi", + symbol: "KOZI", + decimals: 18, }, "43214913": { - "name": "maistestsubnet", - "symbol": "MAI", - "decimals": 18 + name: "maistestsubnet", + symbol: "MAI", + decimals: 18, }, "61717561": { - "name": "Aquachain Ether", - "symbol": "AQUA", - "decimals": 18 + name: "Aquachain Ether", + symbol: "AQUA", + decimals: 18, }, "65010002": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 + name: "Bakerloo Auton", + symbol: "ATN", + decimals: 18, }, "65100002": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 + name: "Piccadilly Auton", + symbol: "ATN", + decimals: 18, }, "68840142": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "77787778": { - "name": "0xHash", - "symbol": "HETH", - "decimals": 18 + name: "0xHash", + symbol: "HETH", + decimals: 18, }, "88888888": { - "name": "TEAM", - "symbol": "$TEAM", - "decimals": 18 + name: "TEAM", + symbol: "$TEAM", + decimals: 18, }, "94204209": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "99415706": { - "name": "TOYS", - "symbol": "TOYS", - "decimals": 18 + name: "TOYS", + symbol: "TOYS", + decimals: 18, }, "108160679": { - "name": "Oraichain Token", - "symbol": "ORAI", - "decimals": 18 + name: "Oraichain Token", + symbol: "ORAI", + decimals: 18, }, "111557560": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "123420111": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "161221135": { - "name": "Plume Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Plume Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "168587773": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "192837465": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 + name: "Gather", + symbol: "GTH", + decimals: 18, }, "222000222": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 + name: "gMeld", + symbol: "gMELD", + decimals: 18, }, "245022926": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 + name: "Neon", + symbol: "NEON", + decimals: 18, }, "245022934": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 + name: "Neon", + symbol: "NEON", + decimals: 18, }, "278611351": { - "name": "sFuel", - "symbol": "SFUEL", - "decimals": 18 + name: "sFuel", + symbol: "SFUEL", + decimals: 18, }, "311752642": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 + name: "OLT", + symbol: "OLT", + decimals: 18, }, "328527624": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "333000333": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 + name: "gMeld", + symbol: "gMELD", + decimals: 18, }, "356256156": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 + name: "Gather", + symbol: "GTH", + decimals: 18, }, "486217935": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 + name: "Gather", + symbol: "GTH", + decimals: 18, }, "666666666": { - "name": "DEGEN", - "symbol": "DEGEN", - "decimals": 18 + name: "DEGEN", + symbol: "DEGEN", + decimals: 18, }, "888888888": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "889910245": { - "name": "PTCE", - "symbol": "PTCE", - "decimals": 18 + name: "PTCE", + symbol: "PTCE", + decimals: 18, }, "889910246": { - "name": "PTCE", - "symbol": "PTCE", - "decimals": 18 + name: "PTCE", + symbol: "PTCE", + decimals: 18, }, "974399131": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "999999999": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1020352220": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1122334455": { - "name": "IPOS Network Ether", - "symbol": "IPOS", - "decimals": 18 + name: "IPOS Network Ether", + symbol: "IPOS", + decimals: 18, }, "1146703430": { - "name": "Cyb", - "symbol": "CYB", - "decimals": 18 + name: "Cyb", + symbol: "CYB", + decimals: 18, }, "1273227453": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1313161554": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1313161555": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1313161556": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1313161560": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1350216234": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1351057110": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1380012617": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "1380996178": { - "name": "Raptor", - "symbol": "RPTR", - "decimals": 18 + name: "Raptor", + symbol: "RPTR", + decimals: 18, }, "1444673419": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1482601649": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1564830818": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1666600000": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666600001": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666700000": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666700001": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666900000": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666900001": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1802203764": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1918988905": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "2021121117": { - "name": "DataHoppers", - "symbol": "HOP", - "decimals": 18 + name: "DataHoppers", + symbol: "HOP", + decimals: 18, }, "2046399126": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "3125659152": { - "name": "Pirl Ether", - "symbol": "PIRL", - "decimals": 18 + name: "Pirl Ether", + symbol: "PIRL", + decimals: 18, }, "4216137055": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 + name: "OLT", + symbol: "OLT", + decimals: 18, }, "11297108109": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 + name: "PALM", + symbol: "PALM", + decimals: 18, }, "11297108099": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 + name: "PALM", + symbol: "PALM", + decimals: 18, }, "28872323069": { - "name": "GitSwarm Ether", - "symbol": "GS-ETH", - "decimals": 18 + name: "GitSwarm Ether", + symbol: "GS-ETH", + decimals: 18, }, "37714555429": { - "name": "sXai", - "symbol": "sXAI", - "decimals": 18 + name: "sXai", + symbol: "sXAI", + decimals: 18, }, "88153591557": { - "name": "GelatoCGT", - "symbol": "CGT", - "decimals": 18 + name: "GelatoCGT", + symbol: "CGT", + decimals: 18, }, "107107114116": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "111222333444": { - "name": "ALT", - "symbol": "ALT", - "decimals": 18 + name: "ALT", + symbol: "ALT", + decimals: 18, }, "197710212030": { - "name": "Ntity", - "symbol": "NTT", - "decimals": 18 + name: "Ntity", + symbol: "NTT", + decimals: 18, }, "197710212031": { - "name": "Ntity Haradev", - "symbol": "NTTH", - "decimals": 18 + name: "Ntity Haradev", + symbol: "NTTH", + decimals: 18, }, "202402181627": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "383414847825": { - "name": "Zeniq", - "symbol": "ZENIQ", - "decimals": 18 + name: "Zeniq", + symbol: "ZENIQ", + decimals: 18, }, "666301171999": { - "name": "PDC", - "symbol": "PDC", - "decimals": 18 + name: "PDC", + symbol: "PDC", + decimals: 18, }, "6022140761023": { - "name": "Molereum Ether", - "symbol": "MOLE", - "decimals": 18 + name: "Molereum Ether", + symbol: "MOLE", + decimals: 18, }, "2713017997578000": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2716446429837000": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - } + name: "Ether", + symbol: "ETH", + decimals: 18, + }, }; export const EXTRA_RPCS = { @@ -23960,20 +23139,11 @@ export const EXTRA_RPCS = { "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" + "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", @@ -23992,16 +23162,10 @@ export const EXTRA_RPCS = { "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" + "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", @@ -24024,19 +23188,11 @@ export const EXTRA_RPCS = { "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" + "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", @@ -24046,28 +23202,19 @@ export const EXTRA_RPCS = { "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" + "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" + "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", @@ -24076,23 +23223,12 @@ export const EXTRA_RPCS = { "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" + "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", @@ -24101,50 +23237,21 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -24158,42 +23265,17 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -24202,33 +23284,19 @@ export const EXTRA_RPCS = { "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" + "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" + "https://rpc-6.zyx.network", ], "56": [ "https://binance.llamarpc.com", @@ -24271,7 +23339,7 @@ export const EXTRA_RPCS = { "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" + "wss://bsc-ws-node.nariox.org", ], "57": [ "https://rpc.syscoin.org", @@ -24282,7 +23350,7 @@ export const EXTRA_RPCS = { "https://syscoin.public-rpc.com", "wss://rpc.syscoin.org/wss", "https://syscoin-evm.publicnode.com", - "wss://syscoin-evm.publicnode.com" + "wss://syscoin-evm.publicnode.com", ], "58": [ "https://dappnode1.ont.io:10339", @@ -24292,11 +23360,9 @@ export const EXTRA_RPCS = { "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" + "http://dappnode4.ont.io:20339", ], + "60": ["https://rpc.gochain.io"], "61": [ "https://etc.mytokenpocket.vip", "https://rpc.etcinscribe.com", @@ -24306,71 +23372,41 @@ export const EXTRA_RPCS = { "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" + "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" + "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" + "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" + "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", @@ -24378,69 +23414,25 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -24454,15 +23446,10 @@ export const EXTRA_RPCS = { "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" + "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", @@ -24482,57 +23469,25 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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", @@ -24540,22 +23495,12 @@ export const EXTRA_RPCS = { "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" + "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", @@ -24564,7 +23509,7 @@ export const EXTRA_RPCS = { "wss://rcl-dataseed1.rclsidechain.com/v1", "wss://rcl-dataseed2.rclsidechain.com/v1", "wss://rcl-dataseed3.rclsidechain.com/v1", - "wss://rcl-dataseed4.rclsidechain.com/v1" + "wss://rcl-dataseed4.rclsidechain.com/v1", ], "122": [ "https://rpc.fuse.io", @@ -24573,46 +23518,24 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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", @@ -24645,241 +23568,88 @@ export const EXTRA_RPCS = { "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" - ], - "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" + "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"], + "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", @@ -24898,53 +23668,20 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -24954,52 +23691,26 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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", @@ -25010,35 +23721,27 @@ export const EXTRA_RPCS = { "https://filecoin-mainnet.chainstacklabs.com/rpc/v1", "https://filfox.info/rpc/v1", "https://filecoin.drpc.org", - "wss://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" + "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" + "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", @@ -25046,28 +23749,14 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -25077,48 +23766,20 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -25132,114 +23793,55 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "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" + "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", @@ -25250,164 +23852,69 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" - ], + "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" - ], + "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", @@ -25416,89 +23923,39 @@ export const EXTRA_RPCS = { "https://evm-dataseed.meerscan.com", "https://qng.rpc.qitmeer.io", "https://rpc.dimai.ai", - "https://rpc.woowow.io" - ], - "814": [ - "https://rpc-zkevm.thefirechain.com" + "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" - ], + "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", @@ -25506,121 +23963,54 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "wss://metis.drpc.org", ], "1089": [ "https://humans-mainnet-evm.itrocket.net", @@ -25630,7 +24020,7 @@ export const EXTRA_RPCS = { "https://mainnet-humans-evm.konsortech.xyz", "https://evm-rpc.mainnet.humans.zone", "https://json-rpc.humans.bh.rocks", - "https://evm-rpc.humans.huginn.tech" + "https://evm-rpc.humans.huginn.tech", ], "1100": [ "https://jsonrpc.dymension.nodestake.org", @@ -25639,7 +24029,7 @@ export const EXTRA_RPCS = { "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" + "wss://dymension-evm-rpc.publicnode.com", ], "1101": [ "https://rpc.ankr.com/polygon_zkevm", @@ -25650,28 +24040,14 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -25679,156 +24055,80 @@ export const EXTRA_RPCS = { "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" - ], - "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" + "wss://core.drpc.org", + ], + "1117": ["https://mainnet-rpc.dogcoin.me"], + "1123": ["https://b2-testnet.alt.technology"], + "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"], + "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"], + "1224": ["https://testnet-rpc.buildonhybrid.com"], + "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", ], - "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" - ], - "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" - ], - "1224": [ - "https://testnet-rpc.buildonhybrid.com" - ], - "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" + "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", @@ -25845,198 +24145,80 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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" - ], + "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" + "wss://ws-mainnet-us.cube.network", ], "1819": [ "https://http-testnet.cube.network", @@ -26046,123 +24228,43 @@ export const EXTRA_RPCS = { "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" - ], - "1998": [ - "https://rpc.testnet.kyotoprotocol.io:8545" - ], + "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"], + "1998": ["https://rpc.testnet.kyotoprotocol.io:8545"], "2000": [ "https://rpc.dogechain.dog", "https://rpc-us.dogechain.dog", @@ -26173,46 +24275,25 @@ export const EXTRA_RPCS = { "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" + "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", @@ -26226,24 +24307,13 @@ export const EXTRA_RPCS = { "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" + "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", @@ -26252,123 +24322,46 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "wss://kava-testnet.drpc.org", ], "2222": [ "https://evm.kava.io", @@ -26385,307 +24378,116 @@ export const EXTRA_RPCS = { "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" + "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" + "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" - ], - "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" - ], - "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" - ], - "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" - ], + "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"], + "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"], + "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"], + "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" - ], + "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", @@ -26695,105 +24497,41 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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", @@ -26801,31 +24539,19 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "https://mainnet-3.blackfort.network/rpc", ], "5000": [ "https://mantle-rpc.publicnode.com", @@ -26834,113 +24560,50 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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" - ], + "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", @@ -26948,25 +24611,13 @@ export const EXTRA_RPCS = { "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" + "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", @@ -26975,21 +24626,12 @@ export const EXTRA_RPCS = { "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" + "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", @@ -26998,172 +24640,69 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "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" - ], + "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", @@ -27173,17 +24712,11 @@ export const EXTRA_RPCS = { "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" + "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", @@ -27194,242 +24727,117 @@ export const EXTRA_RPCS = { "https://testnet2.riseofthewarbots.com", "https://testnet3.riseofthewarbots.com", "https://testnet4.riseofthewarbots.com", - "https://testnet5.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", ], - "7778": [ - "https://validator-mainnet.orenium.org", - "https://rpc-oracle-mainnet.orenium.org", - "https://portalmainnet.orenium.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", ], - "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" + "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" + "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" - ], + "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", @@ -27453,7 +24861,7 @@ export const EXTRA_RPCS = { "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" + "wss://evmos-testnet-evm-rpc.publicnode.com", ], "9001": [ "https://evmos.lava.build", @@ -27490,162 +24898,75 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "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" + "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" + "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", @@ -27655,115 +24976,45 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], - "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" - ], + "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"], + "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", @@ -27778,126 +25029,50 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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", @@ -27908,261 +25083,99 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "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" - ], + "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", @@ -28175,160 +25188,82 @@ export const EXTRA_RPCS = { "https://node2.serverrpc.com", "https://mainnet-rpc.brisescan.com", "https://chainrpc.com", - "https://serverrpc.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", ], - "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" + "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", @@ -28347,159 +25282,71 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "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" + "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}" + "wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}", ], "59144": [ "https://linea.blockpi.network/v1/rpc/public", @@ -28507,1131 +25354,442 @@ export const EXTRA_RPCS = { "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" + "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", ], - "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" - ], - "80085": [ - "https://artio.rpc.berachain.com", - "https://rpc.ankr.com/berachain_testnet" - ], - "80096": [ - "https://hizoco.net/rpc" - ], - "81041": [ - "https://mainnet-rpc.nordekscan.com" + "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"], + "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" + "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", ], - "9322253": [ - "https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1" + "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", ], - "10067275": [ - "https://testnet.plian.io/child_test" + "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", ], - "10101010": [ - "https://mainnet-rpc.soverun.com" + "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", ], - "10241025": [ - "https://hal-rpc.alienxchain.io/http", - "https://hal.rpc.caldera.xyz/http" + "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", @@ -29654,39 +25812,22 @@ export const EXTRA_RPCS = { "https://rpc.sepolia.ethpandaops.io", "wss://sepolia.gateway.tenderly.co", "https://sepolia.drpc.org", - "wss://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" - ], + "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", @@ -29695,211 +25836,81 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "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" - ], + "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", @@ -29910,91 +25921,31 @@ export const EXTRA_RPCS = { "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" - ] + "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 994ccf5..a733521 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -7,7 +7,7 @@ export type BlockExplorer = { url: string; standard?: string; icon?: string; -} +}; export type ValidBlockData = { jsonrpc: string; @@ -53,17 +53,12 @@ export type NetworkCurrencies = typeof networkCurrencies; export type NetworkExplorers = typeof networkExplorers; export type ChainIds = { - -readonly [Key in keyof typeof CHAINS_IDS]: typeof CHAINS_IDS[Key] -} + -readonly [Key in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[Key]; +}; export type ChainNames = { - -readonly [Key in keyof typeof NETWORKS]: typeof NETWORKS[Key] -} - -export type ChainName = ChainIds[keyof ChainIds] | - "anvil" | - "hardhat" + -readonly [Key in keyof typeof NETWORKS]: (typeof NETWORKS)[Key]; +}; -export type ChainId = ChainNames[keyof ChainNames] | - 31337 | - 1337 +export type ChainName = ChainIds[keyof ChainIds] | "anvil" | "hardhat"; +export type ChainId = ChainNames[keyof ChainNames] | 31337 | 1337; diff --git a/types/rpc-handler.ts b/types/rpc-handler.ts index ba8b583..36d5425 100644 --- a/types/rpc-handler.ts +++ b/types/rpc-handler.ts @@ -1,5 +1,5 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { LOCAL_HOST, networkRpcs, networkNames, networkIds } from "./constants"; +import { LOCAL_HOST, networkRpcs, networkIds } from "./constants"; import { HandlerInterface, HandlerConstructorConfig, ChainId, ChainName } from "./handler"; import { RPCService } from "../src/services/rpc-service"; From 4b02b1f1532ad81c38d823ed5a469e05082af24f Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sun, 16 Jun 2024 01:00:30 +0100 Subject: [PATCH 08/14] chore: create and use filtered base types --- index.ts | 6 +---- tests/benchmark.test.ts | 2 +- tests/constants.test.ts | 46 +++++++++++++++++----------------- tests/mocks/handler.ts | 26 ++++++++++++------- tests/mocks/rpc-handler.ts | 10 ++++---- tests/mocks/rpc-service.ts | 6 ++--- tests/mocks/storage-service.ts | 4 ++- tests/rpc-handler.test.ts | 4 +-- tests/script-test.ts | 22 ++++++++-------- types/constants.ts | 23 ++++++++--------- types/dynamic.ts | 10 ++++---- types/handler.ts | 18 ++++++------- types/rpc-handler.ts | 8 +++--- 13 files changed, 95 insertions(+), 90 deletions(-) diff --git a/index.ts b/index.ts index 22c7566..bc7b500 100644 --- a/index.ts +++ b/index.ts @@ -13,7 +13,7 @@ export default async function getRPCHandler() { import { ChainId, - ChainNames, + ChainName, HandlerConstructorConfig, HandlerInterface, NativeToken, @@ -22,8 +22,6 @@ import { NetworkRPCs, Token, ValidBlockData, - ChainIds, - ChainName, } from "./types/handler"; import { @@ -45,9 +43,7 @@ export { LOCAL_HOST, getNetworkName, getNetworkId, networkCurrencies, networkExp export type { ChainId, - ChainIds, ChainName, - ChainNames, HandlerConstructorConfig, HandlerInterface, NativeToken, 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 index 16e00bc..c5ae01c 100644 --- a/tests/constants.test.ts +++ b/tests/constants.test.ts @@ -1,5 +1,5 @@ import { getNetworkId, getNetworkName, networkCurrencies, networkExplorers, networkIds, networkNames } from "../types/constants"; -import { ChainId, ChainName, NativeToken, ChainIds, ChainNames } from "../types/handler"; +import { ChainId, ChainName, NativeToken } from "../types/handler"; describe("Constants", () => { beforeEach(() => { @@ -9,7 +9,7 @@ describe("Constants", () => { describe("getNetworkName", () => { it("should return the network name for a valid network ID", () => { - const networkId = 80002; + const networkId = "80002"; const expectedNetworkName = "amoy"; const result = getNetworkName(networkId); expect(result).toBe(expectedNetworkName); @@ -18,7 +18,7 @@ describe("Constants", () => { 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 ChainId); + const result = getNetworkName(networkId as unknown as ChainId); expect(result).toBe(expectedNetworkName); }); }); @@ -26,7 +26,7 @@ describe("Constants", () => { describe("getNetworkId", () => { it("should return the network ID for a valid network name", () => { const networkName = "amoy"; - const expectedNetworkId = 80002; + const expectedNetworkId = "80002"; const result = getNetworkId(networkName); expect(result).toBe(expectedNetworkId); }); @@ -55,33 +55,33 @@ describe("Constants", () => { }); }); - const netIds = [1, 100, 56, 80002, 137, 25] as ChainId[]; + const netIds = ["1", "100", "56", "80002", "137", "25"] as ChainId[]; 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", + "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", + "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" }, + "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", () => { diff --git a/tests/mocks/handler.ts b/tests/mocks/handler.ts index f585d35..ce287e8 100644 --- a/tests/mocks/handler.ts +++ b/tests/mocks/handler.ts @@ -1,6 +1,13 @@ import { JsonRpcProvider } from "@ethersproject/providers"; import { networkCurrencies, networkExplorers, networkRpcs } from "../../types/constants"; -import { CHAINS_IDS, NETWORKS } from "../../types/dynamic"; +import { CHAINS_IDS, EXTRA_RPCS } from "../../types/dynamic"; + +export type BlockExplorer = { + name: string; + url: string; + standard?: string; + icon?: string; +}; export type ValidBlockData = { jsonrpc: string; @@ -19,6 +26,7 @@ export type Token = { }; export type NativeToken = { + name: string; symbol: string; decimals: number; }; @@ -44,13 +52,13 @@ export type NetworkRPCs = typeof networkRpcs; export type NetworkCurrencies = typeof networkCurrencies; export type NetworkExplorers = typeof networkExplorers; -export type ChainIds = { - -readonly [Key in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[Key]; -}; -export type ChainNames = { - -readonly [Key in keyof typeof NETWORKS]: (typeof NETWORKS)[Key]; -}; +// filtered chainId union +export type ChainId = keyof typeof EXTRA_RPCS | "31337" | "1337"; -export type ChainName = ChainIds[keyof ChainIds] | "anvil" | "hardhat"; +// unfiltered Record +type ChainsUnfiltered = { + -readonly [K in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[K]; +}; -export type ChainId = ChainNames[keyof ChainNames] | 31337 | 1337; +// filtered ChainName union +export type ChainName = ChainsUnfiltered[ChainId] | "anvil" | "hardhat"; diff --git a/tests/mocks/rpc-handler.ts b/tests/mocks/rpc-handler.ts index ff469e6..742f1b7 100644 --- a/tests/mocks/rpc-handler.ts +++ b/tests/mocks/rpc-handler.ts @@ -27,13 +27,13 @@ export class RPCHandler implements HandlerInterface { 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 @@ -67,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) { @@ -100,7 +100,7 @@ export class RPCHandler implements HandlerInterface { public getRuntimeRpcs(): string[] { return this._runtimeRpcs; } - public getNetworkId(): number { + public getNetworkId(): ChainId { return this._networkId; } public getNetworkName(): string { diff --git a/tests/mocks/rpc-service.ts b/tests/mocks/rpc-service.ts index ec72c58..8f6d973 100644 --- a/tests/mocks/rpc-service.ts +++ b/tests/mocks/rpc-service.ts @@ -1,9 +1,9 @@ -import { ValidBlockData } from "./handler"; +import { ChainId, ValidBlockData } from "./handler"; type PromiseResult = { success: boolean; rpcUrl: string; duration: number }; export class RPCService { static async testRpcPerformance( - networkId: number, + networkId: ChainId, 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: ChainId): 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..4d47e86 100644 --- a/tests/mocks/storage-service.ts +++ b/tests/mocks/storage-service.ts @@ -1,7 +1,9 @@ +import { ChainId } 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: ChainId): 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..beb204c 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(); diff --git a/tests/script-test.ts b/tests/script-test.ts index 3cfb872..2ae4abc 100644 --- a/tests/script-test.ts +++ b/tests/script-test.ts @@ -14,7 +14,7 @@ import getRPCHandler, { HandlerConstructorConfig, RPCHandler, networkIds, networ const RPCHandler = await getRPCHandler(); const config: HandlerConstructorConfig = { - networkId: 1, + networkId: "100", rpcTimeout: 1500, autoStorage: false, cacheRefreshCycles: 10, @@ -29,17 +29,17 @@ import getRPCHandler, { HandlerConstructorConfig, RPCHandler, networkIds, networ const latencies = handler.getLatencies(); - 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(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); })().catch(console.error); diff --git a/types/constants.ts b/types/constants.ts index d056071..61f6436 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -1,22 +1,21 @@ -import { BlockExplorer, ChainId, ChainIds, ChainName, ChainNames, NativeToken } from "./handler"; -import { CHAINS_IDS, EXTRA_RPCS, NETWORKS, NETWORK_CURRENCIES, NETWORK_EXPLORERS, NETWORK_FAUCETS } from "./dynamic"; +import { BlockExplorer, ChainId, ChainName, 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"; -// @ts-expect-error - some nets are deprecated and have reused names across chain ids const networkIds: Record = { - ...{ ...(CHAINS_IDS as ChainIds) }, // removing readonly + ...{ ...CHAINS_IDS }, // removing readonly 31337: "anvil", 1337: "hardhat", }; -const networkNames: Record = { - ...{ ...(NETWORKS as ChainNames) }, // removing readonly - anvil: 31337, - hardhat: 1337, -}; +const networkNames = Object.fromEntries( + Object.entries(networkIds).map(([key, value]) => { + return [value, key]; + }) +) as Record; Reflect.deleteProperty(networkNames, "geth-testnet"); // 1337 Reflect.deleteProperty(networkNames, "gochain-testnet"); // 31337 @@ -24,14 +23,14 @@ 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] as [ChainId, string[]]; + return [value, chainRpcs]; }) ) as Record; const networkExplorers = Object.fromEntries( Object.entries(networkNames).map(([, value]) => { - const chainExplorers = NETWORK_EXPLORERS[value as unknown as keyof typeof NETWORK_EXPLORERS]; - return [value, chainExplorers] as [ChainId, BlockExplorer[]]; + const chainExplorers: BlockExplorer[] = NETWORK_EXPLORERS[value as unknown as keyof typeof NETWORK_EXPLORERS]; + return [value, chainExplorers]; }) ) as Record; diff --git a/types/dynamic.ts b/types/dynamic.ts index 9e632ea..7b95f62 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -1617,8 +1617,8 @@ export const NETWORKS = { "manta-pacific-mainnet": 169, "telos-evm-mainnet": 40, astar: 592, - "iotex-network-mainnet": 4689, moonbeam: 1284, + "iotex-network-mainnet": 4689, canto: 7700, "conflux-espace": 1030, "aurora-mainnet": 1313161554, @@ -1635,18 +1635,18 @@ export const NETWORKS = { wanchain: 888, beam: 4337, "vision---mainnet": 888888, - "oasys-mainnet": 248, evmos: 9001, + "oasys-mainnet": 248, "elastos-smart-chain": 20, "dogechain-mainnet": 2000, "onus-chain-mainnet": 1975, "coinex-smart-chain-mainnet": 52, "fuse-mainnet": 122, - "theta-mainnet": 361, "harmony-mainnet-shard-0": 1666600000, + "theta-mainnet": 361, "kcc-mainnet": 321, - "huobi-eco-chain-mainnet": 128, "velas-evm-mainnet": 106, + "huobi-eco-chain-mainnet": 128, "oasis-emerald": 42262, "rollux-mainnet": 570, "neon-evm-mainnet": 245022934, @@ -1657,8 +1657,8 @@ export const NETWORKS = { "opbnb-mainnet": 204, "nahmii-2-mainnet": 5551, "tomb-chain-mainnet": 6969, - "loopnetwork-mainnet": 15551, "godwoken-mainnet": 71402, + "loopnetwork-mainnet": 15551, "omax-mainnet": 311, shiden: 336, ubiq: 8, diff --git a/types/handler.ts b/types/handler.ts index a733521..9baf8c9 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -1,6 +1,6 @@ import { JsonRpcProvider } from "@ethersproject/providers"; import { networkCurrencies, networkExplorers, networkRpcs } from "./constants"; -import { CHAINS_IDS, NETWORKS } from "./dynamic"; +import { CHAINS_IDS, EXTRA_RPCS } from "./dynamic"; export type BlockExplorer = { name: string; @@ -52,13 +52,13 @@ export type NetworkRPCs = typeof networkRpcs; export type NetworkCurrencies = typeof networkCurrencies; export type NetworkExplorers = typeof networkExplorers; -export type ChainIds = { - -readonly [Key in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[Key]; -}; -export type ChainNames = { - -readonly [Key in keyof typeof NETWORKS]: (typeof NETWORKS)[Key]; -}; +// filtered chainId union +export type ChainId = keyof typeof EXTRA_RPCS | "31337" | "1337"; -export type ChainName = ChainIds[keyof ChainIds] | "anvil" | "hardhat"; +// unfiltered Record +type ChainsUnfiltered = { + -readonly [K in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[K]; +}; -export type ChainId = ChainNames[keyof ChainNames] | 31337 | 1337; +// filtered ChainName union +export type ChainName = ChainsUnfiltered[ChainId] | "anvil" | "hardhat"; diff --git a/types/rpc-handler.ts b/types/rpc-handler.ts index 36d5425..4fe9181 100644 --- a/types/rpc-handler.ts +++ b/types/rpc-handler.ts @@ -30,13 +30,13 @@ export class RPCHandler implements HandlerInterface { } 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) { From 2a8b4fafa045fa841e3a20c519c3d590a60fd9e8 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Tue, 18 Jun 2024 19:09:34 +0100 Subject: [PATCH 09/14] chore: ChainId to NetworkId, use concurrently --- build/{types.ts => dynamic-types.ts} | 28 +- build/esbuild-build-tests.ts | 18 +- build/esbuild-build.ts | 16 +- index.ts | 8 +- package.json | 16 +- src/services/rpc-service.ts | 6 +- src/services/storage-service.ts | 4 +- tests/constants.test.ts | 14 +- tests/mocks/handler.ts | 12 +- tests/mocks/rpc-handler.ts | 8 +- tests/mocks/rpc-service.ts | 6 +- tests/mocks/storage-service.ts | 4 +- tests/script-test.ts | 10 +- types/constants.ts | 18 +- types/dynamic.ts | 41055 ++++++++++++++----------- types/handler.ts | 14 +- types/rpc-handler.ts | 6 +- yarn.lock | 16826 +++++----- 18 files changed, 29743 insertions(+), 28326 deletions(-) rename build/{types.ts => dynamic-types.ts} (58%) diff --git a/build/types.ts b/build/dynamic-types.ts similarity index 58% rename from build/types.ts rename to build/dynamic-types.ts index b0fa656..6c9ccf0 100644 --- a/build/types.ts +++ b/build/dynamic-types.ts @@ -12,7 +12,7 @@ import { generateChainData } from "../lib/chainlist/utils/fetch"; * - EXTRA_RPCS */ -async function createDynamicTypes() { +export async function createDynamicTypes() { const data = await generateChainData(); const idToNetwork: Record = {}; const networkToId: Record = {}; @@ -45,22 +45,10 @@ async function createDynamicTypes() { // Clear the file await writeFile("types/dynamic.ts", "/* eslint-disable sonarjs/no-duplicate-string */\n\n"); - await appendFile("types/dynamic.ts", `\nexport const CHAINS_IDS = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); - await appendFile("types/dynamic.ts", `\nexport const NETWORKS = ${JSON.stringify(networkToId, null, 2)} as const;\n`); - await appendFile("types/dynamic.ts", `\nexport const NETWORK_FAUCETS = ${JSON.stringify(idToFaucet, null, 2)};\n`); - await appendFile("types/dynamic.ts", `\nexport const NETWORK_EXPLORERS = ${JSON.stringify(idToExplorers, null, 2)};\n`); - await appendFile("types/dynamic.ts", `\nexport const NETWORK_CURRENCIES = ${JSON.stringify(idToNativeCurrency, null, 2)};\n`); - await appendFile("types/dynamic.ts", `\nexport const EXTRA_RPCS = ${JSON.stringify(extraRpcs, null, 2)};\n`); -} - -/** - * this is the same source that chainlist pulls it's data from - * but is has a lot more info that we'd benefit from such as explorers, - * faucets, rpcs etc. - * - * Writing this to a local file so that we can use it for improved static exports - */ - -(async () => { - await createDynamicTypes(); -})().catch(console.error); + appendFile("types/dynamic.ts", `\nexport const CHAINS_IDS = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); + appendFile("types/dynamic.ts", `\nexport const NETWORKS = ${JSON.stringify(networkToId, null, 2)} as const;\n`); + appendFile("types/dynamic.ts", `\nexport const NETWORK_FAUCETS = ${JSON.stringify(idToFaucet, null, 2)};\n`); + appendFile("types/dynamic.ts", `\nexport const NETWORK_EXPLORERS = ${JSON.stringify(idToExplorers, null, 2)};\n`); + appendFile("types/dynamic.ts", `\nexport const NETWORK_CURRENCIES = ${JSON.stringify(idToNativeCurrency, null, 2)};\n`); + appendFile("types/dynamic.ts", `\nexport const EXTRA_RPCS = ${JSON.stringify(extraRpcs, null, 2)};\n`); +} \ No newline at end of file diff --git a/build/esbuild-build-tests.ts b/build/esbuild-build-tests.ts index ed3a51a..3b6e2d4 100644 --- a/build/esbuild-build-tests.ts +++ b/build/esbuild-build-tests.ts @@ -1,6 +1,7 @@ import esbuild from "esbuild"; 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]; @@ -21,8 +22,6 @@ async function main() { } } -main(); - async function buildForEnvironments() { ensureDistDir(); @@ -54,19 +53,14 @@ async function buildIndex() { 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(async () => + await main() +).catch(console.error); \ No newline at end of file diff --git a/build/esbuild-build.ts b/build/esbuild-build.ts index 387a767..2f107be 100644 --- a/build/esbuild-build.ts +++ b/build/esbuild-build.ts @@ -1,6 +1,7 @@ import esbuild from "esbuild"; import path from "path"; import * as fs from "fs"; +import { createDynamicTypes } from "./dynamic-types"; const typescriptEntries = ["index.ts"]; export const entries = [...typescriptEntries]; @@ -21,8 +22,6 @@ async function main() { } } -main(); - async function buildForEnvironments() { ensureDistDir(); @@ -69,18 +68,13 @@ async function buildIndex() { 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(async () => + await main() +).catch(console.error); \ No newline at end of file diff --git a/index.ts b/index.ts index bc7b500..c19f329 100644 --- a/index.ts +++ b/index.ts @@ -12,8 +12,8 @@ export default async function getRPCHandler() { } import { - ChainId, - ChainName, + NetworkId, + NetworkName, HandlerConstructorConfig, HandlerInterface, NativeToken, @@ -42,8 +42,8 @@ import { RPCHandler } from "./types/rpc-handler"; export { LOCAL_HOST, getNetworkName, getNetworkId, networkCurrencies, networkExplorers, networkIds, networkNames, networkRpcs, nftAddress, permit2Address }; export type { - ChainId, - ChainName, + NetworkId, + NetworkName, HandlerConstructorConfig, HandlerInterface, NativeToken, diff --git a/package.json b/package.json index 50f7d42..8e86ff6 100644 --- a/package.json +++ b/package.json @@ -14,19 +14,20 @@ "node": ">=20.10.0" }, "scripts": { - "format": "run-s format:lint format:prettier format:cspell", + "format": "concurrently yarn: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/types.ts && tsx build/esbuild-build-tests.ts && tsc --emitDeclarationOnly --declaration --project tsconfig.tests.json", - "build": "rm -rf dist && tsx build/types.ts && tsx build/esbuild-build.ts ", - "postbuild": "yarn build:types", "postinstall": "git submodule update --init --recursive", - "test": "rm -rf dist && yarn build:tests && jest" + "build": "concurrently yarn:clean yarn: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", + "test": "concurrently yarn:clean yarn:build:tests jest", + "clean": "rm -rf dist" }, "keywords": [ "typescript", @@ -54,6 +55,7 @@ "@types/node-fetch": "^2.6.11", "@typescript-eslint/eslint-plugin": "^7.0.1", "@typescript-eslint/parser": "^7.0.1", + "concurrently": "^8.2.2", "cspell": "^8.4.0", "esbuild": "^0.20.1", "eslint": "^8.56.0", @@ -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 07ff2bb..2a275a6 100644 --- a/src/services/rpc-service.ts +++ b/src/services/rpc-service.ts @@ -1,10 +1,10 @@ -import { ChainId, 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: ChainId, + networkId: NetworkId, latencies: Record, runtimeRpcs: string[], rpcHeader: object, @@ -58,7 +58,7 @@ export class RPCService { return { latencies, runtimeRpcs }; } - static async findFastestRpc(latencies: Record, networkId: ChainId): 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 92dc0aa..7aab246 100644 --- a/src/services/storage-service.ts +++ b/src/services/storage-service.ts @@ -1,7 +1,7 @@ -import { ChainId } from "types/handler"; +import { NetworkId } from "types/handler"; export class StorageService { - static getLatencies(env: string, networkId: ChainId): 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/constants.test.ts b/tests/constants.test.ts index c5ae01c..1421a31 100644 --- a/tests/constants.test.ts +++ b/tests/constants.test.ts @@ -1,5 +1,5 @@ import { getNetworkId, getNetworkName, networkCurrencies, networkExplorers, networkIds, networkNames } from "../types/constants"; -import { ChainId, ChainName, NativeToken } from "../types/handler"; +import { NetworkId, NetworkName, NativeToken } from "../types/handler"; describe("Constants", () => { beforeEach(() => { @@ -18,7 +18,7 @@ describe("Constants", () => { 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 ChainId); + const result = getNetworkName(networkId as unknown as NetworkId); expect(result).toBe(expectedNetworkName); }); }); @@ -34,7 +34,7 @@ describe("Constants", () => { it("should return 0 for an unknown network name", () => { const networkName = "unknown"; const expectedNetworkId = -1; - const result = getNetworkId(networkName as ChainName); + const result = getNetworkId(networkName as NetworkName); expect(result).toBe(expectedNetworkId); }); }); @@ -55,7 +55,7 @@ describe("Constants", () => { }); }); - const netIds = ["1", "100", "56", "80002", "137", "25"] as ChainId[]; + const netIds = ["1", "100", "56", "80002", "137", "25"] as NetworkId[]; const expected = { "1": "https://etherscan.io", @@ -64,7 +64,7 @@ describe("Constants", () => { "80002": "https://www.oklink.com/amoy", "137": "https://polygonscan.com", "25": "https://explorer.cronos.org", - } as Partial>; + } as Partial>; const expectedName = { "1": "ethereum-mainnet", @@ -73,7 +73,7 @@ describe("Constants", () => { "80002": "amoy", "137": "polygon-mainnet", "25": "cronos-mainnet", - } as Partial>; + } as Partial>; const expectedNative = { "1": { symbol: "ETH", decimals: 18, name: "Ether" }, @@ -82,7 +82,7 @@ describe("Constants", () => { "80002": { symbol: "MATIC", decimals: 18, name: "MATIC" }, "137": { symbol: "MATIC", decimals: 18, name: "MATIC" }, "25": { symbol: "CRO", decimals: 18, name: "Cronos" }, - } as Partial>; + } as Partial>; describe("networkCurrencies", () => { it("should contain a currency for each network", () => { diff --git a/tests/mocks/handler.ts b/tests/mocks/handler.ts index ce287e8..0de5e37 100644 --- a/tests/mocks/handler.ts +++ b/tests/mocks/handler.ts @@ -39,8 +39,8 @@ export type HandlerInterface = { }; export type HandlerConstructorConfig = { - networkId: ChainId; - networkName: ChainName | null; + networkId: NetworkId; + networkName: NetworkName | null; networkRpcs: string[] | null; autoStorage: boolean | null; cacheRefreshCycles: number | null; @@ -52,13 +52,13 @@ export type NetworkRPCs = typeof networkRpcs; export type NetworkCurrencies = typeof networkCurrencies; export type NetworkExplorers = typeof networkExplorers; -// filtered chainId union -export type ChainId = keyof typeof EXTRA_RPCS | "31337" | "1337"; +// filtered NetworkId union +export type NetworkId = keyof typeof EXTRA_RPCS | "31337" | "1337"; -// unfiltered Record +// unfiltered Record type ChainsUnfiltered = { -readonly [K in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[K]; }; // filtered ChainName union -export type ChainName = ChainsUnfiltered[ChainId] | "anvil" | "hardhat"; +export type NetworkName = ChainsUnfiltered[NetworkId] | "anvil" | "hardhat"; diff --git a/tests/mocks/rpc-handler.ts b/tests/mocks/rpc-handler.ts index 742f1b7..9cb541e 100644 --- a/tests/mocks/rpc-handler.ts +++ b/tests/mocks/rpc-handler.ts @@ -4,13 +4,13 @@ import { HandlerInterface, HandlerConstructorConfig } from "./handler"; import { RPCService } from "./rpc-service"; import { StorageService } from "./storage-service"; -import { ChainId, ChainName } from "../../types/handler"; +import { NetworkId, NetworkName } from "../../types/handler"; export class RPCHandler implements HandlerInterface { private static _instance: RPCHandler | null = null; private _provider: JsonRpcProvider | null = null; - private _networkId: ChainId; - private _networkName: ChainName; + private _networkId: NetworkId; + private _networkName: NetworkName; private _env: string = "node"; private _rpcTimeout: number = 999999; // ms @@ -100,7 +100,7 @@ export class RPCHandler implements HandlerInterface { public getRuntimeRpcs(): string[] { return this._runtimeRpcs; } - public getNetworkId(): ChainId { + public getNetworkId(): NetworkId { return this._networkId; } public getNetworkName(): string { diff --git a/tests/mocks/rpc-service.ts b/tests/mocks/rpc-service.ts index 8f6d973..6408216 100644 --- a/tests/mocks/rpc-service.ts +++ b/tests/mocks/rpc-service.ts @@ -1,9 +1,9 @@ -import { ChainId, ValidBlockData } from "./handler"; +import { NetworkId, ValidBlockData } from "./handler"; type PromiseResult = { success: boolean; rpcUrl: string; duration: number }; export class RPCService { static async testRpcPerformance( - networkId: ChainId, + networkId: NetworkId, latencies: Record, runtimeRpcs: string[], rpcHeader: object, @@ -70,7 +70,7 @@ export class RPCService { return { latencies, runtimeRpcs }; } - static async findFastestRpc(latencies: Record, networkId: ChainId): 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 4d47e86..99d076a 100644 --- a/tests/mocks/storage-service.ts +++ b/tests/mocks/storage-service.ts @@ -1,9 +1,9 @@ -import { ChainId } from "./handler"; +import { NetworkId } from "./handler"; const LOCALSTORAGE_NOT_DEFINED = "Passing because localStorage is not available"; export class StorageService { - static getLatencies(env: string, networkId: ChainId): Record { + static getLatencies(env: string, networkId: NetworkId): Record { if (env === "browser") { if (typeof localStorage === "undefined") { console.log(LOCALSTORAGE_NOT_DEFINED); diff --git a/tests/script-test.ts b/tests/script-test.ts index 2ae4abc..c742312 100644 --- a/tests/script-test.ts +++ b/tests/script-test.ts @@ -30,15 +30,15 @@ import getRPCHandler, { HandlerConstructorConfig, RPCHandler, networkIds, networ const latencies = handler.getLatencies(); // console.log("====================================="); - // console.log(networkIds); + console.log(networkIds); // console.log("====================================="); - // console.log(networkNames); + console.log(networkNames); // console.log("====================================="); - // console.log(networkRpcs); + console.log(networkRpcs); // console.log("====================================="); - // console.log(networkCurrencies); + console.log(networkCurrencies); // console.log("====================================="); - // console.log(networkExplorers); + console.log(networkExplorers); console.log("====================================="); console.log(latencies); process.exit(0); diff --git a/types/constants.ts b/types/constants.ts index 61f6436..2ac59d4 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -1,11 +1,11 @@ -import { BlockExplorer, ChainId, ChainName, NativeToken } from "./handler"; +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"; -const networkIds: Record = { +const networkIds: Record = { ...{ ...CHAINS_IDS }, // removing readonly 31337: "anvil", 1337: "hardhat", @@ -15,7 +15,7 @@ const networkNames = Object.fromEntries( Object.entries(networkIds).map(([key, value]) => { return [value, key]; }) -) as Record; +) as Record; Reflect.deleteProperty(networkNames, "geth-testnet"); // 1337 Reflect.deleteProperty(networkNames, "gochain-testnet"); // 31337 @@ -25,22 +25,22 @@ const networkRpcs = Object.fromEntries( const chainRpcs = EXTRA_RPCS[value as unknown as keyof typeof EXTRA_RPCS]; return [value, chainRpcs]; }) -) as Record; +) as Record; 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; +) as Record; -const networkCurrencies: Record = Object.fromEntries( +const networkCurrencies: Record = Object.fromEntries( Object.entries(NETWORK_CURRENCIES).map(([chainId, currency]) => { return [chainId, currency as NativeToken]; }) -) as Record; +) as Record; -function getNetworkName(networkId: ChainId) { +function getNetworkName(networkId: NetworkId) { const networkName = networkIds[networkId]; if (!networkName) { console.error(`Unknown network ID: ${networkId}`); @@ -48,7 +48,7 @@ function getNetworkName(networkId: ChainId) { return networkName ?? "Unknown Network"; } -function getNetworkId(networkName: ChainName) { +function getNetworkId(networkName: NetworkName) { const networkId = networkNames[networkName]; if (!networkId) { console.error(`Unknown network name: ${networkName}`); diff --git a/types/dynamic.ts b/types/dynamic.ts index 7b95f62..a531320 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -1,23082 +1,21599 @@ /* 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", - "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", - "1224": "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", - "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", - "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", - "3500": "paribu-net-testnet", - "3501": "jfin-chain", - "3601": "pandoproject-mainnet", - "3602": "pandoproject-testnet", - "3630": "tycooncoin", - "3636": "botanix-testnet", - "3637": "botanix-mainnet", - "3639": "ichain-network", - "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", - "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", - "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, - pulsechain: 369, - gnosis: 100, - "filecoin---mainnet": 314, - kava: 2222, - "rootstock-mainnet": 30, - "fantom-opera": 250, - "celo-mainnet": 42220, - "fusion-mainnet": 32659, - "metis-andromeda-mainnet": 1088, - "klaytn-mainnet-cypress": 8217, - "core-blockchain-mainnet": 1116, - "manta-pacific-mainnet": 169, - "telos-evm-mainnet": 40, - astar: 592, - moonbeam: 1284, - "iotex-network-mainnet": 4689, - canto: 7700, - "conflux-espace": 1030, - "aurora-mainnet": 1313161554, - "xdc-network": 50, - "meter-mainnet": 82, - "okxchain-mainnet": 66, - moonriver: 1285, - "carbon-evm": 9790, - "smart-bitcoin-cash": 10000, - "boba-network": 288, - "ultron-mainnet": 1231, - "songbird-canary-network": 19, - "zilliqa-evm": 32769, - wanchain: 888, - beam: 4337, - "vision---mainnet": 888888, - evmos: 9001, - "oasys-mainnet": 248, - "elastos-smart-chain": 20, - "dogechain-mainnet": 2000, - "onus-chain-mainnet": 1975, - "coinex-smart-chain-mainnet": 52, - "fuse-mainnet": 122, - "harmony-mainnet-shard-0": 1666600000, - "theta-mainnet": 361, - "kcc-mainnet": 321, - "velas-evm-mainnet": 106, - "huobi-eco-chain-mainnet": 128, - "oasis-emerald": 42262, - "rollux-mainnet": 570, - "neon-evm-mainnet": 245022934, - "thundercore-mainnet": 108, - "ethereum-classic": 1, - "step-network": 1234, - "energy-web-chain": 246, - "opbnb-mainnet": 204, - "nahmii-2-mainnet": 5551, - "tomb-chain-mainnet": 6969, - "godwoken-mainnet": 71402, - "loopnetwork-mainnet": 15551, - "omax-mainnet": 311, - 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, - "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, - "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": 1224, - "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-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, - 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, - "paribu-net-testnet": 3500, - "jfin-chain": 3501, - "pandoproject-mainnet": 3601, - "pandoproject-testnet": 3602, - tycooncoin: 3630, - "botanix-testnet": 3636, - "botanix-mainnet": 3637, - "ichain-network": 3639, - "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, - "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-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_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": [], - "1201": [], - "1202": [], - "1209": [], - "1210": ["https://cuckoo.network/portal/faucet/"], - "1213": [], - "1214": [], - "1221": [], - "1224": [], - "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": [], - "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"], - "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"], - "3500": ["https://faucet.paribuscan.com"], - "3501": [], - "3601": [], - "3602": [], - "3630": [], - "3636": ["https://faucet.botanixlabs.dev"], - "3637": ["https://faucet.btxtestchain.com"], - "3639": [], - "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"], - "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/"], - "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 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, + "rootstock-mainnet": 30, + "fantom-opera": 250, + "celo-mainnet": 42220, + "fusion-mainnet": 32659, + "metis-andromeda-mainnet": 1088, + "core-blockchain-mainnet": 1116, + "klaytn-mainnet-cypress": 8217, + "manta-pacific-mainnet": 169, + "moonbeam": 1284, + "telos-evm-mainnet": 40, + "iotex-network-mainnet": 4689, + "astar": 592, + "canto": 7700, + "conflux-espace": 1030, + "aurora-mainnet": 1313161554, + "xdc-network": 50, + "meter-mainnet": 82, + "okxchain-mainnet": 66, + "moonriver": 1285, + "carbon-evm": 9790, + "boba-network": 288, + "smart-bitcoin-cash": 10000, + "ultron-mainnet": 1231, + "songbird-canary-network": 19, + "vision---mainnet": 888888, + "wanchain": 888, + "beam": 4337, + "zilliqa-evm": 32769, + "elastos-smart-chain": 20, + "oasys-mainnet": 248, + "evmos": 9001, + "onus-chain-mainnet": 1975, + "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, + "huobi-eco-chain-mainnet": 128, + "oasis-emerald": 42262, + "rollux-mainnet": 570, + "neon-evm-mainnet": 245022934, + "thundercore-mainnet": 108, + "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, + "high-performance-blockchain": 269, + "rei-network": 47805, + "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 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 NETWORK_EXPLORERS = { "1": [ { - name: "etherscan", - url: "https://etherscan.io", - standard: "EIP3091", + "name": "etherscan", + "url": "https://etherscan.io", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://eth.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "blockscout", + "url": "https://eth.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://ethereum.dex.guru", - icon: "dexguru", - standard: "EIP3091", - }, + "name": "dexguru", + "url": "https://ethereum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], "3": [ { - name: "etherscan", - url: "https://ropsten.etherscan.io", - standard: "EIP3091", - }, + "name": "etherscan", + "url": "https://ropsten.etherscan.io", + "standard": "EIP3091" + } ], "4": [ { - name: "etherscan-rinkeby", - url: "https://rinkeby.etherscan.io", - standard: "EIP3091", - }, + "name": "etherscan-rinkeby", + "url": "https://rinkeby.etherscan.io", + "standard": "EIP3091" + } ], "5": [ { - name: "etherscan-goerli", - url: "https://goerli.etherscan.io", - standard: "EIP3091", + "name": "etherscan-goerli", + "url": "https://goerli.etherscan.io", + "standard": "EIP3091" }, { - name: "blockscout-goerli", - url: "https://eth-goerli.blockscout.com", - icon: "blockscout", - 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", - }, + "name": "Thaichain Explorer", + "url": "https://exp.thaichain.org", + "standard": "EIP3091" + } ], "8": [ { - name: "ubiqscan", - url: "https://ubiqscan.io", - standard: "EIP3091", - }, + "name": "ubiqscan", + "url": "https://ubiqscan.io", + "standard": "EIP3091" + } ], "10": [ { - name: "etherscan", - url: "https://optimistic.etherscan.io", - standard: "EIP3091", + "name": "etherscan", + "url": "https://optimistic.etherscan.io", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://optimism.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "blockscout", + "url": "https://optimism.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://optimism.dex.guru", - icon: "dexguru", - 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": "blockscout", + "url": "https://flare-explorer.flare.network", + "standard": "EIP3091" }, { - name: "flarescan", - url: "https://mainnet.flarescan.com", - standard: "EIP3091", - }, + "name": "flarescan", + "url": "https://mainnet.flarescan.com", + "standard": "EIP3091" + } ], "16": [ { - name: "blockscout", - url: "https://coston-explorer.flare.network", - standard: "EIP3091", + "name": "blockscout", + "url": "https://coston-explorer.flare.network", + "standard": "EIP3091" }, { - name: "flarescan", - url: "https://coston.testnet.flarescan.com", - 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", - }, + "name": "thundercore-blockscout-testnet", + "url": "https://explorer-testnet.thundercore.com", + "standard": "EIP3091" + } ], "19": [ { - name: "blockscout", - url: "https://songbird-explorer.flare.network", - standard: "EIP3091", + "name": "blockscout", + "url": "https://songbird-explorer.flare.network", + "standard": "EIP3091" }, { - name: "flarescan", - url: "https://songbird.flarescan.com", - standard: "EIP3091", - }, + "name": "flarescan", + "url": "https://songbird.flarescan.com", + "standard": "EIP3091" + } ], "20": [ { - name: "elastos esc explorer", - url: "https://esc.elastos.io", - standard: "EIP3091", - }, + "name": "elastos esc explorer", + "url": "https://esc.elastos.io", + "standard": "EIP3091" + } ], "21": [ { - name: "elastos esc explorer", - url: "https://esc-testnet.elastos.io", - standard: "EIP3091", - }, + "name": "elastos esc explorer", + "url": "https://esc-testnet.elastos.io", + "standard": "EIP3091" + } ], "25": [ { - name: "Cronos Explorer", - url: "https://explorer.cronos.org", - standard: "none", - }, + "name": "Cronos Explorer", + "url": "https://explorer.cronos.org", + "standard": "none" + } ], "26": [ { - name: "Genesis L1 testnet explorer", - url: "https://testnet.genesisl1.org", - standard: "none", - }, + "name": "Genesis L1 testnet explorer", + "url": "https://testnet.genesisl1.org", + "standard": "none" + } ], "27": [ { - name: "Shiba Explorer", - url: "https://exp.shibchain.org", - standard: "none", - }, + "name": "Shiba Explorer", + "url": "https://exp.shibchain.org", + "standard": "none" + } ], "29": [ { - name: "Genesis L1 blockchain explorer", - url: "https://explorer.genesisl1.org", - standard: "none", - }, + "name": "Genesis L1 blockchain explorer", + "url": "https://explorer.genesisl1.org", + "standard": "none" + } ], "30": [ { - name: "Rootstock Explorer", - url: "https://explorer.rsk.co", - standard: "EIP3091", + "name": "Rootstock Explorer", + "url": "https://explorer.rsk.co", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://rootstock.blockscout.com", - icon: "blockscout", - 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", - }, + "name": "RSK Testnet Explorer", + "url": "https://explorer.testnet.rsk.co", + "standard": "EIP3091" + } ], "34": [ { - name: "SecureChain Mainnet", - url: "https://explorer.securechain.ai", - standard: "EIP3091", - }, + "name": "SecureChain Mainnet", + "url": "https://explorer.securechain.ai", + "standard": "EIP3091" + } ], "36": [ { - name: "dxscan", - url: "https://dxscan.io", - standard: "EIP3091", - }, + "name": "dxscan", + "url": "https://dxscan.io", + "standard": "EIP3091" + } ], "37": [ { - name: "XPLA Explorer", - url: "https://explorer.xpla.io/mainnet", - standard: "EIP3091", - }, + "name": "XPLA Explorer", + "url": "https://explorer.xpla.io/mainnet", + "standard": "EIP3091" + } ], "39": [ { - icon: "u2u", - name: "U2U Explorer", - url: "https://u2uscan.xyz", - standard: "EIP3091", - }, + "icon": "u2u", + "name": "U2U Explorer", + "url": "https://u2uscan.xyz", + "standard": "EIP3091" + } ], "40": [ { - name: "teloscan", - url: "https://teloscan.io", - standard: "EIP3091", - }, + "name": "teloscan", + "url": "https://teloscan.io", + "standard": "EIP3091" + } ], "41": [ { - name: "teloscan", - url: "https://testnet.teloscan.io", - standard: "EIP3091", - }, + "name": "teloscan", + "url": "https://testnet.teloscan.io", + "standard": "EIP3091" + } ], "42": [ { - name: "Blockscout", - url: "https://explorer.execution.mainnet.lukso.network", - standard: "EIP3091", - }, + "name": "Blockscout", + "url": "https://explorer.execution.mainnet.lukso.network", + "standard": "EIP3091" + } ], "43": [ { - name: "subscan", - url: "https://pangolin.subscan.io", - standard: "EIP3091", - }, + "name": "subscan", + "url": "https://pangolin.subscan.io", + "standard": "EIP3091" + } ], "44": [ { - name: "subscan", - url: "https://crab.subscan.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://crab-scan.darwinia.network", + "standard": "EIP3091" + } ], "45": [ { - name: "subscan", - url: "https://pangoro.subscan.io", - standard: "none", - }, + "name": "subscan", + "url": "https://pangoro.subscan.io", + "standard": "none" + } ], "46": [ { - name: "subscan", - url: "https://darwinia.subscan.io", - standard: "EIP3091", - }, + "name": "subscan", + "url": "https://darwinia.subscan.io", + "standard": "EIP3091" + } ], "47": [ { - name: "Acria IntelliChain-Explorer", - url: "https://explorer.acria.ai", - standard: "EIP3091", - }, + "name": "Acria IntelliChain-Explorer", + "url": "https://explorer.acria.ai", + "standard": "EIP3091" + } ], "48": [ { - name: "etmpscan", - url: "https://etmscan.network", - icon: "etmp", - standard: "EIP3091", - }, + "name": "etmpscan", + "url": "https://etmscan.network", + "icon": "etmp", + "standard": "EIP3091" + } ], "49": [ { - name: "etmp", - url: "https://pioneer.etmscan.network", - standard: "EIP3091", - }, + "name": "etmp", + "url": "https://pioneer.etmscan.network", + "standard": "EIP3091" + } ], "50": [ { - name: "xdcscan", - url: "https://xdcscan.io", - icon: "blocksscan", - standard: "EIP3091", + "name": "xdcscan", + "url": "https://xdcscan.io", + "icon": "blocksscan", + "standard": "EIP3091" }, { - name: "blocksscan", - url: "https://xdc.blocksscan.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": "xdcscan", + "url": "https://apothem.xinfinscan.com", + "icon": "blocksscan", + "standard": "EIP3091" }, { - name: "blocksscan", - url: "https://apothem.blocksscan.io", - 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", - }, + "name": "coinexscan", + "url": "https://www.coinex.net", + "standard": "none" + } ], "53": [ { - name: "coinexscan", - url: "https://testnet.coinex.net", - standard: "none", - }, + "name": "coinexscan", + "url": "https://testnet.coinex.net", + "standard": "none" + } ], "54": [ { - name: "Belly Scan", - url: "https://bellyscan.com", - standard: "none", - }, + "name": "Belly Scan", + "url": "https://bellyscan.com", + "standard": "none" + } ], "55": [ { - name: "zyxscan", - url: "https://zyxscan.com", - standard: "none", - }, + "name": "zyxscan", + "url": "https://zyxscan.com", + "standard": "none" + } ], "56": [ { - name: "bscscan", - url: "https://bscscan.com", - standard: "EIP3091", + "name": "bscscan", + "url": "https://bscscan.com", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://bnb.dex.guru", - icon: "dexguru", - 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", - }, + "name": "Syscoin Block Explorer", + "url": "https://explorer.syscoin.org", + "standard": "EIP3091" + } ], "58": [ { - name: "explorer", - url: "https://explorer.ont.io", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.ont.io", + "standard": "EIP3091" + } ], "60": [ { - name: "GoChain Explorer", - url: "https://explorer.gochain.io", - standard: "EIP3091", - }, + "name": "GoChain Explorer", + "url": "https://explorer.gochain.io", + "standard": "EIP3091" + } ], "61": [ { - name: "blockscout-ethereum-classic", - url: "https://etc.blockscout.com", - standard: "EIP3091", + "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-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-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": "etcnetworkinfo-expedition-ethereum-classic", + "url": "https://explorer-expedition.etc-network.info", + "standard": "none" }, { - name: "hebeblock-ethereum-classic", - url: "https://etcerscan.com", - standard: "EIP3091", + "name": "hebeblock-ethereum-classic", + "url": "https://etcerscan.com", + "standard": "EIP3091" }, { - name: "oklink-ethereum-classic", - url: "https://www.oklink.com/etc", - 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", - }, + "name": "tokenview-ethereum-classic", + "url": "https://etc.tokenview.io", + "standard": "EIP3091" + } ], "63": [ { - name: "blockscout-mordor", - url: "https://etc-mordor.blockscout.com", - standard: "EIP3091", + "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", - }, + "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", - }, + "name": "OKLink", + "url": "https://www.oklink.com/okexchain-test", + "standard": "EIP3091" + } ], "66": [ { - name: "OKLink", - url: "https://www.oklink.com/en/okc", - standard: "EIP3091", - }, + "name": "OKLink", + "url": "https://www.oklink.com/en/okc", + "standard": "EIP3091" + } ], "69": [ { - name: "etherscan", - url: "https://kovan-optimistic.etherscan.io", - standard: "EIP3091", - }, + "name": "etherscan", + "url": "https://kovan-optimistic.etherscan.io", + "standard": "EIP3091" + } ], "70": [ { - name: "hooscan", - url: "https://www.hooscan.com", - standard: "EIP3091", - }, + "name": "hooscan", + "url": "https://www.hooscan.com", + "standard": "EIP3091" + } ], "71": [ { - name: "Conflux Scan", - url: "https://evmtestnet.confluxscan.net", - standard: "none", - }, + "name": "Conflux Scan", + "url": "https://evmtestnet.confluxscan.net", + "standard": "none" + } ], "73": [ { - name: "fncy scan", - url: "https://fncyscan.fncy.world", - icon: "fncy", - standard: "EIP3091", - }, + "name": "fncy scan", + "url": "https://fncyscan.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } ], "74": [ { - name: "explorer", - url: "https://explorer.idchain.one", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.idchain.one", + "standard": "EIP3091" + } ], "75": [ { - name: "DSC Explorer Mainnet", - url: "https://explorer.decimalchain.com", - icon: "dsc", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://blockscout.com/poa/sokol", + "icon": "blockscout", + "standard": "EIP3091" + } ], "79": [ { - name: "zenith scan", - url: "https://scan.zenithchain.co", - standard: "EIP3091", - }, + "name": "zenith scan", + "url": "https://scan.zenithchain.co", + "standard": "EIP3091" + } ], "80": [ { - name: "GeneChain Scan", - url: "https://scan.genechain.io", - standard: "EIP3091", - }, + "name": "GeneChain Scan", + "url": "https://scan.genechain.io", + "standard": "EIP3091" + } ], "81": [ { - name: "Block Explorer", - url: "https://explorer.japanopenchain.org", - standard: "EIP3091", - icon: "joc", - }, + "name": "Block Explorer", + "url": "https://explorer.japanopenchain.org", + "standard": "EIP3091", + "icon": "joc" + } ], "82": [ { - name: "Meter Mainnet Scan", - url: "https://scan.meter.io", - standard: "EIP3091", - }, + "name": "Meter Mainnet Scan", + "url": "https://scan.meter.io", + "standard": "EIP3091" + } ], "83": [ { - name: "Meter Testnet Scan", - url: "https://scan-warringstakes.meter.io", - standard: "EIP3091", - }, + "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", - }, + "name": "Linqto Devnet Explorer", + "url": "https://explorer.linqto-dev.com", + "standard": "EIP3091" + } ], "85": [ { - name: "GateScan", - url: "https://www.gatescan.org/testnet", - standard: "EIP3091", - }, + "name": "GateScan", + "url": "https://www.gatescan.org/testnet", + "standard": "EIP3091" + } ], "86": [ { - name: "GateScan", - url: "https://www.gatescan.org", - standard: "EIP3091", - }, + "name": "GateScan", + "url": "https://www.gatescan.org", + "standard": "EIP3091" + } ], "87": [ { - name: "novanetwork", - url: "https://explorer.novanetwork.io", - standard: "EIP3091", - }, + "name": "novanetwork", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } ], "90": [ { - name: "explorer", - url: "https://explorer.garizon.com", - icon: "garizon", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } ], "91": [ { - name: "explorer", - url: "https://explorer.garizon.com", - icon: "garizon", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } ], "92": [ { - name: "explorer", - url: "https://explorer.garizon.com", - icon: "garizon", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } ], "93": [ { - name: "explorer", - url: "https://explorer.garizon.com", - icon: "garizon", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } ], "94": [ { - name: "SwissDLT Explorer", - url: "https://explorer.swissdlt.ch", - icon: "bcts", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Bitkub Chain Explorer", + "url": "https://bkcscan.com", + "standard": "none", + "icon": "bkc" + } ], "97": [ { - name: "bscscan-testnet", - url: "https://testnet.bscscan.com", - standard: "EIP3091", - }, + "name": "bscscan-testnet", + "url": "https://testnet.bscscan.com", + "standard": "EIP3091" + } ], "98": [ { - name: "SIX Scan", - url: "https://sixscan.io/sixnet", - standard: "none", - icon: "six", - }, + "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", - }, + "name": "blockscout", + "url": "https://blockscout.com/poa/core", + "icon": "blockscout", + "standard": "EIP3091" + } ], "100": [ { - name: "gnosisscan", - url: "https://gnosisscan.io", - standard: "EIP3091", + "name": "gnosisscan", + "url": "https://gnosisscan.io", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://gnosis.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "blockscout", + "url": "https://gnosis.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://gnosis.dex.guru", - icon: "dexguru", - standard: "EIP3091", - }, + "name": "dexguru", + "url": "https://gnosis.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], "103": [ { - name: "Worldland Explorer", - url: "https://scan.worldland.foundation", - standard: "EIP3091", - }, + "name": "Worldland Explorer", + "url": "https://scan.worldland.foundation", + "standard": "EIP3091" + } ], "104": [ { - name: "kaibascan", - url: "https://kaibascan.io", - icon: "kaibascan", - standard: "EIP3091", - }, + "name": "kaibascan", + "url": "https://kaibascan.io", + "icon": "kaibascan", + "standard": "EIP3091" + } ], "105": [ { - name: "Web3Games Explorer", - url: "https://explorer-devnet.web3games.org", - standard: "none", - }, + "name": "Web3Games Explorer", + "url": "https://explorer-devnet.web3games.org", + "standard": "none" + } ], "106": [ { - name: "Velas Explorer", - url: "https://evmexplorer.velas.com", - standard: "EIP3091", - }, + "name": "Velas Explorer", + "url": "https://evmexplorer.velas.com", + "standard": "EIP3091" + } ], "107": [ { - name: "nebulatestnet", - url: "https://explorer.novanetwork.io", - standard: "EIP3091", - }, + "name": "nebulatestnet", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } ], "108": [ { - name: "thundercore-viewblock", - url: "https://viewblock.io/thundercore", - standard: "EIP3091", - }, + "name": "thundercore-viewblock", + "url": "https://viewblock.io/thundercore", + "standard": "EIP3091" + } ], "109": [ { - name: "shibariumscan", - url: "https://www.shibariumscan.io", - standard: "none", - }, + "name": "shibariumscan", + "url": "https://www.shibariumscan.io", + "standard": "none" + } ], "112": [ { - name: "blockscout", - url: "https://coinbit-explorer.chain.sbcrypto.app", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://coinbit-explorer.chain.sbcrypto.app", + "icon": "blockscout", + "standard": "EIP3091" + } ], "113": [ { - name: "Dehvo Explorer", - url: "https://explorer.dehvo.com", - standard: "EIP3091", - }, + "name": "Dehvo Explorer", + "url": "https://explorer.dehvo.com", + "standard": "EIP3091" + } ], "114": [ { - name: "blockscout", - url: "https://coston2-explorer.flare.network", - standard: "EIP3091", + "name": "blockscout", + "url": "https://coston2-explorer.flare.network", + "standard": "EIP3091" }, { - name: "flarescan", - url: "https://coston2.testnet.flarescan.com", - 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", - }, + "name": "Uptick Explorer", + "url": "https://evm-explorer.uptick.network", + "icon": "uptick", + "standard": "none" + } ], "118": [ { - name: "arcology", - url: "https://testnet.arcology.network/explorer", - standard: "none", - }, + "name": "arcology", + "url": "https://testnet.arcology.network/explorer", + "standard": "none" + } ], "119": [ { - name: "enulsscan", - url: "https://evmscan.nuls.io", - icon: "enuls", - standard: "EIP3091", - }, + "name": "enulsscan", + "url": "https://evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } ], "120": [ { - name: "enulsscan", - url: "https://beta.evmscan.nuls.io", - icon: "enuls", - standard: "EIP3091", - }, + "name": "enulsscan", + "url": "https://beta.evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } ], "121": [ { - name: "realscan", - url: "https://rclscan.com", - standard: "EIP3091", - }, + "name": "realscan", + "url": "https://rclscan.com", + "standard": "EIP3091" + } ], "122": [ { - name: "blockscout", - url: "https://explorer.fuse.io", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.fuse.io", + "icon": "blockscout", + "standard": "EIP3091" + } ], "125": [ { - name: "OYchain Testnet Explorer", - url: "https://explorer.testnet.oychain.io", - standard: "none", - }, + "name": "OYchain Testnet Explorer", + "url": "https://explorer.testnet.oychain.io", + "standard": "none" + } ], "126": [ { - name: "OYchain Mainnet Explorer", - url: "https://explorer.oychain.io", - standard: "none", - }, + "name": "OYchain Mainnet Explorer", + "url": "https://explorer.oychain.io", + "standard": "none" + } ], "128": [ { - name: "hecoinfo", - url: "https://hecoinfo.com", - standard: "EIP3091", - }, + "name": "hecoinfo", + "url": "https://hecoinfo.com", + "standard": "EIP3091" + } ], "129": [ { - name: "Innovator Explorer", - url: "https://evm.innovatorchain.com", - icon: "blockscout", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://blockscout.bellecour.iex.ec", + "icon": "blockscout", + "standard": "EIP3091" + } ], "135": [ { - name: "alyx testnet scan", - url: "https://testnet.alyxscan.com", - standard: "EIP3091", - }, + "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", - }, + "name": "Deamchain Block Explorer", + "url": "https://scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } ], "137": [ { - name: "polygonscan", - url: "https://polygonscan.com", - standard: "EIP3091", + "name": "polygonscan", + "url": "https://polygonscan.com", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://polygon.dex.guru", - icon: "dexguru", - 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": "Blockscout Explorer", + "url": "https://blockscout.defi-oracle.io", + "standard": "none" }, { - name: "Quorum Explorer", - url: "https://explorer.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", - }, + "name": "wikiwoop", + "url": "https://explorer.wikiwoop.com", + "standard": "EIP3091" + } ], "141": [ { - name: "Belly Scan", - url: "https://testnet.bellyscan.com", - standard: "none", - }, + "name": "Belly Scan", + "url": "https://testnet.bellyscan.com", + "standard": "none" + } ], "144": [ { - name: "Phiscan", - url: "https://phiscan.com", - icon: "phi", - standard: "none", - }, + "name": "Phiscan", + "url": "https://phiscan.com", + "icon": "phi", + "standard": "none" + } ], "145": [ { - name: "blockscout", - url: "https://explorer.soraai.bot", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.soraai.bot", + "icon": "blockscout", + "standard": "EIP3091" + } ], "147": [ { - name: "Flag Mainnet Explorer", - url: "https://flagscan.xyz", - standard: "EIP3091", - }, + "name": "Flag Mainnet Explorer", + "url": "https://flagscan.xyz", + "standard": "EIP3091" + } ], "148": [ { - name: "explorer", - url: "https://explorer.evm.shimmer.network", - icon: "shimmerevm", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "TenetScan Testnet", + "url": "https://testnet.tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } ], "156": [ { - name: "OEScan explorer", - url: "https://testnet.oescan.io", - standard: "EIP3091", - }, + "name": "OEScan explorer", + "url": "https://testnet.oescan.io", + "standard": "EIP3091" + } ], "157": [ { - name: "puppyscan", - url: "https://puppyscan.shib.io", - standard: "none", - }, + "name": "puppyscan", + "url": "https://puppyscan.shib.io", + "standard": "none" + } ], "158": [ { - name: "Rbascan Explorer", - url: "https://rbascan.com", - standard: "EIP3091", - }, + "name": "Rbascan Explorer", + "url": "https://rbascan.com", + "standard": "EIP3091" + } ], "159": [ { - name: "Rbascan Testnet Explorer", - url: "https://testnet.rbascan.com", - standard: "EIP3091", - }, + "name": "Rbascan Testnet Explorer", + "url": "https://testnet.rbascan.com", + "standard": "EIP3091" + } ], "161": [ { - name: "blockscout - evascan", - url: "https://testnet.evascan.io", - standard: "EIP3091", - }, + "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 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 Blockscout", + "url": "https://omni-testnet.blockscout.com", + "standard": "EIP3091" }, { - name: "Omni EVM Explorer on Routescan", - url: "https://testnet.omniscan.network", - 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", - }, + "name": "atoshiscan", + "url": "https://scan.atoverse.info", + "standard": "EIP3091" + } ], "168": [ { - name: "AIOZ Network Explorer", - url: "https://explorer.aioz.network", - standard: "EIP3091", - }, + "name": "AIOZ Network Explorer", + "url": "https://explorer.aioz.network", + "standard": "EIP3091" + } ], "169": [ { - name: "manta-pacific Explorer", - url: "https://pacific-explorer.manta.network", - standard: "EIP3091", - }, + "name": "manta-pacific Explorer", + "url": "https://pacific-explorer.manta.network", + "standard": "EIP3091" + } ], "176": [ { - name: "dcscan", - url: "https://exp.dcnetio.cloud", - standard: "none", - }, + "name": "dcscan", + "url": "https://exp.dcnetio.cloud", + "standard": "none" + } ], "180": [ { - name: "AME Scan", - url: "https://amescan.io", - standard: "EIP3091", - }, + "name": "AME Scan", + "url": "https://amescan.io", + "standard": "EIP3091" + } ], "185": [ { - name: "blockscout", - url: "https://explorer.mintchain.io", - icon: "mint", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.mintchain.io", + "icon": "mint", + "standard": "EIP3091" + } ], "186": [ { - name: "seeleview", - url: "https://seeleview.net", - standard: "none", - }, + "name": "seeleview", + "url": "https://seeleview.net", + "standard": "none" + } ], "188": [ { - name: "Blockmeta", - url: "https://bmc.blockmeta.com", - standard: "none", - }, + "name": "Blockmeta", + "url": "https://bmc.blockmeta.com", + "standard": "none" + } ], "189": [ { - name: "Blockmeta", - url: "https://bmctestnet.blockmeta.com", - standard: "none", - }, + "name": "Blockmeta", + "url": "https://bmctestnet.blockmeta.com", + "standard": "none" + } ], "193": [ { - name: "cemscan", - url: "https://cemscan.com", - standard: "EIP3091", - }, + "name": "cemscan", + "url": "https://cemscan.com", + "standard": "EIP3091" + } ], "195": [ { - name: "OKLink", - url: "https://www.oklink.com/xlayer-test", - standard: "EIP3091", - }, + "name": "OKLink", + "url": "https://www.oklink.com/xlayer-test", + "standard": "EIP3091" + } ], "196": [ { - name: "OKLink", - url: "https://www.oklink.com/xlayer", - standard: "EIP3091", - }, + "name": "OKLink", + "url": "https://www.oklink.com/xlayer", + "standard": "EIP3091" + } ], "197": [ { - name: "blockscout", - url: "https://testnet.neutrinoschain.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.neutrinoschain.com", + "standard": "EIP3091" + } ], "198": [ { - name: "Bitchain Scan", - url: "https://explorer.bitchain.biz", - standard: "EIP3091", - }, + "name": "Bitchain Scan", + "url": "https://explorer.bitchain.biz", + "standard": "EIP3091" + } ], "199": [ { - name: "BitTorrent Chain Explorer", - url: "https://bttcscan.com", - standard: "EIP3091", - }, + "name": "BitTorrent Chain Explorer", + "url": "https://bttcscan.com", + "standard": "EIP3091" + } ], "200": [ { - name: "blockscout", - url: "https://blockscout.com/xdai/arbitrum", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.com/xdai/arbitrum", + "standard": "EIP3091" + } ], "201": [ { - name: "moac testnet explorer", - url: "https://testnet.moac.io", - standard: "none", - }, + "name": "moac testnet explorer", + "url": "https://testnet.moac.io", + "standard": "none" + } ], "202": [ { - name: "Edgeless Explorer", - url: "https://testnet.explorer.edgeless.network", - standard: "EIP3091", - }, + "name": "Edgeless Explorer", + "url": "https://testnet.explorer.edgeless.network", + "standard": "EIP3091" + } ], "204": [ { - name: "opbnbscan", - url: "https://mainnet.opbnbscan.com", - standard: "EIP3091", - }, + "name": "opbnbscan", + "url": "https://mainnet.opbnbscan.com", + "standard": "EIP3091" + } ], "206": [ { - name: "VinuScan Testnet", - url: "https://testnet.vinuscan.com", - icon: "vinuscan-testnet", - standard: "none", - }, + "name": "VinuScan Testnet", + "url": "https://testnet.vinuscan.com", + "icon": "vinuscan-testnet", + "standard": "none" + } ], "207": [ { - name: "VinuScan", - url: "https://vinuscan.com", - icon: "vinuscan", - standard: "none", - }, + "name": "VinuScan", + "url": "https://vinuscan.com", + "icon": "vinuscan", + "standard": "none" + } ], "210": [ { - name: "Bitnet Explorer", - url: "https://btnscan.com", - standard: "EIP3091", - }, + "name": "Bitnet Explorer", + "url": "https://btnscan.com", + "standard": "EIP3091" + } ], "212": [ { - name: "maposcan", - url: "https://testnet.maposcan.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } ], "217": [ { - name: "siriusnet explorer", - url: "https://scan.siriusnet.io", - standard: "none", - }, + "name": "siriusnet explorer", + "url": "https://scan.siriusnet.io", + "standard": "none" + } ], "220": [ { - name: "scalind", - url: "https://explorer-sepolia.scalind.com", - standard: "EIP3091", - }, + "name": "scalind", + "url": "https://explorer-sepolia.scalind.com", + "standard": "EIP3091" + } ], "223": [ { - name: "blockscout", - url: "https://explorer.bsquared.network", - icon: "bsquare", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } ], "224": [ { - name: "Viridis Testnet", - url: "https://testnet.vrd.network", - standard: "EIP3091", - }, + "name": "Viridis Testnet", + "url": "https://testnet.vrd.network", + "standard": "EIP3091" + } ], "225": [ { - name: "blockscout", - url: "https://scan.lachain.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.lachain.io", + "standard": "EIP3091" + } ], "226": [ { - name: "blockscout", - url: "https://scan-test.lachain.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan-test.lachain.io", + "standard": "EIP3091" + } ], "230": [ { - name: "SwapDEX", - url: "https://evm.swapdex.network", - standard: "none", - }, + "name": "SwapDEX", + "url": "https://evm.swapdex.network", + "standard": "none" + } ], "234": [ { - name: "ProtoJumbo", - url: "https://protojumbo.jumbochain.org", - standard: "EIP3091", - }, + "name": "ProtoJumbo", + "url": "https://protojumbo.jumbochain.org", + "standard": "EIP3091" + } ], "236": [ { - name: "Deamchain Testnet Explorer", - url: "https://testnet-scan.deamchain.com", - standard: "EIP3091", - icon: "deam", - }, + "name": "Deamchain Testnet Explorer", + "url": "https://testnet-scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } ], "242": [ { - name: "plgscan", - url: "https://www.plgscan.com", - standard: "EIP3091", - }, + "name": "plgscan", + "url": "https://www.plgscan.com", + "standard": "EIP3091" + } ], "246": [ { - name: "blockscout", - url: "https://explorer.energyweb.org", - standard: "none", - }, + "name": "blockscout", + "url": "https://explorer.energyweb.org", + "standard": "none" + } ], "248": [ { - name: "blockscout", - url: "https://explorer.oasys.games", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.oasys.games", + "standard": "EIP3091" + } ], "250": [ { - name: "ftmscan", - url: "https://ftmscan.com", - icon: "ftmscan", - standard: "EIP3091", + "name": "ftmscan", + "url": "https://ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://fantom.dex.guru", - icon: "dexguru", - standard: "EIP3091", - }, + "name": "dexguru", + "url": "https://fantom.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], "252": [ { - name: "fraxscan", - url: "https://fraxscan.com", - standard: "EIP3091", - }, + "name": "fraxscan", + "url": "https://fraxscan.com", + "standard": "EIP3091" + } ], "255": [ { - name: "blockscout", - url: "https://blockscout.kroma.network", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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": "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", - }, + "name": "blockscout", + "url": "https://explorer.neura-testnet.ankr.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "269": [ { - name: "hscan", - url: "https://hscan.org", - standard: "EIP3091", - }, + "name": "hscan", + "url": "https://hscan.org", + "standard": "EIP3091" + } ], "271": [ { - name: "EgonCoin Mainnet", - url: "https://egonscan.com", - standard: "EIP3091", - }, + "name": "EgonCoin Mainnet", + "url": "https://egonscan.com", + "standard": "EIP3091" + } ], "274": [ { - name: "LaChain Explorer", - url: "https://explorer.lachain.network", - standard: "EIP3091", - }, + "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", - }, + "name": "Cronos zkEVM Testnet Explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", + "standard": "none" + } ], "288": [ { - name: "Bobascan", - url: "https://bobascan.com", - standard: "none", - }, + "name": "Bobascan", + "url": "https://bobascan.com", + "standard": "none" + } ], "291": [ { - name: "orderlyscout", - url: "https://explorer.orderly.network", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "orderlyscout", + "url": "https://explorer.orderly.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], "295": [ { - name: "HashScan", - url: "https://hashscan.io/mainnet", - standard: "EIP3091", + "name": "HashScan", + "url": "https://hashscan.io/mainnet", + "standard": "EIP3091" }, { - name: "Arkhia Explorer", - url: "https://explorer.arkhia.io", - standard: "none", + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" }, { - name: "DragonGlass", - url: "https://app.dragonglass.me", - standard: "none", + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" }, { - name: "Hedera Explorer", - url: "https://hederaexplorer.io", - standard: "none", + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" }, { - name: "Ledger Works Explore", - url: "https://explore.lworks.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": "HashScan", + "url": "https://hashscan.io/testnet", + "standard": "EIP3091" }, { - name: "Arkhia Explorer", - url: "https://explorer.arkhia.io", - standard: "none", + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" }, { - name: "DragonGlass", - url: "https://app.dragonglass.me", - standard: "none", + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" }, { - name: "Hedera Explorer", - url: "https://hederaexplorer.io", - standard: "none", + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" }, { - name: "Ledger Works Explore", - url: "https://explore.lworks.io", - standard: "none", - }, + "name": "Ledger Works Explore", + "url": "https://explore.lworks.io", + "standard": "none" + } ], "297": [ { - name: "HashScan", - url: "https://hashscan.io/previewnet", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "zkCandy Block Explorer", + "url": "https://sepolia.explorer.zkcandy.io", + "icon": "zkcandy", + "standard": "EIP3091" + } ], "303": [ { - name: "neuroscan", - url: "https://testnet.ncnscan.com", - standard: "EIP3091", - }, + "name": "neuroscan", + "url": "https://testnet.ncnscan.com", + "standard": "EIP3091" + } ], "305": [ { - name: "blockscout", - url: "https://explorer.zksats.io", - icon: "zksats", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.zksats.io", + "icon": "zksats", + "standard": "EIP3091" + } ], "307": [ { - name: "Lovely Network Testnet", - url: "https://tscan.lovely.network", - standard: "EIP3091", - }, + "name": "Lovely Network Testnet", + "url": "https://tscan.lovely.network", + "standard": "EIP3091" + } ], "308": [ { - name: "furthscan", - url: "http://furthscan.com", - standard: "EIP3091", - }, + "name": "furthscan", + "url": "http://furthscan.com", + "standard": "EIP3091" + } ], "309": [ { - name: "wyzth", - url: "http://24.199.108.65:4000", - icon: "wyzth", - standard: "EIP3091", - }, + "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", - }, + "name": "Omax Chain Explorer", + "url": "https://omaxray.com", + "icon": "omaxray", + "standard": "EIP3091" + } ], "313": [ { - name: "neuroscan", - url: "https://ncnscan.com", - standard: "EIP3091", - }, + "name": "neuroscan", + "url": "https://ncnscan.com", + "standard": "EIP3091" + } ], "314": [ { - name: "Filfox", - url: "https://filfox.info/en", - standard: "none", + "name": "Filfox", + "url": "https://filfox.info/en", + "standard": "none" }, { - name: "Beryx", - url: "https://beryx.zondax.ch", - standard: "none", + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" }, { - name: "Glif Explorer", - url: "https://explorer.glif.io", - standard: "EIP3091", + "name": "Glif Explorer", + "url": "https://explorer.glif.io", + "standard": "EIP3091" }, { - name: "Dev.storage", - url: "https://dev.storage", - standard: "none", + "name": "Dev.storage", + "url": "https://dev.storage", + "standard": "none" }, { - name: "Filscan", - url: "https://filscan.io", - standard: "none", + "name": "Filscan", + "url": "https://filscan.io", + "standard": "none" }, { - name: "Filscout", - url: "https://filscout.io/en", - standard: "none", - }, + "name": "Filscout", + "url": "https://filscout.io/en", + "standard": "none" + } ], "321": [ { - name: "KCC Explorer", - url: "https://explorer.kcc.io/en", - standard: "EIP3091", - }, + "name": "KCC Explorer", + "url": "https://explorer.kcc.io/en", + "standard": "EIP3091" + } ], "322": [ { - name: "kcc-scan-testnet", - url: "https://scan-testnet.kcc.network", - standard: "EIP3091", - }, + "name": "kcc-scan-testnet", + "url": "https://scan-testnet.kcc.network", + "standard": "EIP3091" + } ], "323": [ { - name: "Blockscout", - url: "https://explorer.cosvm.net", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "w3q-mainnet", + "url": "https://explorer.mainnet.web3q.io", + "standard": "EIP3091" + } ], "335": [ { - name: "ethernal", - url: "https://explorer-test.dfkchain.com", - icon: "ethereum", - standard: "none", - }, + "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": "subscan", + "url": "https://shiden.subscan.io", + "standard": "none", + "icon": "subscan" }, { - name: "blockscout", - url: "https://blockscout.com/shiden", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.com/shiden", + "icon": "blockscout", + "standard": "EIP3091" + } ], "338": [ { - name: "Cronos Testnet Explorer", - url: "https://explorer.cronos.org/testnet", - standard: "none", - }, + "name": "Cronos Testnet Explorer", + "url": "https://explorer.cronos.org/testnet", + "standard": "none" + } ], "345": [ { - name: "tscscan", - url: "https://www.tscscan.io", - icon: "netxscan", - standard: "none", - }, + "name": "tscscan", + "url": "https://www.tscscan.io", + "icon": "netxscan", + "standard": "none" + } ], "361": [ { - name: "Theta Mainnet Explorer", - url: "https://explorer.thetatoken.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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": "blockscout", + "url": "https://scan.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "otterscan", - url: "https://otter.pulsechain.com", - standard: "EIP3091", - }, + "name": "otterscan", + "url": "https://otter.pulsechain.com", + "standard": "EIP3091" + } ], "371": [ { - name: "blockscout", - url: "https://explorer-testnet.theconsta.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "CamDL Testnet Explorer", + "url": "https://explorer.testnet.camdl.gov.kh", + "standard": "EIP3091" + } ], "397": [ { - name: "Near Blocks", - url: "https://nearblocks.io", - standard: "none", - }, + "name": "Near Blocks", + "url": "https://nearblocks.io", + "standard": "none" + } ], "398": [ { - name: "Near blocks", - url: "https://testnet.nearblocks.io", - standard: "none", - }, + "name": "Near blocks", + "url": "https://testnet.nearblocks.io", + "standard": "none" + } ], "399": [ { - name: "N3scan", - url: "https://scan.nativ3.network", - standard: "EIP3091", - }, + "name": "N3scan", + "url": "https://scan.nativ3.network", + "standard": "EIP3091" + } ], "400": [ { - name: "blockscout", - url: "https://testnet.hyperonchain.com", - icon: "hyperonchain", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.hyperonchain.com", + "icon": "hyperonchain", + "standard": "EIP3091" + } ], "401": [ { - name: "OZONE Scan", - url: "https://testnet.ozonescan.io", - standard: "EIP3091", - }, + "name": "OZONE Scan", + "url": "https://testnet.ozonescan.io", + "standard": "EIP3091" + } ], "404": [ { - name: "Syndr L3 Explorer", - url: "https://explorer.syndr.com", - standard: "EIP3091", - }, + "name": "Syndr L3 Explorer", + "url": "https://explorer.syndr.com", + "standard": "EIP3091" + } ], "411": [ { - name: "pepechain explorer", - url: "https://explorer.pepe-chain.vip", - standard: "EIP3091", - }, + "name": "pepechain explorer", + "url": "https://explorer.pepe-chain.vip", + "standard": "EIP3091" + } ], "416": [ { - name: "SX Network Explorer", - url: "https://explorer.sx.technology", - standard: "EIP3091", - }, + "name": "SX Network Explorer", + "url": "https://explorer.sx.technology", + "standard": "EIP3091" + } ], "418": [ { - name: "LaTestnet Explorer", - url: "https://testexplorer.lachain.network", - standard: "EIP3091", - }, + "name": "LaTestnet Explorer", + "url": "https://testexplorer.lachain.network", + "standard": "EIP3091" + } ], "420": [ { - name: "blockscout", - url: "https://optimism-goerli.blockscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://optimism-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "422": [ { - name: "Viridis Mainnet", - url: "https://explorer.vrd.network", - standard: "EIP3091", - }, + "name": "Viridis Mainnet", + "url": "https://explorer.vrd.network", + "standard": "EIP3091" + } ], "424": [ { - name: "blockscout", - url: "https://explorer.publicgoods.network", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], "427": [ { - name: "Zeeth Explorer", - url: "https://explorer.zeeth.io", - standard: "none", - }, + "name": "Zeeth Explorer", + "url": "https://explorer.zeeth.io", + "standard": "none" + } ], "428": [ { - name: "Geso Verse Explorer", - url: "https://explorer.verse.gesoten.com", - standard: "EIP3091", - }, + "name": "Geso Verse Explorer", + "url": "https://explorer.verse.gesoten.com", + "standard": "EIP3091" + } ], "434": [ { - name: "Boyaa explorer", - url: "https://explorer.mainnet.boyaa.network", - standard: "EIP3091", - }, + "name": "Boyaa explorer", + "url": "https://explorer.mainnet.boyaa.network", + "standard": "EIP3091" + } ], "443": [ { - name: "Ten Sepolia Rollup Explorer", - url: "https://tenscan.io", - standard: "none", - }, + "name": "Ten Sepolia Rollup Explorer", + "url": "https://tenscan.io", + "standard": "none" + } ], "444": [ { - name: "Synapse Chain Sepolia", - url: "https://sepolia.synapsescan.com", - standard: "EIP3091", - }, + "name": "Synapse Chain Sepolia", + "url": "https://sepolia.synapsescan.com", + "standard": "EIP3091" + } ], "456": [ { - name: "ARZIO Scan", - url: "https://scan.arzio.co", - standard: "EIP3091", - }, + "name": "ARZIO Scan", + "url": "https://scan.arzio.co", + "standard": "EIP3091" + } ], "462": [ { - name: "AreonScan", - url: "https://areonscan.com", - standard: "none", - }, + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } ], "463": [ { - name: "AreonScan", - url: "https://areonscan.com", - standard: "none", - }, + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } ], "500": [ { - name: "blockexplorer", - url: "https://suite.camino.network/explorer", - standard: "none", - }, + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } ], "501": [ { - name: "blockexplorer", - url: "https://suite.camino.network/explorer", - standard: "none", - }, + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } ], "512": [ { - name: "aacscan", - url: "https://scan.acuteangle.com", - standard: "EIP3091", - }, + "name": "aacscan", + "url": "https://scan.acuteangle.com", + "standard": "EIP3091" + } ], "513": [ { - name: "aacscan-testnet", - url: "https://scan-testnet.acuteangle.com", - standard: "EIP3091", - }, + "name": "aacscan-testnet", + "url": "https://scan-testnet.acuteangle.com", + "standard": "EIP3091" + } ], "520": [ { - name: "xscscan", - url: "https://xscscan.pub", - standard: "EIP3091", - }, + "name": "xscscan", + "url": "https://xscscan.pub", + "standard": "EIP3091" + } ], "530": [ { - name: "FunctionX Explorer", - url: "https://fx-evm.functionx.io", - standard: "EIP3091", - }, + "name": "FunctionX Explorer", + "url": "https://fx-evm.functionx.io", + "standard": "EIP3091" + } ], "534": [ { - name: "candleexplorer", - url: "https://candleexplorer.com", - standard: "EIP3091", - }, + "name": "candleexplorer", + "url": "https://candleexplorer.com", + "standard": "EIP3091" + } ], "537": [ { - name: "OpTrust explorer", - url: "https://scan.optrust.io", - icon: "optrust", - standard: "none", - }, + "name": "OpTrust explorer", + "url": "https://scan.optrust.io", + "icon": "optrust", + "standard": "none" + } ], "542": [ { - name: "PAWCHAIN Testnet", - url: "https://pawscan.io", - standard: "none", - }, + "name": "PAWCHAIN Testnet", + "url": "https://pawscan.io", + "standard": "none" + } ], "545": [ { - name: "Flow Diver", - url: "https://testnet.flowdiver.io", - standard: "none", - }, + "name": "Flow Diver", + "url": "https://testnet.flowdiver.io", + "standard": "none" + } ], "555": [ { - name: "Vela1 Chain Mainnet Explorer", - url: "https://exp.velaverse.io", - standard: "EIP3091", - }, + "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", - }, + "name": "dogechain testnet explorer", + "url": "https://explorer-testnet.dogechain.dog", + "standard": "EIP3091" + } ], "570": [ { - name: "Rollux Explorer", - url: "https://explorer.rollux.com", - standard: "EIP3091", - }, + "name": "Rollux Explorer", + "url": "https://explorer.rollux.com", + "standard": "EIP3091" + } ], "571": [ { - name: "MetaExplorer", - url: "https://explorer.metatime.com", - standard: "EIP3091", - }, + "name": "MetaExplorer", + "url": "https://explorer.metatime.com", + "standard": "EIP3091" + } ], "579": [ { - name: "filenova explorer", - url: "https://scan.filenova.org", - icon: "filenova", - standard: "none", - }, + "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": "subscan", + "url": "https://astar.subscan.io", + "standard": "none", + "icon": "subscan" }, { - name: "blockscout", - url: "https://blockscout.com/astar", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.com/astar", + "icon": "blockscout", + "standard": "EIP3091" + } ], "595": [ { - name: "blockscout", - url: "https://blockscout.mandala.aca-staging.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.mandala.aca-staging.network", + "standard": "EIP3091" + } ], "596": [ { - name: "blockscout", - url: "https://blockscout.karura-testnet.aca-staging.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Vine Explorer", + "url": "https://vne.network/rose", + "standard": "none", + "icon": "vine" + } ], "612": [ { - name: "EIOB Explorer", - url: "https://explorer.eiob.xyz", - standard: "none", - }, + "name": "EIOB Explorer", + "url": "https://explorer.eiob.xyz", + "standard": "none" + } ], "614": [ { - name: "GLQ Explorer", - url: "https://explorer.graphlinq.io", - standard: "none", - }, + "name": "GLQ Explorer", + "url": "https://explorer.graphlinq.io", + "standard": "none" + } ], "634": [ { - name: "avoscan", - url: "https://avoscan.co", - icon: "avocado", - standard: "none", - }, + "name": "avoscan", + "url": "https://avoscan.co", + "icon": "avocado", + "standard": "none" + } ], "646": [ { - name: "Flow Diver", - url: "https://previewnet.flowdiver.io", - standard: "none", - }, + "name": "Flow Diver", + "url": "https://previewnet.flowdiver.io", + "standard": "none" + } ], "647": [ { - name: "SX Network Toronto Explorer", - url: "https://explorer.toronto.sx.technology", - standard: "EIP3091", - }, + "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", - }, + "name": "Endurance Scan", + "url": "https://explorer.endurance.fusionist.io", + "standard": "EIP3091" + } ], "653": [ { - name: "kalichain explorer", - url: "https://explorer.kalichain.com", - standard: "EIP3091", - }, + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } ], "654": [ { - name: "kalichain explorer", - url: "https://explorer.kalichain.com", - standard: "EIP3091", - }, + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } ], "662": [ { - name: "ultronsmartchain explorer", - url: "https://scan.ultronsmartchain.io", - standard: "EIP3091", - }, + "name": "ultronsmartchain explorer", + "url": "https://scan.ultronsmartchain.io", + "standard": "EIP3091" + } ], "667": [ { - name: "blockscout", - url: "https://arrakis.gorengine.com", - icon: "laos", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://arrakis.gorengine.com", + "icon": "laos", + "standard": "EIP3091" + } ], "668": [ { - name: "JuncaScan", - url: "https://scan.juncachain.com", - standard: "EIP3091", - }, + "name": "JuncaScan", + "url": "https://scan.juncachain.com", + "standard": "EIP3091" + } ], "669": [ { - name: "JuncaScan", - url: "https://scan-testnet.juncachain.com", - standard: "EIP3091", - }, + "name": "JuncaScan", + "url": "https://scan-testnet.juncachain.com", + "standard": "EIP3091" + } ], "686": [ { - name: "blockscout", - url: "https://blockscout.karura.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.karura.network", + "standard": "EIP3091" + } ], "690": [ { - name: "blockscout", - url: "https://explorer.redstone.xyz", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.redstone.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], "700": [ { - name: "starscan", - url: "https://avastar.info", - standard: "EIP3091", - }, + "name": "starscan", + "url": "https://avastar.info", + "standard": "EIP3091" + } ], "701": [ { - name: "blockscout", - url: "https://koi-scan.darwinia.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://koi-scan.darwinia.network", + "standard": "EIP3091" + } ], "707": [ { - name: "BlockChain Station Explorer", - url: "https://explorer.bcsdev.io", - standard: "EIP3091", - }, + "name": "BlockChain Station Explorer", + "url": "https://explorer.bcsdev.io", + "standard": "EIP3091" + } ], "708": [ { - name: "BlockChain Station Explorer", - url: "https://testnet.bcsdev.io", - standard: "EIP3091", - }, + "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", - }, + "name": "Furya EVM Explorer", + "url": "https://explorer.furya.io", + "standard": "EIP3091", + "icon": "highbury" + } ], "713": [ { - name: "vrcscan", - url: "https://vrcscan.com", - standard: "EIP3091", + "name": "vrcscan", + "url": "https://vrcscan.com", + "standard": "EIP3091" }, { - name: "dxbscan", - url: "https://dxb.vrcscan.com", - standard: "EIP3091", - }, + "name": "dxbscan", + "url": "https://dxb.vrcscan.com", + "standard": "EIP3091" + } ], "719": [ { - name: "shibscan", - url: "https://puppyscan.shib.io", - standard: "EIP3091", - }, + "name": "shibscan", + "url": "https://puppyscan.shib.io", + "standard": "EIP3091" + } ], "721": [ { - name: "blockscout", - url: "https://explorer.lycanchain.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.lycanchain.com", + "standard": "EIP3091" + } ], "730": [ { - name: "Lovely Network Mainnet", - url: "https://scan.lovely.network", - standard: "EIP3091", - }, + "name": "Lovely Network Mainnet", + "url": "https://scan.lovely.network", + "standard": "EIP3091" + } ], "741": [ { - name: "ventionscan", - url: "https://testnet.ventionscan.io", - standard: "EIP3091", - }, + "name": "ventionscan", + "url": "https://testnet.ventionscan.io", + "standard": "EIP3091" + } ], "742": [ { - name: "Script Explorer", - url: "https://explorer.script.tv", - standard: "none", - }, + "name": "Script Explorer", + "url": "https://explorer.script.tv", + "standard": "none" + } ], "747": [ { - name: "Flow Diver", - url: "https://flowdiver.io", - standard: "none", - }, + "name": "Flow Diver", + "url": "https://flowdiver.io", + "standard": "none" + } ], "766": [ { - name: "QL1 Mainnet Explorer", - url: "https://mainnet.qom.one", - icon: "qom", - standard: "EIP3091", - }, + "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", - }, + "name": "OPEN CHAIN TESTNET", + "url": "https://testnet.openchain.info", + "standard": "none" + } ], "786": [ { - name: "maalscan", - url: "https://maalscan.io", - standard: "EIP3091", - }, + "name": "maalscan", + "url": "https://maalscan.io", + "standard": "EIP3091" + } ], "787": [ { - name: "blockscout", - url: "https://blockscout.acala.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.acala.network", + "standard": "EIP3091" + } ], "788": [ { - name: "aeroscan", - url: "https://testnet.aeroscan.id", - standard: "EIP3091", - }, + "name": "aeroscan", + "url": "https://testnet.aeroscan.id", + "standard": "EIP3091" + } ], "789": [ { - name: "patexscan", - url: "https://patexscan.io", - icon: "patex", - standard: "EIP3091", - }, + "name": "patexscan", + "url": "https://patexscan.io", + "icon": "patex", + "standard": "EIP3091" + } ], "799": [ { - name: "rupayascan", - url: "https://scan.testnet.rupaya.io", - standard: "EIP3091", - }, + "name": "rupayascan", + "url": "https://scan.testnet.rupaya.io", + "standard": "EIP3091" + } ], "800": [ { - name: "Lucid Explorer", - url: "https://explorer.lucidcoin.io", - standard: "none", - }, + "name": "Lucid Explorer", + "url": "https://explorer.lucidcoin.io", + "standard": "none" + } ], "810": [ { - name: "Haven1 Explorer", - url: "https://testnet-explorer.haven1.org", - icon: "haven1", - standard: "EIP3091", - }, + "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.qitmeer.io", + "standard": "EIP3091" }, { - name: "meerscan", - icon: "meer", - url: "https://qng.meerscan.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", - }, + "name": "BeOne Chain Mainnet", + "url": "https://beonescan.com", + "standard": "EIP3091" + } ], "822": [ { - name: "RunicScan", - url: "https://scan.runic.build", - icon: "runic-testnet", - standard: "EIP3091", - }, + "name": "RunicScan", + "url": "https://scan.runic.build", + "icon": "runic-testnet", + "standard": "EIP3091" + } ], "831": [ { - name: "CDT Explorer", - url: "https://explorer.checkdot.io", - standard: "none", - }, + "name": "CDT Explorer", + "url": "https://explorer.checkdot.io", + "standard": "none" + } ], "841": [ { - name: "Taraxa Explorer", - url: "https://explorer.mainnet.taraxa.io", - standard: "none", - }, + "name": "Taraxa Explorer", + "url": "https://explorer.mainnet.taraxa.io", + "standard": "none" + } ], "842": [ { - name: "Taraxa Explorer", - url: "https://explorer.testnet.taraxa.io", - standard: "none", - }, + "name": "Taraxa Explorer", + "url": "https://explorer.testnet.taraxa.io", + "standard": "none" + } ], "859": [ { - name: "Zeeth Explorer Dev", - url: "https://explorer.dev.zeeth.io", - standard: "none", - }, + "name": "Zeeth Explorer Dev", + "url": "https://explorer.dev.zeeth.io", + "standard": "none" + } ], "868": [ { - name: "FSCScan", - url: "https://explorer.fantasiachain.com", - standard: "EIP3091", - }, + "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", - }, + "name": "Bandai Namco Research Verse Explorer", + "url": "https://explorer.main.oasvrs.bnken.net", + "standard": "EIP3091" + } ], "877": [ { - name: "dxtscan", - url: "https://dxtscan.com", - standard: "EIP3091", - }, + "name": "dxtscan", + "url": "https://dxtscan.com", + "standard": "EIP3091" + } ], "880": [ { - name: "Ambros Chain Explorer", - url: "https://ambrosscan.com", - standard: "none", - }, + "name": "Ambros Chain Explorer", + "url": "https://ambrosscan.com", + "standard": "none" + } ], "898": [ { - name: "Maxi Chain Testnet Explorer", - url: "https://testnet.maxi.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "TAPROOT Scan", + "url": "https://scan.taprootchain.io", + "icon": "taproot", + "standard": "EIP3091" + } ], "917": [ { - name: "FireScan", - url: "https://rinia.firescan.io", - standard: "EIP3091", - }, + "name": "FireScan", + "url": "https://rinia.firescan.io", + "standard": "EIP3091" + } ], "919": [ { - name: "modescout", - url: "https://sepolia.explorer.mode.network", - standard: "none", - }, + "name": "modescout", + "url": "https://sepolia.explorer.mode.network", + "standard": "none" + } ], "927": [ { - name: "Yidarkscan", - url: "https://yidarkscan.com", - standard: "EIP3091", - }, + "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://scan.v4.testnet.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://otter-testnet-pulsechain.g4mm4.io", - 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", - }, + "name": "Lyra Explorer", + "url": "https://explorer.lyra.finance", + "icon": "lyra", + "standard": "EIP3091" + } ], "963": [ { - name: "blockscout", - url: "https://scan.bitcoincode.technology", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.bitcoincode.technology", + "standard": "EIP3091" + } ], "969": [ { - name: "EthXY Network Explorer", - url: "https://explorer.ethxy.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "EthXY Testnet Network Explorer", + "url": "https://explorer.testnet.ethxy.com", + "standard": "EIP3091" + } ], "980": [ { - name: "topscan.dev", - url: "https://www.topscan.io", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } ], "990": [ { - name: "eLiberty Mainnet", - url: "https://explorer.eliberty.ngo", - standard: "EIP3091", - }, + "name": "eLiberty Mainnet", + "url": "https://explorer.eliberty.ngo", + "standard": "EIP3091" + } ], "997": [ { - name: "5ireChain Explorer", - url: "https://explorer.5ire.network", - standard: "none", - icon: "5ireChain", - }, + "name": "5ireChain Explorer", + "url": "https://explorer.5ire.network", + "standard": "none", + "icon": "5ireChain" + } ], "998": [ { - name: "blockscout", - url: "https://explorer.luckynetwork.org", - standard: "none", + "name": "blockscout", + "url": "https://explorer.luckynetwork.org", + "standard": "none" }, { - name: "expedition", - url: "https://lnscan.org", - standard: "none", - }, + "name": "expedition", + "url": "https://lnscan.org", + "standard": "none" + } ], "1000": [ { - name: "GTON Network Explorer", - url: "https://explorer.gton.network", - standard: "EIP3091", - }, + "name": "GTON Network Explorer", + "url": "https://explorer.gton.network", + "standard": "EIP3091" + } ], "1001": [ { - name: "Klaytnscope", - url: "https://baobab.klaytnscope.com", - standard: "EIP3091", + "name": "Klaytnscope", + "url": "https://baobab.klaytnscope.com", + "standard": "EIP3091" }, { - name: "Klaytnfinder", - url: "https://baobab.klaytnfinder.io", - standard: "EIP3091", - }, + "name": "Klaytnfinder", + "url": "https://baobab.klaytnfinder.io", + "standard": "EIP3091" + } ], "1003": [ { - name: "Tectum explorer", - url: "https://explorer.tectum.io", - icon: "Tettoken256", - standard: "EIP3091", - }, + "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", - }, + "name": "test-ektascan", + "url": "https://test.ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } ], "1008": [ { - name: "eurusexplorer", - url: "https://explorer.eurus.network", - icon: "eurus", - standard: "none", - }, + "name": "eurusexplorer", + "url": "https://explorer.eurus.network", + "icon": "eurus", + "standard": "none" + } ], "1009": [ { - name: "Jumboscan", - url: "https://jumboscan.jumbochain.org", - standard: "EIP3091", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://evm.rebuschain.com", + "icon": "rebus", + "standard": "none" }, { - name: "Rebus Cosmos Explorer (ping.pub)", - url: "https://cosmos.rebuschain.com", - icon: "rebus", - standard: "none", - }, + "name": "Rebus Cosmos Explorer (ping.pub)", + "url": "https://cosmos.rebuschain.com", + "icon": "rebus", + "standard": "none" + } ], "1028": [ { - name: "testbttcscan", - url: "https://testscan.bittorrentchain.io", - standard: "none", - }, + "name": "testbttcscan", + "url": "https://testscan.bittorrentchain.io", + "standard": "none" + } ], "1030": [ { - name: "Conflux Scan", - url: "https://evm.confluxscan.net", - standard: "none", - }, + "name": "Conflux Scan", + "url": "https://evm.confluxscan.net", + "standard": "none" + } ], "1031": [ { - name: "proxy network testnet", - url: "http://testnet-explorer.theproxy.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Bronos Explorer", + "url": "https://broscan.bronos.org", + "standard": "none", + "icon": "bronos" + } ], "1073": [ { - name: "explorer", - url: "https://explorer.evm.testnet.shimmer.network", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } ], "1075": [ { - name: "explorer", - url: "https://explorer.evm.testnet.iotaledger.net", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.evm.testnet.iotaledger.net", + "standard": "EIP3091" + } ], "1079": [ { - name: "explorer", - url: "https://subnets-test.avax.network/mintara", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://subnets-test.avax.network/mintara", + "standard": "EIP3091" + } ], "1080": [ { - name: "explorer", - url: "https://subnets.avax.network/mintara", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://subnets.avax.network/mintara", + "standard": "EIP3091" + } ], "1088": [ { - name: "blockscout", - url: "https://andromeda-explorer.metis.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://andromeda-explorer.metis.io", + "standard": "EIP3091" + } ], "1089": [ { - name: "explorer.guru", - url: "https://humans.explorers.guru", - icon: "humans", - standard: "none", - }, + "name": "explorer.guru", + "url": "https://humans.explorers.guru", + "icon": "humans", + "standard": "none" + } ], "1099": [ { - name: "moac explorer", - url: "https://explorer.moac.io", - standard: "none", - }, + "name": "moac explorer", + "url": "https://explorer.moac.io", + "standard": "none" + } ], "1100": [ { - name: "dym.fyi", - url: "https://dym.fyi", - standard: "EIP3091", - }, + "name": "dym.fyi", + "url": "https://dym.fyi", + "standard": "EIP3091" + } ], "1101": [ { - name: "blockscout", - url: "https://zkevm.polygonscan.com", - icon: "zkevm", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://zkevm.polygonscan.com", + "icon": "zkevm", + "standard": "EIP3091" + } ], "1107": [ { - name: "BLXq Explorer", - url: "https://explorer.blx.org", - icon: "blxq", - standard: "none", - }, + "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", - }, + "name": "BLXq Explorer", + "url": "https://explorer.blxq.org", + "icon": "blxq", + "standard": "EIP3091" + } ], "1111": [ { - name: "WEMIX Block Explorer", - url: "https://explorer.wemix.com", - standard: "EIP3091", - }, + "name": "WEMIX Block Explorer", + "url": "https://explorer.wemix.com", + "standard": "EIP3091" + } ], "1112": [ { - name: "WEMIX Testnet Microscope", - url: "https://microscope.test.wemix.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Core Scan", + "url": "https://scan.coredao.org", + "icon": "core", + "standard": "EIP3091" + } ], "1117": [ { - name: "Dogcoin", - url: "https://explorer.dogcoin.network", - standard: "EIP3091", - }, + "name": "Dogcoin", + "url": "https://explorer.dogcoin.network", + "standard": "EIP3091" + } ], "1123": [ { - name: "blockscout", - url: "https://testnet-explorer.bsquared.network", - icon: "bsquare", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } ], "1133": [ { - name: "MetaScan", - url: "https://meta.defiscan.live", - standard: "EIP3091", - }, + "name": "MetaScan", + "url": "https://meta.defiscan.live", + "standard": "EIP3091" + } ], "1135": [ { - name: "blockscout", - url: "https://blockscout.lisk.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "1138": [ { - name: "amstarscan-testnet", - url: "https://testnet.amstarscan.com", - standard: "EIP3091", - }, + "name": "amstarscan-testnet", + "url": "https://testnet.amstarscan.com", + "standard": "EIP3091" + } ], "1147": [ { - name: "Flag Testnet Explorer", - url: "https://testnet-explorer.flagscan.xyz", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "mosscan", + "url": "https://www.mosscan.com", + "icon": "clubmos", + "standard": "none" + } ], "1197": [ { - name: "ioraexplorer", - url: "https://explorer.iorachain.com", - standard: "EIP3091", - }, + "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", - }, + "name": "WTTScout", + "url": "https://explorer.cadaut.com", + "standard": "EIP3091" + } ], "1209": [ { - name: "Saitascan explorer", - url: "https://saitascan.io", - standard: "none", - icon: "SaitaBlockChain(SBC)", - }, + "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", - }, + "name": "Cuckoo Sepolia Explorer", + "url": "https://testnet-scan.cuckoo.network", + "standard": "EIP3091" + } ], "1213": [ { - name: "popcateum explorer", - url: "https://explorer.popcateum.org", - standard: "none", - }, + "name": "popcateum explorer", + "url": "https://explorer.popcateum.org", + "standard": "none" + } ], "1214": [ { - name: "Enter Explorer - Expenter", - url: "https://explorer.entercoin.net", - icon: "enter", - standard: "EIP3091", - }, + "name": "Enter Explorer - Expenter", + "url": "https://explorer.entercoin.net", + "icon": "enter", + "standard": "EIP3091" + } ], - "1224": [ + "1225": [ { - name: "Hybrid Testnet", - url: "https://explorer.buildonhybrid.com", - standard: "EIP3091", - }, + "name": "Hybrid Testnet", + "url": "https://explorer.buildonhybrid.com", + "standard": "EIP3091" + } ], "1229": [ { - name: "blockscout", - url: "https://exzoscan.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://exzoscan.io", + "standard": "EIP3091" + } ], "1230": [ { - name: "Ultron Testnet Explorer", - url: "https://explorer.ultron-dev.io", - icon: "ultron", - standard: "none", - }, + "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", - }, + "name": "Ultron Explorer", + "url": "https://ulxscan.com", + "icon": "ultron", + "standard": "none" + } ], "1234": [ { - name: "StepScan", - url: "https://stepscan.io", - icon: "step", - standard: "EIP3091", - }, + "name": "StepScan", + "url": "https://stepscan.io", + "icon": "step", + "standard": "EIP3091" + } ], "1235": [ { - name: "ITX Mainnet Explorer (Blockscout)", - url: "https://explorer.itxchain.com", - standard: "EIP3091", - }, + "name": "ITX Mainnet Explorer (Blockscout)", + "url": "https://explorer.itxchain.com", + "standard": "EIP3091" + } ], "1243": [ { - name: "archiescan", - url: "https://app.archiescan.io", - standard: "none", - }, + "name": "archiescan", + "url": "https://app.archiescan.io", + "standard": "none" + } ], "1244": [ { - name: "archiescan", - url: "https://testnet.archiescan.io", - standard: "none", - }, + "name": "archiescan", + "url": "https://testnet.archiescan.io", + "standard": "none" + } ], "1246": [ { - name: "OMSCAN - Expenter", - url: "https://omscan.omplatform.com", - standard: "none", - }, + "name": "OMSCAN - Expenter", + "url": "https://omscan.omplatform.com", + "standard": "none" + } ], "1248": [ { - name: "DogetherExplorer", - url: "https://explorer.dogether.dog", - standard: "EIP3091", - }, + "name": "DogetherExplorer", + "url": "https://explorer.dogether.dog", + "standard": "EIP3091" + } ], "1252": [ { - name: "CICscan", - url: "https://testnet.cicscan.com", - icon: "cicchain", - standard: "EIP3091", - }, + "name": "CICscan", + "url": "https://testnet.cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } ], "1280": [ { - name: "HALOexplorer", - url: "https://browser.halo.land", - standard: "none", - }, + "name": "HALOexplorer", + "url": "https://browser.halo.land", + "standard": "none" + } ], "1284": [ { - name: "moonscan", - url: "https://moonbeam.moonscan.io", - standard: "none", - }, + "name": "moonscan", + "url": "https://moonbeam.moonscan.io", + "standard": "none" + } ], "1285": [ { - name: "moonscan", - url: "https://moonriver.moonscan.io", - standard: "none", - }, + "name": "moonscan", + "url": "https://moonriver.moonscan.io", + "standard": "none" + } ], "1287": [ { - name: "moonscan", - url: "https://moonbase.moonscan.io", - standard: "none", - }, + "name": "moonscan", + "url": "https://moonbase.moonscan.io", + "standard": "none" + } ], "1291": [ { - name: "Swisstronik Scout", - url: "https://explorer-evm.testnet.swisstronik.com", - standard: "none", - }, + "name": "Swisstronik Scout", + "url": "https://explorer-evm.testnet.swisstronik.com", + "standard": "none" + } ], "1311": [ { - name: "dos-testnet", - url: "https://test.doscan.io", - standard: "EIP3091", - }, + "name": "dos-testnet", + "url": "https://test.doscan.io", + "standard": "EIP3091" + } ], "1314": [ { - name: "alyxscan", - url: "https://www.alyxscan.com", - standard: "EIP3091", - }, + "name": "alyxscan", + "url": "https://www.alyxscan.com", + "standard": "EIP3091" + } ], "1319": [ { - name: "AIA Chain Explorer Mainnet", - url: "https://aiascan.com", - standard: "EIP3091", - }, + "name": "AIA Chain Explorer Mainnet", + "url": "https://aiascan.com", + "standard": "EIP3091" + } ], "1320": [ { - name: "AIA Chain Explorer Testnet", - url: "https://testnet.aiascan.com", - standard: "EIP3091", - }, + "name": "AIA Chain Explorer Testnet", + "url": "https://testnet.aiascan.com", + "standard": "EIP3091" + } ], "1328": [ { - name: "Seitrace", - url: "https://seitrace.com", - standard: "EIP3091", - }, + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } ], "1329": [ { - name: "Seitrace", - url: "https://seitrace.com", - standard: "EIP3091", - }, + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } ], "1338": [ { - name: "Elysium testnet explorer", - url: "https://elysium-explorer.vulcanforged.com", - standard: "none", - }, + "name": "Elysium testnet explorer", + "url": "https://elysium-explorer.vulcanforged.com", + "standard": "none" + } ], "1339": [ { - name: "Elysium mainnet explorer", - url: "https://explorer.elysiumchain.tech", - standard: "none", - }, + "name": "Elysium mainnet explorer", + "url": "https://explorer.elysiumchain.tech", + "standard": "none" + } ], "1343": [ { - name: "BLITZ Explorer", - url: "https://subnets-test.avax.network/blitz", - standard: "EIP3091", - }, + "name": "BLITZ Explorer", + "url": "https://subnets-test.avax.network/blitz", + "standard": "EIP3091" + } ], "1353": [ { - name: "CICscan", - url: "https://cicscan.com", - icon: "cicchain", - standard: "EIP3091", - }, + "name": "CICscan", + "url": "https://cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } ], "1369": [ { - name: "zafirium-explorer", - url: "https://explorer.zakumi.io", - standard: "none", - }, + "name": "zafirium-explorer", + "url": "https://explorer.zakumi.io", + "standard": "none" + } ], "1370": [ { - name: "ramascan", - url: "https://ramascan.com", - icon: "ramestta", - standard: "EIP3091", - }, + "name": "ramascan", + "url": "https://ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } ], "1377": [ { - name: "Pingaksha", - url: "https://pingaksha.ramascan.com", - icon: "ramestta", - standard: "EIP3091", - }, + "name": "Pingaksha", + "url": "https://pingaksha.ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } ], "1379": [ { - name: "kalarscan", - url: "https://explorer.kalarchain.tech", - icon: "kalarscan", - standard: "EIP3091", - }, + "name": "kalarscan", + "url": "https://explorer.kalarchain.tech", + "icon": "kalarscan", + "standard": "EIP3091" + } ], "1388": [ { - name: "amstarscan", - url: "https://mainnet.amstarscan.com", - standard: "EIP3091", - }, + "name": "amstarscan", + "url": "https://mainnet.amstarscan.com", + "standard": "EIP3091" + } ], "1392": [ { - name: "BlockExplorer", - url: "https://www.blockexplorer.com", - standard: "EIP3091", - }, + "name": "BlockExplorer", + "url": "https://www.blockexplorer.com", + "standard": "EIP3091" + } ], "1433": [ { - name: "Rikeza Blockchain explorer", - url: "https://rikscan.com", - standard: "EIP3091", - }, + "name": "Rikeza Blockchain explorer", + "url": "https://rikscan.com", + "standard": "EIP3091" + } ], "1442": [ { - name: "Polygon zkEVM explorer", - url: "https://explorer.public.zkevm-test.net", - standard: "EIP3091", - }, + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } ], "1452": [ { - name: "GIL Explorer", - url: "https://explorer.giltestnet.com", - standard: "EIP3091", - }, + "name": "GIL Explorer", + "url": "https://explorer.giltestnet.com", + "standard": "EIP3091" + } ], "1453": [ { - name: "MetaExplorer", - url: "https://istanbul-explorer.metachain.dev", - standard: "EIP3091", - }, + "name": "MetaExplorer", + "url": "https://istanbul-explorer.metachain.dev", + "standard": "EIP3091" + } ], "1455": [ { - name: "Ctex Scan Explorer", - url: "https://ctexscan.com", - standard: "none", - }, + "name": "Ctex Scan Explorer", + "url": "https://ctexscan.com", + "standard": "none" + } ], "1490": [ { - name: "Vitruveo Explorer", - url: "https://explorer.vitruveo.xyz", - icon: "vitruveo", - standard: "EIP3091", - }, + "name": "Vitruveo Explorer", + "url": "https://explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } ], "1499": [ { - name: "IGC-Scan", - url: "https://igcscan.com", - standard: "EIP3091", - }, + "name": "IGC-Scan", + "url": "https://igcscan.com", + "standard": "EIP3091" + } ], "1501": [ { - name: "bevm canary scan", - url: "https://scan-canary.bevm.io", - standard: "none", - }, + "name": "bevm canary scan", + "url": "https://scan-canary.bevm.io", + "standard": "none" + } ], "1506": [ { - name: "Sherpax Mainnet Explorer", - url: "https://evm.sherpax.io", - standard: "none", - }, + "name": "Sherpax Mainnet Explorer", + "url": "https://evm.sherpax.io", + "standard": "none" + } ], "1507": [ { - name: "Sherpax Testnet Explorer", - url: "https://evm-pre.sherpax.io", - standard: "none", - }, + "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", - }, + "name": "Beagle Messaging Chain Explorer", + "url": "https://eth.beagle.chat", + "standard": "EIP3091" + } ], "1559": [ { - name: "TenetScan Mainnet", - url: "https://tenetscan.io", - icon: "tenet", - standard: "EIP3091", - }, + "name": "TenetScan Mainnet", + "url": "https://tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } ], "1617": [ { - name: "Ethereum Inscription Explorer", - url: "https://explorer.etins.org", - standard: "none", - }, + "name": "Ethereum Inscription Explorer", + "url": "https://explorer.etins.org", + "standard": "none" + } ], "1625": [ { - name: "Gravity Alpha Mainnet Explorer", - url: "https://explorer.gravity.xyz", - standard: "EIP3091", - }, + "name": "Gravity Alpha Mainnet Explorer", + "url": "https://explorer.gravity.xyz", + "standard": "EIP3091" + } ], "1662": [ { - name: "Liquichain Mainnet", - url: "https://mainnet.liquichain.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Anytype Explorer", + "url": "https://explorer.anytype.io", + "icon": "any", + "standard": "EIP3091" + } ], "1707": [ { - name: "blockscout", - url: "https://exp.blockchain.or.th", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://exp.blockchain.or.th", + "standard": "EIP3091" + } ], "1708": [ { - name: "blockscout", - url: "https://exp.testnet.blockchain.or.th", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://exp.testnet.blockchain.or.th", + "standard": "EIP3091" + } ], "1717": [ { - name: "Doric Explorer", - url: "https://explorer.doric.network", - standard: "EIP3091", - }, + "name": "Doric Explorer", + "url": "https://explorer.doric.network", + "standard": "EIP3091" + } ], "1718": [ { - name: "Palettescan", - url: "https://palettescan.com", - icon: "PLT", - standard: "none", - }, + "name": "Palettescan", + "url": "https://palettescan.com", + "icon": "PLT", + "standard": "none" + } ], "1729": [ { - name: "Reya Network Explorer", - url: "https://explorer.reya.network", - standard: "EIP3091", - }, + "name": "Reya Network Explorer", + "url": "https://explorer.reya.network", + "standard": "EIP3091" + } ], "1740": [ { - name: "blockscout", - url: "https://testnet.explorer.metall2.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "1750": [ { - name: "blockscout", - url: "https://explorer.metall2.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "1773": [ { - name: "PartyExplorer", - url: "https://partyexplorer.co", - icon: "grams", - standard: "EIP3091", - }, + "name": "PartyExplorer", + "url": "https://partyexplorer.co", + "icon": "grams", + "standard": "EIP3091" + } ], "1777": [ { - name: "Gauss Explorer", - url: "https://explorer.gaussgang.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://rabbit.analogscan.com", + "standard": "none" + } ], "1818": [ { - name: "cube-scan", - url: "https://cubescan.network", - standard: "EIP3091", - }, + "name": "cube-scan", + "url": "https://cubescan.network", + "standard": "EIP3091" + } ], "1819": [ { - name: "cubetest-scan", - url: "https://testnet.cubescan.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "whitechain-explorer", + "url": "https://explorer.whitechain.io", + "standard": "EIP3091" + } ], "1881": [ { - name: "blockscout", - url: "https://scan.cartenz.works", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.cartenz.works", + "standard": "EIP3091" + } ], "1890": [ { - name: "phoenix", - url: "https://phoenix.lightlink.io", - icon: "lightlink", - standard: "EIP3091", - }, + "name": "phoenix", + "url": "https://phoenix.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } ], "1891": [ { - name: "pegasus", - url: "https://pegasus.lightlink.io", - icon: "lightlink", - standard: "EIP3091", - }, + "name": "pegasus", + "url": "https://pegasus.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } ], "1898": [ { - name: "explorer", - url: "https://explorer.boyanet.org:4001", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.boyanet.org:4001", + "standard": "EIP3091" + } ], "1904": [ { - name: "blockscout", - url: "https://explorer.sportschainnetwork.xyz", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.sportschainnetwork.xyz", + "standard": "EIP3091" + } ], "1907": [ { - name: "Bitci Explorer", - url: "https://bitciexplorer.com", - standard: "EIP3091", - }, + "name": "Bitci Explorer", + "url": "https://bitciexplorer.com", + "standard": "EIP3091" + } ], "1908": [ { - name: "Bitci Explorer Testnet", - url: "https://testnet.bitciexplorer.com", - standard: "EIP3091", - }, + "name": "Bitci Explorer Testnet", + "url": "https://testnet.bitciexplorer.com", + "standard": "EIP3091" + } ], "1909": [ { - name: "blockscout", - url: "https://merklescan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://merklescan.com", + "standard": "none" + } ], "1911": [ { - name: "scalind", - url: "https://explorer.scalind.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "dos-mainnet", + "url": "https://exp.dexilla.com", + "standard": "EIP3091" + } ], "1956": [ { - name: "aiw3 testnet scan", - url: "https://scan-testnet.aiw3.io", - standard: "none", - }, + "name": "aiw3 testnet scan", + "url": "https://scan-testnet.aiw3.io", + "standard": "none" + } ], "1961": [ { - name: "Selendra Scan", - url: "https://scan.selendra.org", - standard: "none", - }, + "name": "Selendra Scan", + "url": "https://scan.selendra.org", + "standard": "none" + } ], "1967": [ { - name: "metaexplorer-eleanor", - url: "https://explorer.metatime.com/eleanor", - standard: "EIP3091", - }, + "name": "metaexplorer-eleanor", + "url": "https://explorer.metatime.com/eleanor", + "standard": "EIP3091" + } ], "1969": [ { - name: "blockscout", - url: "https://testnetscan.scschain.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnetscan.scschain.com", + "standard": "EIP3091" + } ], "1970": [ { - name: "blockscout", - url: "https://scan.scschain.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.scschain.com", + "standard": "EIP3091" + } ], "1972": [ { - name: "RedeCoin Explorer", - url: "https://explorer3.redecoin.eu", - standard: "none", - }, + "name": "RedeCoin Explorer", + "url": "https://explorer3.redecoin.eu", + "standard": "none" + } ], "1975": [ { - name: "Onus explorer mainnet", - url: "https://explorer.onuschain.io", - icon: "onus", - standard: "EIP3091", - }, + "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", - }, + "name": "testnetexplorer", + "url": "https://testnetexplorer.eurus.network", + "icon": "eurus", + "standard": "none" + } ], "1985": [ { - name: "mainnetexplorer", - url: "http://explore.satosh.ie", - icon: "satoshie", - standard: "none", - }, + "name": "mainnetexplorer", + "url": "http://explore.satosh.ie", + "icon": "satoshie", + "standard": "none" + } ], "1986": [ { - name: "testnetexplorer", - url: "http://explore-testnet.satosh.ie", - icon: "satoshie", - standard: "none", - }, + "name": "testnetexplorer", + "url": "http://explore-testnet.satosh.ie", + "icon": "satoshie", + "standard": "none" + } ], "1992": [ { - name: "routescan", - url: "https://explorer.hubble.exchange", - standard: "EIP3091", - }, + "name": "routescan", + "url": "https://explorer.hubble.exchange", + "standard": "EIP3091" + } ], "1994": [ { - name: "ektascan", - url: "https://ektascan.io", - icon: "ekta", - standard: "EIP3091", - }, + "name": "ektascan", + "url": "https://ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } ], "1995": [ { - name: "edexa-testnet", - url: "https://explorer.testnet.edexa.network", - standard: "EIP3091", - }, + "name": "edexa-testnet", + "url": "https://explorer.testnet.edexa.network", + "standard": "EIP3091" + } ], "1996": [ { - name: "Sanko Explorer", - url: "https://explorer.sanko.xyz", - standard: "EIP3091", - }, + "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", - }, + "name": "Kyotoscan", + "url": "https://testnet.kyotoscan.io", + "standard": "EIP3091" + } ], "2000": [ { - name: "dogechain explorer", - url: "https://explorer.dogechain.dog", - standard: "EIP3091", - }, + "name": "dogechain explorer", + "url": "https://explorer.dogechain.dog", + "standard": "EIP3091" + } ], "2001": [ { - name: "Blockscout", - url: "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", - standard: "none", - }, + "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", - }, + "name": "Blockscout", + "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } ], "2004": [ { - name: "MetaScan", - url: "http://twoto3.com:3000", - standard: "none", - }, + "name": "MetaScan", + "url": "http://twoto3.com:3000", + "standard": "none" + } ], "2008": [ { - name: "CloudWalk Testnet Explorer", - url: "https://explorer.testnet.cloudwalk.io", - standard: "none", - }, + "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", - }, + "name": "CloudWalk Mainnet Explorer", + "url": "https://explorer.mainnet.cloudwalk.io", + "standard": "none" + } ], "2014": [ { - name: "nowscan", - url: "https://nowscan.io", - standard: "EIP3091", - }, + "name": "nowscan", + "url": "https://nowscan.io", + "standard": "EIP3091" + } ], "2016": [ { - name: "MainnetZ", - url: "https://explorer.mainnetz.io", - standard: "EIP3091", - }, + "name": "MainnetZ", + "url": "https://explorer.mainnetz.io", + "standard": "EIP3091" + } ], "2017": [ { - name: "telscan", - url: "https://telscan.io", - icon: "telcoin", - standard: "EIP3091", - }, + "name": "telscan", + "url": "https://telscan.io", + "icon": "telcoin", + "standard": "EIP3091" + } ], "2018": [ { - name: "PublicMint Explorer", - url: "https://explorer.dev.publicmint.io", - standard: "EIP3091", - }, + "name": "PublicMint Explorer", + "url": "https://explorer.dev.publicmint.io", + "standard": "EIP3091" + } ], "2019": [ { - name: "PublicMint Explorer", - url: "https://explorer.tst.publicmint.io", - standard: "EIP3091", - }, + "name": "PublicMint Explorer", + "url": "https://explorer.tst.publicmint.io", + "standard": "EIP3091" + } ], "2020": [ { - name: "PublicMint Explorer", - url: "https://explorer.publicmint.io", - standard: "EIP3091", - }, + "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 EdgeEVM explorer by Bharathcoorg", + "url": "https://edgscan.live", + "standard": "EIP3091" }, { - name: "Edgscan EdgeWASM explorer by Bharathcoorg", - url: "https://edgscan.ink", - standard: "none", - icon: "edgscan", - }, + "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", - }, + "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 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", - }, + "name": "Taycan Cosmos Explorer", + "url": "https://cosmoscan-test.hupayx.io", + "standard": "none", + "icon": "shuffle" + } ], "2025": [ { - name: "rangersscan", - url: "https://scan.rangersprotocol.com", - standard: "none", - }, + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } ], "2026": [ { - name: "Edgeless Explorer", - url: "https://explorer.edgeless.network", - standard: "EIP3091", - }, + "name": "Edgeless Explorer", + "url": "https://explorer.edgeless.network", + "standard": "EIP3091" + } ], "2031": [ { - name: "subscan", - url: "https://centrifuge.subscan.io", - standard: "EIP3091", - icon: "subscan", - }, + "name": "subscan", + "url": "https://centrifuge.subscan.io", + "standard": "EIP3091", + "icon": "subscan" + } ], "2037": [ { - name: "KIWI Explorer", - url: "https://subnets-test.avax.network/kiwi", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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 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", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://web3-explorer.thestratos.org", + "standard": "none" }, { - name: "Stratos Cosmos Explorer (BigDipper)", - url: "https://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", - }, + "name": "movoscan", + "url": "https://movoscan.com", + "icon": "movoscan", + "standard": "none" + } ], "2077": [ { - name: "blockscout", - url: "https://explorer.qkacoin.org", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.qkacoin.org", + "standard": "EIP3091" + } ], "2100": [ { - name: "Ecoball Explorer", - url: "https://scan.ecoball.org", - standard: "EIP3091", - }, + "name": "Ecoball Explorer", + "url": "https://scan.ecoball.org", + "standard": "EIP3091" + } ], "2101": [ { - name: "Ecoball Testnet Explorer", - url: "https://espuma-scan.ecoball.org", - standard: "EIP3091", - }, + "name": "Ecoball Testnet Explorer", + "url": "https://espuma-scan.ecoball.org", + "standard": "EIP3091" + } ], "2109": [ { - name: "blockscout", - url: "https://explorer.exosama.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.exosama.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "2112": [ { - name: "uchain.info", - url: "https://uchain.info", - standard: "EIP3091", - }, + "name": "uchain.info", + "url": "https://uchain.info", + "standard": "EIP3091" + } ], "2121": [ { - name: "catenascan", - url: "https://catenascan.com", - standard: "EIP3091", - }, + "name": "catenascan", + "url": "https://catenascan.com", + "standard": "EIP3091" + } ], "2122": [ { - name: "Metad Scan", - url: "https://scan.metaplayer.one", - icon: "metad", - standard: "EIP3091", - }, + "name": "Metad Scan", + "url": "https://scan.metaplayer.one", + "icon": "metad", + "standard": "EIP3091" + } ], "2124": [ { - name: "MP1Scan", - url: "https://dubai.mp1scan.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Quorum Explorer", + "url": "https://public-2138.defi-oracle.io", + "standard": "none" + } ], "2140": [ { - name: "oneness-mainnet", - url: "https://scan.onenesslabs.io", - standard: "EIP3091", - }, + "name": "oneness-mainnet", + "url": "https://scan.onenesslabs.io", + "standard": "EIP3091" + } ], "2141": [ { - name: "oneness-testnet", - url: "https://scan.testnet.onenesslabs.io", - standard: "EIP3091", - }, + "name": "oneness-testnet", + "url": "https://scan.testnet.onenesslabs.io", + "standard": "EIP3091" + } ], "2151": [ { - name: "BOASCAN", - url: "https://boascan.io", - icon: "agora", - standard: "EIP3091", - }, + "name": "BOASCAN", + "url": "https://boascan.io", + "icon": "agora", + "standard": "EIP3091" + } ], "2152": [ { - name: "findorascan", - url: "https://evm.findorascan.io", - standard: "EIP3091", - }, + "name": "findorascan", + "url": "https://evm.findorascan.io", + "standard": "EIP3091" + } ], "2153": [ { - name: "findorascan", - url: "https://testnet-anvil.evm.findorascan.io", - standard: "EIP3091", - }, + "name": "findorascan", + "url": "https://testnet-anvil.evm.findorascan.io", + "standard": "EIP3091" + } ], "2154": [ { - name: "findorascan", - url: "https://testnet-forge.evm.findorascan.io", - standard: "EIP3091", - }, + "name": "findorascan", + "url": "https://testnet-forge.evm.findorascan.io", + "standard": "EIP3091" + } ], "2199": [ { - name: "blockscout", - url: "https://explorer.moonsama.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.moonsama.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "2202": [ { - name: "Antofy Mainnet", - url: "https://antofyscan.com", - standard: "EIP3091", - }, + "name": "Antofy Mainnet", + "url": "https://antofyscan.com", + "standard": "EIP3091" + } ], "2203": [ { - name: "Explorer", - url: "https://explorer.bitcoinevm.com", - icon: "ebtc", - standard: "none", - }, + "name": "Explorer", + "url": "https://explorer.bitcoinevm.com", + "icon": "ebtc", + "standard": "none" + } ], "2213": [ { - name: "Evanesco Explorer", - url: "https://explorer.evanesco.org", - standard: "none", - }, + "name": "Evanesco Explorer", + "url": "https://explorer.evanesco.org", + "standard": "none" + } ], "2221": [ { - name: "Kava Testnet Explorer", - url: "http://testnet.kavascan.com", - standard: "EIP3091", - icon: "kava", - }, + "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", - }, + "name": "Kava EVM Explorer", + "url": "https://kavascan.com", + "standard": "EIP3091", + "icon": "kava" + } ], "2223": [ { - name: "VChain Scan", - url: "https://scan.vcex.xyz", - standard: "EIP3091", - }, + "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": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", + "standard": "none" }, { - name: "Subscan", - url: "https://krest.subscan.io", - standard: "none", - }, + "name": "Subscan", + "url": "https://krest.subscan.io", + "standard": "none" + } ], "2300": [ { - name: "bombscan", - icon: "bomb", - url: "https://bombscan.com", - standard: "EIP3091", - }, + "name": "bombscan", + "icon": "bomb", + "url": "https://bombscan.com", + "standard": "EIP3091" + } ], "2323": [ { - name: "SOMA Testnet Explorer", - icon: "soma", - url: "https://testnet.somascan.io", - standard: "none", - }, + "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", - }, + "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", - }, + "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", - }, + "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 Explorer", + "icon": "atleta", + "url": "https://blockscout.atleta.network", + "standard": "none" }, { - name: "Atleta Olympia Polka Explorer", - icon: "atleta", - url: "https://polkadot-explorer.atleta.network/#/explorer", - standard: "none", - }, + "name": "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", - }, + "name": "OmniaVerse Explorer", + "url": "https://scan.omniaverse.io", + "standard": "EIP3091" + } ], "2358": [ { - name: "blockscout", - url: "https://blockscout.sepolia.kroma.network", - icon: "kroma", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "TCG Verse Explorer", + "url": "https://explorer.tcgverse.xyz", + "standard": "EIP3091" + } ], "2410": [ { - name: "Karak Mainnet Explorer", - url: "https://explorer.karak.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "icon": "u2u_nebulas", + "name": "U2U Explorer", + "url": "https://testnet.u2uscan.xyz", + "standard": "EIP3091" + } ], "2522": [ { - name: "fraxscan", - url: "https://holesky.fraxscan.com", - standard: "EIP3091", - }, + "name": "fraxscan", + "url": "https://holesky.fraxscan.com", + "standard": "EIP3091" + } ], "2569": [ { - name: "tpcscan", - url: "https://tpcscan.com", - icon: "techpay", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "REDLC Explorer", + "url": "https://redlightscan.finance", + "standard": "EIP3091" + } ], "2612": [ { - name: "ezchain", - url: "https://cchain-explorer.ezchain.com", - standard: "EIP3091", - }, + "name": "ezchain", + "url": "https://cchain-explorer.ezchain.com", + "standard": "EIP3091" + } ], "2613": [ { - name: "ezchain", - url: "https://testnet-cchain-explorer.ezchain.com", - standard: "EIP3091", - }, + "name": "ezchain", + "url": "https://testnet-cchain-explorer.ezchain.com", + "standard": "EIP3091" + } ], "2625": [ { - name: "whitechain-testnet-explorer", - url: "https://testnet.whitechain.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Nanon Rollup Explorer", + "url": "https://explorer.nanon.network", + "standard": "EIP3091" + } ], "2777": [ { - name: "GM Network Mainnet Explorer", - url: "https://scan.gmnetwork.ai", - standard: "EIP3091", - }, + "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", - }, + "name": "Morph Holesky Testnet Explorer", + "url": "https://explorer-holesky.morphl2.io", + "standard": "EIP3091" + } ], "2907": [ { - name: "blockscout", - url: "https://eluxscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://eluxscan.com", + "standard": "none" + } ], "2911": [ { - name: "blockscout", - url: "https://explorer.hychain.com", - icon: "hychain", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } ], "2941": [ { - name: "Xenon testnet Explorer", - url: "https://testnet.xenonchain.com", - standard: "none", - }, + "name": "Xenon testnet Explorer", + "url": "https://testnet.xenonchain.com", + "standard": "none" + } ], "2999": [ { - name: "BitYuan Block Chain Explorer", - url: "https://mainnet.bityuan.com", - standard: "none", - }, + "name": "BitYuan Block Chain Explorer", + "url": "https://mainnet.bityuan.com", + "standard": "none" + } ], "3001": [ { - name: "UNcover", - url: "https://www.uncoverexplorer.com/?network=Nikau", - standard: "none", - }, + "name": "UNcover", + "url": "https://www.uncoverexplorer.com/?network=Nikau", + "standard": "none" + } ], "3003": [ { - name: "canxium explorer", - url: "https://explorer.canxium.org", - standard: "none", - }, + "name": "canxium explorer", + "url": "https://explorer.canxium.org", + "standard": "none" + } ], "3011": [ { - name: "PLAYA3ULL GAMES Explorer", - url: "https://3011.routescan.io", - icon: "playa3ull", - standard: "EIP3091", - }, + "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", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://evm.testnet.rebus.money", + "icon": "rebus", + "standard": "none" }, { - name: "Rebus Cosmos Explorer (ping.pub)", - url: "https://testnet.rebus.money/rebustestnet", - icon: "rebus", - standard: "none", - }, + "name": "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", - }, + "name": "explorer-thebifrost", + "url": "https://explorer.mainnet.bifrostnetwork.com", + "standard": "EIP3091" + } ], "3073": [ { - name: "mevm explorer", - url: "https://explorer.movementlabs.xyz", - standard: "none", - }, + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } ], "3306": [ { - name: "Debounce Devnet Explorer", - url: "https://explorer.debounce.network", - standard: "EIP3091", - }, + "name": "Debounce Devnet Explorer", + "url": "https://explorer.debounce.network", + "standard": "EIP3091" + } ], "3334": [ { - name: "w3q-galileo", - url: "https://explorer.galileo.web3q.io", - standard: "EIP3091", - }, + "name": "w3q-galileo", + "url": "https://explorer.galileo.web3q.io", + "standard": "EIP3091" + } ], "3400": [ { - name: "Paribu Net Explorer", - url: "https://explorer.paribu.network", - standard: "EIP3091", - }, + "name": "Paribu Net Explorer", + "url": "https://explorer.paribu.network", + "standard": "EIP3091" + } ], "3424": [ { - name: "Evolve Mainnet Explorer", - url: "https://evoexplorer.com", - standard: "EIP3091", - }, + "name": "Evolve Mainnet Explorer", + "url": "https://evoexplorer.com", + "standard": "EIP3091" + } ], "3434": [ { - name: "SecureChain", - url: "https://testnet.securechain.ai", - standard: "EIP3091", - }, + "name": "SecureChain", + "url": "https://testnet.securechain.ai", + "standard": "EIP3091" + } ], "3456": [ { - name: "LayerEdge Testnet Explorer", - url: "https://testnet-explorer.layeredge.io", - icon: "layerEdge", - standard: "EIP3091", - }, + "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", - }, + "name": "Paribu Net Testnet Explorer", + "url": "https://testnet.paribuscan.com", + "standard": "EIP3091" + } ], "3501": [ { - name: "JFIN Chain Explorer", - url: "https://exp.jfinchain.com", - standard: "EIP3091", - }, + "name": "JFIN Chain Explorer", + "url": "https://exp.jfinchain.com", + "standard": "EIP3091" + } ], "3601": [ { - name: "Pando Mainnet Explorer", - url: "https://explorer.pandoproject.org", - standard: "none", - }, + "name": "Pando Mainnet Explorer", + "url": "https://explorer.pandoproject.org", + "standard": "none" + } ], "3602": [ { - name: "Pando Testnet Explorer", - url: "https://testnet.explorer.pandoproject.org", - standard: "none", - }, + "name": "Pando Testnet Explorer", + "url": "https://testnet.explorer.pandoproject.org", + "standard": "none" + } ], "3636": [ { - name: "3xpl", - url: "https://3xpl.com/botanix", - standard: "EIP3091", + "name": "3xpl", + "url": "https://3xpl.com/botanix", + "standard": "EIP3091" }, { - name: "Blockscout", - url: "https://blockscout.botanixlabs.dev", - standard: "EIP3091", - }, + "name": "Blockscout", + "url": "https://blockscout.botanixlabs.dev", + "standard": "EIP3091" + } ], "3637": [ { - name: "Botanix", - url: "https://btxtestchain.com", - standard: "EIP3091", - }, + "name": "Botanix", + "url": "https://btxtestchain.com", + "standard": "EIP3091" + } ], "3639": [ { - name: "iChainscan", - url: "https://ichainscan.com", - standard: "EIP3091", - }, + "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", - }, + "name": "jscan", + "url": "https://jscan.jnsdao.com", + "standard": "EIP3091" + } ], "3690": [ { - name: "bittexscan", - url: "https://bittexscan.com", - standard: "EIP3091", - }, + "name": "bittexscan", + "url": "https://bittexscan.com", + "standard": "EIP3091" + } ], "3693": [ { - name: "Empire Explorer", - url: "https://explorer.empirenetwork.io", - standard: "none", - }, + "name": "Empire Explorer", + "url": "https://explorer.empirenetwork.io", + "standard": "none" + } ], "3698": [ { - name: "SenjePowers", - url: "https://testnet.senjepowersscan.com", - standard: "EIP3091", - }, + "name": "SenjePowers", + "url": "https://testnet.senjepowersscan.com", + "standard": "EIP3091" + } ], "3699": [ { - name: "SenjePowers", - url: "https://senjepowersscan.com", - standard: "EIP3091", - }, + "name": "SenjePowers", + "url": "https://senjepowersscan.com", + "standard": "EIP3091" + } ], "3737": [ { - name: "Crossbell Explorer", - url: "https://scan.crossbell.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "AlveyScan", + "url": "https://alveyscan.com", + "icon": "alveychain", + "standard": "EIP3091" + } ], "3799": [ { - name: "ttntscan", - url: "https://testnet-explorer.tangle.tools", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "ttntscan", + "url": "https://testnet-explorer.tangle.tools", + "icon": "blockscout", + "standard": "EIP3091" + } ], "3888": [ { - name: "KalyScan", - url: "https://kalyscan.io", - standard: "EIP3091", - }, + "name": "KalyScan", + "url": "https://kalyscan.io", + "standard": "EIP3091" + } ], "3889": [ { - name: "KalyScan", - url: "https://testnet.kalyscan.io", - standard: "EIP3091", - }, + "name": "KalyScan", + "url": "https://testnet.kalyscan.io", + "standard": "EIP3091" + } ], "3912": [ { - name: "DRAC_Network Scan", - url: "https://www.dracscan.io", - standard: "EIP3091", - }, + "name": "DRAC_Network Scan", + "url": "https://www.dracscan.io", + "standard": "EIP3091" + } ], "3939": [ { - name: "DOScan-Test", - url: "https://test.doscan.io", - icon: "doschain", - standard: "EIP3091", - }, + "name": "DOScan-Test", + "url": "https://test.doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } ], "3966": [ { - name: "DYNO Explorer", - url: "https://dynoscan.io", - standard: "EIP3091", - }, + "name": "DYNO Explorer", + "url": "https://dynoscan.io", + "standard": "EIP3091" + } ], "3967": [ { - name: "DYNO Explorer", - url: "https://testnet.dynoscan.io", - standard: "EIP3091", - }, + "name": "DYNO Explorer", + "url": "https://testnet.dynoscan.io", + "standard": "EIP3091" + } ], "3993": [ { - name: "blockscout", - url: "https://exp-testnet.apexlayer.xyz", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://exp-testnet.apexlayer.xyz", + "standard": "EIP3091" + } ], "3999": [ { - name: "YuanChain Explorer", - url: "https://mainnet.yuan.org", - standard: "none", - }, + "name": "YuanChain Explorer", + "url": "https://mainnet.yuan.org", + "standard": "none" + } ], "4000": [ { - name: "OZONE Scan", - url: "https://ozonescan.io", - standard: "EIP3091", - }, + "name": "OZONE Scan", + "url": "https://ozonescan.io", + "standard": "EIP3091" + } ], "4001": [ { - name: "Peperium Chain Explorer", - url: "https://scan-testnet.peperium.io", - icon: "peperium", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Carbonium Network tesnet Explorer", + "icon": "cbr", + "url": "https://testnet.carboniumscan.com", + "standard": "none" + } ], "4048": [ { - name: "ganscan", - url: "https://ganscan.gpu.net", - standard: "none", - }, + "name": "ganscan", + "url": "https://ganscan.gpu.net", + "standard": "none" + } ], "4058": [ { - name: "blockscout", - url: "https://ocean.ftnscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://ocean.ftnscan.com", + "standard": "none" + } ], "4061": [ { - name: "Nahmii 3 Mainnet Explorer", - url: "https://explorer.nahmii.io", - icon: "nahmii", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Musterscan", + "url": "https://muster-explorer.alt.technology", + "standard": "EIP3091" + } ], "4080": [ { - name: "tobescan", - url: "https://tobescan.com", - standard: "EIP3091", - }, + "name": "tobescan", + "url": "https://tobescan.com", + "standard": "EIP3091" + } ], "4090": [ { - name: "blockscout", - url: "https://oasis.ftnscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://oasis.ftnscan.com", + "standard": "none" + } ], "4096": [ { - name: "Bitindi", - url: "https://testnet.bitindiscan.com", - standard: "EIP3091", - }, + "name": "Bitindi", + "url": "https://testnet.bitindiscan.com", + "standard": "EIP3091" + } ], "4099": [ { - name: "Bitindi", - url: "https://bitindiscan.com", - standard: "EIP3091", - }, + "name": "Bitindi", + "url": "https://bitindiscan.com", + "standard": "EIP3091" + } ], "4102": [ { - name: "AIOZ Network Testnet Explorer", - url: "https://testnet.explorer.aioz.network", - standard: "EIP3091", - }, + "name": "AIOZ Network Testnet Explorer", + "url": "https://testnet.explorer.aioz.network", + "standard": "EIP3091" + } ], "4141": [ { - name: "Tipboxcoin", - url: "https://testnet.tipboxcoin.net", - standard: "EIP3091", - }, + "name": "Tipboxcoin", + "url": "https://testnet.tipboxcoin.net", + "standard": "EIP3091" + } ], "4157": [ { - name: "CrossFi Testnet Scan", - url: "https://test.xfiscan.com", - standard: "EIP3091", - icon: "crossfi", - }, + "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", - }, + "name": "PHI Explorer", + "url": "https://explorer.phi.network", + "icon": "phi", + "standard": "none" + } ], "4200": [ { - name: "L2scan", - url: "https://scan.merlinchain.io", - icon: "merlin", - standard: "EIP3091", - }, + "name": "L2scan", + "url": "https://scan.merlinchain.io", + "icon": "merlin", + "standard": "EIP3091" + } ], "4201": [ { - name: "Blockscout", - url: "https://explorer.execution.testnet.lukso.network", - standard: "none", - }, + "name": "Blockscout", + "url": "https://explorer.execution.testnet.lukso.network", + "standard": "none" + } ], "4202": [ { - name: "liskscout", - url: "https://sepolia-blockscout.lisk.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "liskscout", + "url": "https://sepolia-blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "4242": [ { - name: "nexiscan", - url: "https://www.nexiscan.com", - standard: "EIP3091", - }, + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } ], "4243": [ { - name: "nexiscan", - url: "https://www.nexiscan.com", - standard: "EIP3091", - }, + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } ], "4337": [ { - name: "Beam Explorer", - url: "https://subnets.avax.network/beam", - standard: "EIP3091", - }, + "name": "Beam Explorer", + "url": "https://subnets.avax.network/beam", + "standard": "EIP3091" + } ], "4400": [ { - name: "Creditscan", - url: "https://scan.creditsmartchain.com", - icon: "credit", - standard: "EIP3091", - }, + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "standard": "EIP3091" + } ], "4444": [ { - name: "htmlcoin", - url: "https://explorer.htmlcoin.com", - icon: "htmlcoin", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "EMoney ethscan", + "url": "https://ethscan.emoney.network", + "icon": "emoney", + "standard": "EIP3091" + } ], "4613": [ { - name: "VERY explorer", - url: "https://www.veryscan.io", - standard: "none", - }, + "name": "VERY explorer", + "url": "https://www.veryscan.io", + "standard": "none" + } ], "4689": [ { - name: "iotexscan", - url: "https://iotexscan.io", - standard: "EIP3091", - }, + "name": "iotexscan", + "url": "https://iotexscan.io", + "standard": "EIP3091" + } ], "4690": [ { - name: "testnet iotexscan", - url: "https://testnet.iotexscan.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://testnet-explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], "4893": [ { - name: "blockscout", - url: "https://gcscan.io", - standard: "none", - }, + "name": "blockscout", + "url": "https://gcscan.io", + "standard": "none" + } ], "4918": [ { - name: "Venidium EVM Testnet Explorer", - url: "https://evm-testnet.venidiumexplorer.com", - standard: "EIP3091", - }, + "name": "Venidium EVM Testnet Explorer", + "url": "https://evm-testnet.venidiumexplorer.com", + "standard": "EIP3091" + } ], "4919": [ { - name: "Venidium Explorer", - url: "https://evm.venidiumexplorer.com", - standard: "EIP3091", - }, + "name": "Venidium Explorer", + "url": "https://evm.venidiumexplorer.com", + "standard": "EIP3091" + } ], "4999": [ { - name: "blockscout", - url: "https://explorer.blackfort.network", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], "5000": [ { - name: "Mantle Explorer", - url: "https://explorer.mantle.xyz", - standard: "EIP3091", - }, + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", + "standard": "EIP3091" + } ], "5001": [ { - name: "Mantle Testnet Explorer", - url: "https://explorer.testnet.mantle.xyz", - standard: "EIP3091", - }, + "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", - }, + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.treasurenet.io", + "icon": "treasurenet", + "standard": "none" + } ], "5003": [ { - name: "blockscout", - url: "https://explorer.sepolia.mantle.xyz", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ONIGIRI Explorer", + "url": "https://subnets-test.avax.network/onigiri", + "standard": "EIP3091" + } ], "5040": [ { - name: "ONIGIRI Explorer", - url: "https://subnets.avax.network/onigiri", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://explorer.ham.fun", + "icon": "blockscout", + "standard": "EIP3091" + } ], "5165": [ { - name: "blockscout", - url: "https://ftnscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://ftnscan.com", + "standard": "none" + } ], "5169": [ { - name: "SLN Mainnet Explorer", - url: "https://explorer.main.smartlayer.network", - standard: "EIP3091", - }, + "name": "SLN Mainnet Explorer", + "url": "https://explorer.main.smartlayer.network", + "standard": "EIP3091" + } ], "5177": [ { - name: "TLChain Explorer", - url: "https://explorer.tlchain.network", - standard: "none", - }, + "name": "TLChain Explorer", + "url": "https://explorer.tlchain.network", + "standard": "none" + } ], "5234": [ { - name: "Subscan", - url: "https://humanode.subscan.io", - standard: "EIP3091", - icon: "subscan", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "TRITANIUM Testnet Explorer", + "icon": "tritanium", + "url": "https://testnet.tritanium.network", + "standard": "none" + } ], "5372": [ { - name: "Settlus Scan", - url: "https://testnet.settlus.network", - standard: "EIP3091", - }, + "name": "Settlus Scan", + "url": "https://testnet.settlus.network", + "standard": "EIP3091" + } ], "5424": [ { - name: "edexa-mainnet", - url: "https://explorer.edexa.network", - standard: "EIP3091", - }, + "name": "edexa-mainnet", + "url": "https://explorer.edexa.network", + "standard": "EIP3091" + } ], "5439": [ { - name: "egoscan", - url: "https://egoscan.io", - standard: "EIP3091", - }, + "name": "egoscan", + "url": "https://egoscan.io", + "standard": "EIP3091" + } ], "5522": [ { - name: "Vexascan-EVM-TestNet", - url: "https://testnet.vexascan.com/evmexplorer", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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": "bscscan-opbnb-testnet", + "url": "https://opbnb-testnet.bscscan.com", + "standard": "EIP3091" }, { - name: "opbnbscan", - url: "https://opbnbscan.com", - standard: "EIP3091", - }, + "name": "opbnbscan", + "url": "https://opbnbscan.com", + "standard": "EIP3091" + } ], "5615": [ { - name: "explorer-arcturus-testnet", - url: "https://testnet.arcscan.net", - standard: "EIP3091", - }, + "name": "explorer-arcturus-testnet", + "url": "https://testnet.arcscan.net", + "standard": "EIP3091" + } ], "5656": [ { - name: "QIE Explorer", - url: "https://mainnet.qiblockchain.online", - standard: "EIP3091", - }, + "name": "QIE Explorer", + "url": "https://mainnet.qiblockchain.online", + "standard": "EIP3091" + } ], "5675": [ { - name: "filenova testnet explorer", - url: "https://scantest.filenova.org", - icon: "filenova", - standard: "none", - }, + "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", - }, + "name": "BlockScout", + "url": "https://3001-blockscout.a.dancebox.tanssi.network", + "standard": "EIP3091" + } ], "5700": [ { - name: "Syscoin Testnet Block Explorer", - url: "https://tanenbaum.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Tangle EVM Explorer", + "url": "https://explorer.tangle.tools", + "standard": "EIP3091", + "icon": "tangle" + } ], "5851": [ { - name: "explorer", - url: "https://explorer.ont.io/testnet", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.ont.io/testnet", + "standard": "EIP3091" + } ], "5869": [ { - name: "wegoscan2", - url: "https://scan2.wegochain.io", - standard: "EIP3091", - }, + "name": "wegoscan2", + "url": "https://scan2.wegochain.io", + "standard": "EIP3091" + } ], "6000": [ { - name: "BBScan Testnet Explorer", - url: "https://bbscan.io", - standard: "none", - }, + "name": "BBScan Testnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } ], "6001": [ { - name: "BBScan Mainnet Explorer", - url: "https://bbscan.io", - standard: "none", - }, + "name": "BBScan Mainnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } ], "6065": [ { - name: "treslechesexplorer", - url: "https://explorer-test.tresleches.finance", - icon: "treslechesexplorer", - standard: "EIP3091", - }, + "name": "treslechesexplorer", + "url": "https://explorer-test.tresleches.finance", + "icon": "treslechesexplorer", + "standard": "EIP3091" + } ], "6066": [ { - name: "treslechesexplorer", - url: "https://explorer.tresleches.finance", - icon: "treslechesexplorer", - standard: "EIP3091", - }, + "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 EVM Explorer", + "url": "https://explorer.cascadia.foundation", + "standard": "none", + "icon": "cascadia" }, { - name: "Cascadia Cosmos Explorer", - url: "https://validator.cascadia.foundation", - standard: "none", - icon: "cascadia", - }, + "name": "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", - }, + "name": "UPTN Testnet Explorer", + "url": "https://testnet.explorer.uptn.io", + "standard": "EIP3091" + } ], "6119": [ { - name: "UPTN Explorer", - url: "https://explorer.uptn.io", - standard: "EIP3091", - }, + "name": "UPTN Explorer", + "url": "https://explorer.uptn.io", + "standard": "EIP3091" + } ], "6321": [ { - name: "Aurascan Explorer", - url: "https://euphoria.aurascan.io", - standard: "none", - icon: "aura", - }, + "name": "Aurascan Explorer", + "url": "https://euphoria.aurascan.io", + "standard": "none", + "icon": "aura" + } ], "6322": [ { - name: "Aurascan Explorer", - url: "https://aurascan.io", - standard: "none", - icon: "aura", - }, + "name": "Aurascan Explorer", + "url": "https://aurascan.io", + "standard": "none", + "icon": "aura" + } ], "6552": [ { - name: "Scolscan Testnet Explorer", - url: "https://testnet-explorer.scolcoin.com", - standard: "EIP3091", - }, + "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", - }, + "name": "FOX Testnet Explorer", + "icon": "fox", + "url": "https://testnet.foxscan.app", + "standard": "none" + } ], "6626": [ { - name: "blockscout", - url: "https://scan.chain.pixie.xyz", - standard: "none", - }, + "name": "blockscout", + "url": "https://scan.chain.pixie.xyz", + "standard": "none" + } ], "6660": [ { - name: "Latest Chain", - url: "http://testnet.latestchain.io", - standard: "EIP3091", - }, + "name": "Latest Chain", + "url": "http://testnet.latestchain.io", + "standard": "EIP3091" + } ], "6661": [ { - name: "Cybria Explorer", - url: "https://cybascan.io", - icon: "cybascan", - standard: "EIP3091", - }, + "name": "Cybria Explorer", + "url": "https://cybascan.io", + "icon": "cybascan", + "standard": "EIP3091" + } ], "6666": [ { - name: "Cybria Explorer", - url: "https://explorer.cybascan.io", - icon: "cybascan", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "PAXB Explorer", + "url": "https://scan.paxb.io", + "icon": "paxb", + "standard": "EIP3091" + } ], "6779": [ { - name: "cpvscan", - url: "https://scan.compverse.io", - standard: "EIP3091", - }, + "name": "cpvscan", + "url": "https://scan.compverse.io", + "standard": "EIP3091" + } ], "6789": [ { - name: "Gold Smart Chain", - url: "https://mainnet.goldsmartchain.com", - standard: "EIP3091", - }, + "name": "Gold Smart Chain", + "url": "https://mainnet.goldsmartchain.com", + "standard": "EIP3091" + } ], "6868": [ { - name: "poolsscan", - url: "https://scan.poolsmobility.com", - icon: "POOLS", - standard: "EIP3091", - }, + "name": "poolsscan", + "url": "https://scan.poolsmobility.com", + "icon": "POOLS", + "standard": "EIP3091" + } ], "6969": [ { - name: "tombscout", - url: "https://tombscout.com", - standard: "none", - }, + "name": "tombscout", + "url": "https://tombscout.com", + "standard": "none" + } ], "7000": [ { - name: "ZetaChain Mainnet Explorer", - url: "https://explorer.zetachain.com", - standard: "none", - }, + "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": "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", - }, + "name": "blockscout", + "url": "https://zetachain-athens-3.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "7007": [ { - name: "blockscout", - url: "https://bstscan.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://bstscan.com", + "standard": "EIP3091" + } ], "7027": [ { - name: "Ella", - url: "https://ella.network", - standard: "EIP3091", - }, + "name": "Ella", + "url": "https://ella.network", + "standard": "EIP3091" + } ], "7070": [ { - name: "Planq EVM Explorer (Blockscout)", - url: "https://evm.planq.network", - standard: "none", + "name": "Planq EVM Explorer (Blockscout)", + "url": "https://evm.planq.network", + "standard": "none" }, { - name: "Planq Cosmos Explorer (BigDipper)", - url: "https://explorer.planq.network", - standard: "none", - }, + "name": "Planq Cosmos Explorer (BigDipper)", + "url": "https://explorer.planq.network", + "standard": "none" + } ], "7100": [ { - name: "numeexplorer", - url: "https://explorer.numecrypto.com", - icon: "nume", - standard: "none", - }, + "name": "numeexplorer", + "url": "https://explorer.numecrypto.com", + "icon": "nume", + "standard": "none" + } ], "7171": [ { - name: "Bitrock Explorer", - url: "https://explorer.bit-rock.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Shyft BX", + "url": "https://bx.shyft.network", + "standard": "EIP3091" + } ], "7484": [ { - name: "raba", - url: "https://x.raba.app/explorer", - standard: "none", - }, + "name": "raba", + "url": "https://x.raba.app/explorer", + "standard": "none" + } ], "7518": [ { - name: "MEVerse Chain Explorer", - url: "https://www.meversescan.io", - standard: "none", - icon: "meverse", - }, + "name": "MEVerse Chain Explorer", + "url": "https://www.meversescan.io", + "standard": "none", + "icon": "meverse" + } ], "7560": [ { - name: "Cyber Mainnet Explorer", - url: "https://cyberscan.co", - standard: "EIP3091", - }, + "name": "Cyber Mainnet Explorer", + "url": "https://cyberscan.co", + "standard": "EIP3091" + } ], "7575": [ { - name: "ADIL Testnet Explorer", - url: "https://testnet.adilchain-scan.io", - standard: "EIP3091", - }, + "name": "ADIL Testnet Explorer", + "url": "https://testnet.adilchain-scan.io", + "standard": "EIP3091" + } ], "7576": [ { - name: "ADIL Mainnet Explorer", - url: "https://adilchain-scan.io", - standard: "EIP3091", - }, + "name": "ADIL Mainnet Explorer", + "url": "https://adilchain-scan.io", + "standard": "EIP3091" + } ], "7668": [ { - name: "rootnet", - url: "https://explorer.rootnet.live", - standard: "EIP3091", - }, + "name": "rootnet", + "url": "https://explorer.rootnet.live", + "standard": "EIP3091" + } ], "7672": [ { - name: "rootnet", - url: "https://explorer.rootnet.cloud", - standard: "EIP3091", - }, + "name": "rootnet", + "url": "https://explorer.rootnet.cloud", + "standard": "EIP3091" + } ], "7700": [ { - name: "Canto Explorer (OKLink)", - url: "https://www.oklink.com/canto", - standard: "EIP3091", + "name": "Canto Explorer (OKLink)", + "url": "https://www.oklink.com/canto", + "standard": "EIP3091" }, { - name: "Canto EVM Explorer (Blockscout)", - url: "https://tuber.build", - standard: "EIP3091", + "name": "Canto EVM Explorer (Blockscout)", + "url": "https://tuber.build", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://canto.dex.guru", - icon: "dexguru", - 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": "Canto Testnet EVM Explorer (Blockscout)", + "url": "https://testnet.tuber.build", + "standard": "none" }, { - name: "dexguru", - url: "https://canto-test.dex.guru", - icon: "dexguru", - standard: "EIP3091", - }, + "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", - }, + "name": "Bitrock Testnet Explorer", + "url": "https://testnetscan.bit-rock.io", + "standard": "EIP3091" + } ], "7775": [ { - name: "GDCC", - url: "https://testnet.gdccscan.io", - standard: "none", - }, + "name": "GDCC", + "url": "https://testnet.gdccscan.io", + "standard": "none" + } ], "7777": [ { - name: "avascan", - url: "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - standard: "none", - }, + "name": "avascan", + "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", + "standard": "none" + } ], "7778": [ { - name: "ORE Mainnet Explorer", - icon: "ore", - url: "https://oreniumscan.org", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "maalscan testnet", + "url": "https://testnet.maalscan.io", + "standard": "EIP3091" + } ], "7878": [ { - name: "Hazlor Testnet Explorer", - url: "https://explorer.hazlor.com", - standard: "none", - }, + "name": "Hazlor Testnet Explorer", + "url": "https://explorer.hazlor.com", + "standard": "none" + } ], "7887": [ { - name: "Kinto Explorer", - url: "https://explorer.kinto.xyz", - icon: "kinto", - standard: "EIP3091", - }, + "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", - }, + "name": "ARDENIUM Athena Explorer", + "icon": "ard", + "url": "https://testnet.ardscan.com", + "standard": "none" + } ], "7923": [ { - name: "blockscout", - url: "https://explorer.dotblox.io", - standard: "none", - }, + "name": "blockscout", + "url": "https://explorer.dotblox.io", + "standard": "none" + } ], "7924": [ { - name: "MO Explorer", - url: "https://moscan.app", - standard: "none", - }, + "name": "MO Explorer", + "url": "https://moscan.app", + "standard": "none" + } ], "7979": [ { - name: "DOScan", - url: "https://doscan.io", - icon: "doschain", - standard: "EIP3091", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://evm-explorer.teleport.network", + "standard": "none", + "icon": "teleport" }, { - name: "Teleport Cosmos Explorer (Big Dipper)", - url: "https://explorer.teleport.network", - standard: "none", - icon: "teleport", - }, + "name": "Teleport 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 EVM Explorer (Blockscout)", + "url": "https://evm-explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" }, { - name: "Teleport Cosmos Explorer (Big Dipper)", - url: "https://explorer.testnet.teleport.network", - standard: "none", - icon: "teleport", - }, + "name": "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", - }, + "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", - }, + "name": "Karak Sepolia Explorer", + "url": "https://explorer.sepolia.karak.network", + "standard": "EIP3091" + } ], "8080": [ { - name: "Shardeum Scan", - url: "https://explorer-liberty10.shardeum.org", - standard: "EIP3091", - }, + "name": "Shardeum Scan", + "url": "https://explorer-liberty10.shardeum.org", + "standard": "EIP3091" + } ], "8081": [ { - name: "Shardeum Scan", - url: "https://explorer-liberty20.shardeum.org", - standard: "EIP3091", - }, + "name": "Shardeum Scan", + "url": "https://explorer-liberty20.shardeum.org", + "standard": "EIP3091" + } ], "8082": [ { - name: "Shardeum Scan", - url: "https://explorer-sphinx.shardeum.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Testnet BeOne Chain", + "url": "https://testnet.beonescan.com", + "icon": "beonechain", + "standard": "none" + } ], "8192": [ { - name: "blockscout", - url: "https://toruscan.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "8194": [ { - name: "blockscout", - url: "https://testnet.toruscan.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "8217": [ { - name: "Klaytnscope", - url: "https://scope.klaytn.com", - standard: "EIP3091", + "name": "Klaytnscope", + "url": "https://scope.klaytn.com", + "standard": "EIP3091" }, { - name: "Klaytnfinder", - url: "https://klaytnfinder.io", - standard: "EIP3091", - }, + "name": "Klaytnfinder", + "url": "https://klaytnfinder.io", + "standard": "EIP3091" + } ], "8227": [ { - name: "SPACE Explorer", - url: "https://subnets.avax.network/space", - standard: "EIP3091", - }, + "name": "SPACE Explorer", + "url": "https://subnets.avax.network/space", + "standard": "EIP3091" + } ], "8272": [ { - name: "Blockton Explorer", - url: "https://blocktonscan.com", - standard: "none", - }, + "name": "Blockton Explorer", + "url": "https://blocktonscan.com", + "standard": "none" + } ], "8329": [ { - name: "Lorenzo Explorer", - url: "https://scan.lorenzo-protocol.xyz", - standard: "none", - icon: "lorenzo", - }, + "name": "Lorenzo Explorer", + "url": "https://scan.lorenzo-protocol.xyz", + "standard": "none", + "icon": "lorenzo" + } ], "8453": [ { - name: "basescan", - url: "https://basescan.org", - standard: "none", + "name": "basescan", + "url": "https://basescan.org", + "standard": "none" }, { - name: "basescout", - url: "https://base.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "basescout", + "url": "https://base.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://base.dex.guru", - icon: "dexguru", - 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", - }, + "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", - }, + "name": "OLO Block Explorer", + "url": "https://www.olo.network", + "standard": "EIP3091" + } ], "8726": [ { - name: "Storscan", - url: "https://explorer-storagechain.invo.zone/?network=StorageChain", - standard: "none", - }, + "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", - }, + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", + "standard": "none" + } ], "8738": [ { - name: "alphscan", - url: "https://explorer.alph.network", - standard: "EIP3091", - }, + "name": "alphscan", + "url": "https://explorer.alph.network", + "standard": "EIP3091" + } ], "8822": [ { - name: "explorer", - url: "https://explorer.evm.iota.org", - icon: "iotaevm", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "MARO Scan", + "url": "https://scan.ma.ro/#", + "standard": "none" + } ], "8866": [ { - name: "Lumio explorer", - url: "https://explorer.lumio.io", - standard: "none", - }, + "name": "Lumio explorer", + "url": "https://explorer.lumio.io", + "standard": "none" + } ], "8880": [ { - name: "Unique Scan", - url: "https://uniquescan.io/unique", - standard: "none", - }, + "name": "Unique Scan", + "url": "https://uniquescan.io/unique", + "standard": "none" + } ], "8881": [ { - name: "Unique Scan / Quartz", - url: "https://uniquescan.io/quartz", - standard: "none", - }, + "name": "Unique Scan / Quartz", + "url": "https://uniquescan.io/quartz", + "standard": "none" + } ], "8882": [ { - name: "Unique Scan / Opal", - url: "https://uniquescan.io/opal", - standard: "none", - }, + "name": "Unique Scan / Opal", + "url": "https://uniquescan.io/opal", + "standard": "none" + } ], "8883": [ { - name: "Unique Scan / Sapphire", - url: "https://uniquescan.io/sapphire", - standard: "none", - }, + "name": "Unique Scan / Sapphire", + "url": "https://uniquescan.io/sapphire", + "standard": "none" + } ], "8888": [ { - name: "XANAChain", - url: "https://xanachain.xana.net", - standard: "EIP3091", - }, + "name": "XANAChain", + "url": "https://xanachain.xana.net", + "standard": "EIP3091" + } ], "8890": [ { - name: "ORE Testnet Explorer", - icon: "ore", - url: "https://testnet.oreniumscan.org", - standard: "none", - }, + "name": "ORE Testnet Explorer", + "icon": "ore", + "url": "https://testnet.oreniumscan.org", + "standard": "none" + } ], "8898": [ { - name: "mmtscan", - url: "https://mmtscan.io", - standard: "EIP3091", - icon: "mmt", - }, + "name": "mmtscan", + "url": "https://mmtscan.io", + "standard": "EIP3091", + "icon": "mmt" + } ], "8899": [ { - name: "JIBCHAIN Explorer", - url: "https://exp-l1.jibchain.net", - standard: "EIP3091", - }, + "name": "JIBCHAIN Explorer", + "url": "https://exp-l1.jibchain.net", + "standard": "EIP3091" + } ], "8911": [ { - name: "algscan", - url: "https://scan.algen.network", - icon: "alg", - standard: "EIP3091", - }, + "name": "algscan", + "url": "https://scan.algen.network", + "icon": "alg", + "standard": "EIP3091" + } ], "8912": [ { - name: "algscan", - url: "https://scan.test.algen.network", - icon: "alg", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Shidoblock Mainnet Explorer", + "url": "https://shidoscan.com", + "standard": "none", + "icon": "shidoChain" + } ], "9012": [ { - name: "berylbit-explorer", - url: "https://explorer.berylbit.io", - standard: "EIP3091", - }, + "name": "berylbit-explorer", + "url": "https://explorer.berylbit.io", + "standard": "EIP3091" + } ], "9024": [ { - name: "Nexablock Testnet Explorer", - url: "https://testnet.nexablockscan.io", - standard: "none", - icon: "nexaChain", - }, + "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", - }, + "name": "Nexablock Mainnet Explorer", + "url": "https://nexablockscan.io", + "standard": "none", + "icon": "nexaChain" + } ], "9223": [ { - name: "Codefin Net Explorer", - url: "https://explorer.codefin.pro", - standard: "EIP3091", - }, + "name": "Codefin Net Explorer", + "url": "https://explorer.codefin.pro", + "standard": "EIP3091" + } ], "9339": [ { - name: "Dogcoin", - url: "https://testnet.dogcoin.network", - standard: "EIP3091", - }, + "name": "Dogcoin", + "url": "https://testnet.dogcoin.network", + "standard": "EIP3091" + } ], "9393": [ { - name: "basescout", - url: "https://sepolia-delascan.deperp.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "basescout", + "url": "https://sepolia-delascan.deperp.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "9395": [ { - name: "Evoke SmartChain Explorer", - url: "https://explorer.evokescan.org", - standard: "EIP3091", - }, + "name": "Evoke SmartChain Explorer", + "url": "https://explorer.evokescan.org", + "standard": "EIP3091" + } ], "9527": [ { - name: "rangersscan-robin", - url: "https://robin-rangersscan.rangersprotocol.com", - standard: "none", - }, + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } ], "9528": [ { - name: "QEasyWeb3 Explorer", - url: "https://www.qeasyweb3.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Boba BNB Testnet block explorer", + "url": "https://testnet.bobascan.com", + "standard": "none" + } ], "9768": [ { - name: "MainnetZ", - url: "https://testnet.mainnetz.io", - standard: "EIP3091", - }, + "name": "MainnetZ", + "url": "https://testnet.mainnetz.io", + "standard": "EIP3091" + } ], "9779": [ { - name: "Pepe Explorer", - url: "https://explorer.pepenetwork.io", - icon: "pepenetwork", - standard: "none", - }, + "name": "Pepe Explorer", + "url": "https://explorer.pepenetwork.io", + "icon": "pepenetwork", + "standard": "none" + } ], "9789": [ { - name: "Tabi Testnet Explorer", - url: "https://testnet.tabiscan.com", - standard: "none", - }, + "name": "Tabi Testnet Explorer", + "url": "https://testnet.tabiscan.com", + "standard": "none" + } ], "9797": [ { - name: "OptimusZ7 Mainnet Explorer", - url: "https://explorer.optimusz7.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "IMPERIUM Explorer", + "icon": "imp", + "url": "https://impscan.com", + "standard": "none" + } ], "9888": [ { - name: "Dogelayer mainnet explorer", - url: "https://dl-explorer.dogelayer.org", - standard: "EIP3091", - }, + "name": "Dogelayer mainnet explorer", + "url": "https://dl-explorer.dogelayer.org", + "standard": "EIP3091" + } ], "9898": [ { - name: "Larissa Scan", - url: "https://scan.larissa.network", - standard: "EIP3091", - }, + "name": "Larissa Scan", + "url": "https://scan.larissa.network", + "standard": "EIP3091" + } ], "9911": [ { - name: "escscan", - url: "https://escscan.com", - icon: "espento", - standard: "EIP3091", - }, + "name": "escscan", + "url": "https://escscan.com", + "icon": "espento", + "standard": "EIP3091" + } ], "9977": [ { - name: "Mind Chain explorer", - url: "https://testnet.mindscan.info", - standard: "EIP3091", - }, + "name": "Mind Chain explorer", + "url": "https://testnet.mindscan.info", + "standard": "EIP3091" + } ], "9980": [ { - name: "combotrace explorer", - url: "https://combotrace.nodereal.io", - standard: "EIP3091", - }, + "name": "combotrace explorer", + "url": "https://combotrace.nodereal.io", + "standard": "EIP3091" + } ], "9981": [ { - name: "Volley Mainnet Explorer", - url: "https://volleyscan.io", - standard: "EIP3091", - }, + "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": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", + "standard": "none" }, { - name: "Subscan", - url: "https://agung.subscan.io", - standard: "none", - }, + "name": "Subscan", + "url": "https://agung.subscan.io", + "standard": "none" + } ], "9996": [ { - name: "Mind Chain explorer", - url: "https://mainnet.mindscan.info", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://testnet-rollup-explorer.altlayer.io", + "icon": "blockscout", + "standard": "EIP3091" + } ], "10024": [ { - name: "Gon Explorer", - url: "https://gonscan.com", - standard: "none", - }, + "name": "Gon Explorer", + "url": "https://gonscan.com", + "standard": "none" + } ], "10081": [ { - name: "Testnet Block Explorer", - url: "https://explorer.testnet.japanopenchain.org", - standard: "EIP3091", - }, + "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-chiadochain", + "url": "https://blockscout.chiadochain.net", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://gnosis-chiado.blockscout.com", - 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", - }, + "name": "MaxxChain Block Explorer", + "url": "https://explorer.maxxchain.org", + "standard": "EIP3091" + } ], "10222": [ { - name: "GLScan Explorer", - url: "https://glscan.io", - standard: "none", - icon: "glc", - }, + "name": "GLScan Explorer", + "url": "https://glscan.io", + "standard": "none", + "icon": "glc" + } ], "10242": [ { - name: "blockscout", - url: "https://explorer.arthera.net", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } ], "10243": [ { - name: "blockscout", - url: "https://explorer-test.arthera.net", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer-test.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } ], "10248": [ { - name: "0xtrade Scan", - url: "https://www.0xtscan.com", - standard: "none", - }, + "name": "0xtrade Scan", + "url": "https://www.0xtscan.com", + "standard": "none" + } ], "10321": [ { - name: "TAO Mainnet Explorer", - url: "https://taoscan.org", - standard: "EIP3091", - }, + "name": "TAO Mainnet Explorer", + "url": "https://taoscan.org", + "standard": "EIP3091" + } ], "10324": [ { - name: "TAO Testnet Explorer", - url: "https://testnet.taoscan.org", - standard: "EIP3091", - }, + "name": "TAO Testnet Explorer", + "url": "https://testnet.taoscan.org", + "standard": "EIP3091" + } ], "10395": [ { - name: "Worldland Explorer", - url: "https://testscan.worldland.foundation", - standard: "EIP3091", - }, + "name": "Worldland Explorer", + "url": "https://testscan.worldland.foundation", + "standard": "EIP3091" + } ], "10507": [ { - name: "ethernal", - url: "https://mainnet.num.network", - standard: "EIP3091", - }, + "name": "ethernal", + "url": "https://mainnet.num.network", + "standard": "EIP3091" + } ], "10508": [ { - name: "ethernal", - url: "https://testnet.num.network", - standard: "EIP3091", - }, + "name": "ethernal", + "url": "https://testnet.num.network", + "standard": "EIP3091" + } ], "10823": [ { - name: "CCP Explorer", - url: "https://cryptocoinpay.info", - standard: "EIP3091", - }, + "name": "CCP Explorer", + "url": "https://cryptocoinpay.info", + "standard": "EIP3091" + } ], "10849": [ { - name: "Lamina1 Explorer", - url: "https://subnets.avax.network/lamina1", - standard: "EIP3091", - }, + "name": "Lamina1 Explorer", + "url": "https://subnets.avax.network/lamina1", + "standard": "EIP3091" + } ], "10850": [ { - name: "Lamina1 Identity Explorer", - url: "https://subnets.avax.network/lamina1id", - standard: "EIP3091", - }, + "name": "Lamina1 Identity Explorer", + "url": "https://subnets.avax.network/lamina1id", + "standard": "EIP3091" + } ], "10946": [ { - name: "explorer", - url: "https://explorer.quadrans.io", - icon: "quadrans", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.quadrans.io", + "icon": "quadrans", + "standard": "EIP3091" + } ], "10947": [ { - name: "explorer", - url: "https://explorer.testnet.quadrans.io", - icon: "quadrans", - standard: "EIP3091", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://explorer.astranaut.io", + "standard": "none", + "icon": "astra" }, { - name: "Astra PingPub Explorer", - url: "https://ping.astranaut.io/astra", - standard: "none", - icon: "astra", - }, + "name": "Astra 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", - }, + "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 EVM Explorer", + "url": "https://explorer.astranaut.dev", + "standard": "EIP3091", + "icon": "astra" }, { - name: "Astra PingPub Explorer", - url: "https://ping.astranaut.dev/astra", - standard: "none", - icon: "astra", - }, + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.dev/astra", + "standard": "none", + "icon": "astra" + } ], "11119": [ { - name: "hashbitscan", - url: "https://explorer.hashbit.org", - standard: "EIP3091", - }, + "name": "hashbitscan", + "url": "https://explorer.hashbit.org", + "standard": "EIP3091" + } ], "11221": [ { - name: "shinescan", - url: "https://shinescan.io", - icon: "shine", - standard: "none", - }, + "name": "shinescan", + "url": "https://shinescan.io", + "icon": "shine", + "standard": "none" + } ], "11227": [ { - name: "JIRITSUTES Explorer", - url: "https://subnets-test.avax.network/jiritsutes", - standard: "EIP3091", - }, + "name": "JIRITSUTES Explorer", + "url": "https://subnets-test.avax.network/jiritsutes", + "standard": "EIP3091" + } ], "11235": [ { - name: "Mainnet HAQQ Explorer", - url: "https://explorer.haqq.network", - standard: "EIP3091", - }, + "name": "Mainnet HAQQ Explorer", + "url": "https://explorer.haqq.network", + "standard": "EIP3091" + } ], "11437": [ { - name: "Shyft Testnet BX", - url: "https://bx.testnet.shyft.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "bevm testnet scan", + "url": "https://scan-testnet.bevm.io", + "standard": "none" + } ], "11612": [ { - name: "Sardis", - url: "https://testnet.sardisnetwork.com", - standard: "EIP3091", - }, + "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", - }, + "name": "Polygon Supernet Arianee Explorer", + "url": "https://polygonsupernet.explorer.arianee.net", + "standard": "EIP3091" + } ], "12009": [ { - name: "SatoshiChain Explorer", - url: "https://satoshiscan.io", - standard: "EIP3091", - }, + "name": "SatoshiChain Explorer", + "url": "https://satoshiscan.io", + "standard": "EIP3091" + } ], "12020": [ { - name: "blockscout", - url: "https://explorer.aternoschain.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.aternoschain.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "12051": [ { - name: "zeroscan", - url: "https://betaenv.singularity.gold:18002", - standard: "EIP3091", - }, + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", + "standard": "EIP3091" + } ], "12052": [ { - name: "zeroscan", - url: "https://zeroscan.singularity.gold", - standard: "EIP3091", - }, + "name": "zeroscan", + "url": "https://zeroscan.singularity.gold", + "standard": "EIP3091" + } ], "12123": [ { - name: "BRC Chain Explorer", - url: "https://scan.brcchain.io", - standard: "EIP3091", - }, + "name": "BRC Chain Explorer", + "url": "https://scan.brcchain.io", + "standard": "EIP3091" + } ], "12306": [ { - name: "fiboscan", - url: "https://scan.fibochain.org", - standard: "EIP3091", - }, + "name": "fiboscan", + "url": "https://scan.fibochain.org", + "standard": "EIP3091" + } ], "12324": [ { - name: "L3X Mainnet Explorer", - url: "https://explorer.l3x.com", - standard: "EIP3091", - }, + "name": "L3X Mainnet Explorer", + "url": "https://explorer.l3x.com", + "standard": "EIP3091" + } ], "12325": [ { - name: "L3X Testnet Explorer", - url: "https://explorer-testnet.l3x.com", - standard: "EIP3091", - }, + "name": "L3X Testnet Explorer", + "url": "https://explorer-testnet.l3x.com", + "standard": "EIP3091" + } ], "12345": [ { - name: "StepScan", - url: "https://testnet.stepscan.io", - icon: "step", - standard: "EIP3091", - }, + "name": "StepScan", + "url": "https://testnet.stepscan.io", + "icon": "step", + "standard": "EIP3091" + } ], "12553": [ { - name: "RSS3 VSL Scan", - url: "https://scan.rss3.io", - standard: "EIP3091", - }, + "name": "RSS3 VSL Scan", + "url": "https://scan.rss3.io", + "standard": "EIP3091" + } ], "12715": [ { - name: "Rikeza Blockchain explorer", - url: "https://testnet.rikscan.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/letsplayfair", + "standard": "EIP3091" + } ], "13000": [ { - name: "SPS Explorer", - url: "http://spsscan.ssquad.games", - standard: "EIP3091", - }, + "name": "SPS Explorer", + "url": "http://spsscan.ssquad.games", + "standard": "EIP3091" + } ], "13308": [ { - name: "Creditscan", - url: "https://scan.creditsmartchain.com", - icon: "credit", - standard: "EIP3091", - }, + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "standard": "EIP3091" + } ], "13337": [ { - name: "Beam Explorer", - url: "https://subnets-test.avax.network/beam", - standard: "EIP3091", - }, + "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", - }, + "name": "Immutable explorer", + "url": "https://explorer.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } ], "13381": [ { - name: "phoenixplorer", - url: "https://phoenixplorer.com", - standard: "EIP3091", - }, + "name": "phoenixplorer", + "url": "https://phoenixplorer.com", + "standard": "EIP3091" + } ], "13396": [ { - name: "Masa Explorer", - url: "https://subnets.avax.network/masa", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "qbitscan", + "url": "https://explorer.qbitscan.com", + "icon": "kronobit", + "standard": "EIP3091" + } ], "13812": [ { - name: "Susono", - url: "http://explorer.opn.network", - standard: "none", - }, + "name": "Susono", + "url": "http://explorer.opn.network", + "standard": "none" + } ], "14000": [ { - name: "SPS Test Explorer", - url: "https://explorer.3sps.net", - standard: "EIP3091", - }, + "name": "SPS Test Explorer", + "url": "https://explorer.3sps.net", + "standard": "EIP3091" + } ], "14324": [ { - name: "Evolve Testnet Explorer", - url: "https://testnet.evolveblockchain.io", - standard: "EIP3091", - }, + "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", - }, + "name": "Vitruveo Testnet Explorer", + "url": "https://test-explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } ], "14801": [ { - name: "satoriscan", - url: "https://satori.vanascan.io", - standard: "EIP3091", - }, + "name": "satoriscan", + "url": "https://satori.vanascan.io", + "standard": "EIP3091" + } ], "15003": [ { - name: "Immutable Devnet explorer", - url: "https://explorer.dev.immutable.com", - standard: "EIP3091", - icon: "immutable", - }, + "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", - }, + "name": "Poodl Testnet Explorer", + "url": "https://testnet.poodl.org", + "standard": "EIP3091" + } ], "15259": [ { - name: "Poodl Mainnet Explorer", - url: "https://explorer.poodl.org", - standard: "EIP3091", - }, + "name": "Poodl Mainnet Explorer", + "url": "https://explorer.poodl.org", + "standard": "EIP3091" + } ], "15551": [ { - name: "loopscan", - url: "http://explorer.mainnetloop.com", - standard: "none", - }, + "name": "loopscan", + "url": "http://explorer.mainnetloop.com", + "standard": "none" + } ], "15555": [ { - name: "Trust EVM Explorer", - url: "https://trustscan.one", - standard: "EIP3091", - }, + "name": "Trust EVM Explorer", + "url": "https://trustscan.one", + "standard": "EIP3091" + } ], "15557": [ { - name: "EOS EVM Explorer", - url: "https://explorer.testnet.evm.eosnetwork.com", - standard: "EIP3091", - }, + "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", - }, + "name": "DeFiVerse Explorer", + "url": "https://scan.defi-verse.org", + "icon": "defiverse", + "standard": "EIP3091" + } ], "16507": [ { - name: "GchainExplorer", - url: "https://gchainexplorer.genesys.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "AirDAO Network Explorer", + "url": "https://airdao.io/explorer", + "standard": "none" + } ], "16888": [ { - name: "ivarscan", - url: "https://testnet.ivarscan.com", - standard: "EIP3091", - }, + "name": "ivarscan", + "url": "https://testnet.ivarscan.com", + "standard": "EIP3091" + } ], "17000": [ { - name: "Holesky Explorer", - url: "https://holesky.beaconcha.in", - icon: "ethereum", - standard: "EIP3091", + "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": "otterscan-holesky", + "url": "https://holesky.otterscan.io", + "icon": "ethereum", + "standard": "EIP3091" }, { - name: "Holesky Etherscan", - url: "https://holesky.etherscan.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", - }, + "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", - }, + "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", - }, + "name": "G8Chain", + "url": "https://mainnet.oneg8.network", + "standard": "EIP3091" + } ], "17172": [ { - name: "ECLIPSE Explorer", - url: "https://subnets-test.avax.network/eclipse", - standard: "EIP3091", - }, + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipse", + "standard": "EIP3091" + } ], "17180": [ { - name: "Palettescan", - url: "https://testnet.palettescan.com", - icon: "PLT", - standard: "none", - }, + "name": "Palettescan", + "url": "https://testnet.palettescan.com", + "icon": "PLT", + "standard": "none" + } ], "17217": [ { - name: "konet-explorer", - url: "https://explorer.kon-wallet.com", - standard: "EIP3091", - }, + "name": "konet-explorer", + "url": "https://explorer.kon-wallet.com", + "standard": "EIP3091" + } ], "17777": [ { - name: "EOS EVM Explorer", - url: "https://explorer.evm.eosnetwork.com", - standard: "EIP3091", - }, + "name": "EOS EVM Explorer", + "url": "https://explorer.evm.eosnetwork.com", + "standard": "EIP3091" + } ], "18000": [ { - name: "Game Network", - url: "https://explorer.fod.games", - standard: "EIP3091", - }, + "name": "Game Network", + "url": "https://explorer.fod.games", + "standard": "EIP3091" + } ], "18122": [ { - name: "stnscan", - url: "https://stnscan.com", - icon: "stn", - standard: "none", - }, + "name": "stnscan", + "url": "https://stnscan.com", + "icon": "stn", + "standard": "none" + } ], "18159": [ { - name: "explorer-proofofmemes", - url: "https://memescan.io", - standard: "EIP3091", - }, + "name": "explorer-proofofmemes", + "url": "https://memescan.io", + "standard": "EIP3091" + } ], "18181": [ { - name: "G8Chain", - url: "https://testnet.oneg8.network", - standard: "EIP3091", - }, + "name": "G8Chain", + "url": "https://testnet.oneg8.network", + "standard": "EIP3091" + } ], "18233": [ { - name: "blockscout", - url: "https://unreal.blockscout.com", - icon: "unreal", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } ], "18686": [ { - name: "MXC zkEVM Moonchain", - url: "https://explorer.moonchain.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "HOME Verse Explorer", + "url": "https://explorer.oasys.homeverse.games", + "standard": "EIP3091" + } ], "19224": [ { - name: "Decentraconnect Social", - url: "https://decentraconnect.io", - standard: "EIP3091", - }, + "name": "Decentraconnect Social", + "url": "https://decentraconnect.io", + "standard": "EIP3091" + } ], "19600": [ { - name: "LBRY Block Explorer", - url: "https://explorer.lbry.com", - icon: "lbry", - standard: "none", - }, + "name": "LBRY Block Explorer", + "url": "https://explorer.lbry.com", + "icon": "lbry", + "standard": "none" + } ], "19845": [ { - name: "BTCIXScan", - url: "https://btcixscan.com", - standard: "none", - }, + "name": "BTCIXScan", + "url": "https://btcixscan.com", + "standard": "none" + } ], "20001": [ { - name: "CamelarkScan", - url: "https://scan.camelark.com", - standard: "EIP3091", - }, + "name": "CamelarkScan", + "url": "https://scan.camelark.com", + "standard": "EIP3091" + } ], "20041": [ { - name: "NizaScan", - url: "https://nizascan.io", - standard: "EIP3091", - }, + "name": "NizaScan", + "url": "https://nizascan.io", + "standard": "EIP3091" + } ], "20073": [ { - name: "NizaScan", - url: "https://testnet.nizascan.io", - standard: "EIP3091", - }, + "name": "NizaScan", + "url": "https://testnet.nizascan.io", + "standard": "EIP3091" + } ], "20736": [ { - name: "P12 Chain Explorer", - url: "https://explorer.p12.games", - standard: "EIP3091", - }, + "name": "P12 Chain Explorer", + "url": "https://explorer.p12.games", + "standard": "EIP3091" + } ], "20765": [ { - name: "JONO11 Explorer", - url: "https://subnets-test.avax.network/jono11", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "AAH Blockscout", + "url": "https://exp.c4ex.net", + "icon": "aah", + "standard": "EIP3091" + } ], "21223": [ { - name: "DCpay Mainnet Explorer", - url: "https://mainnet.dcpay.io", - standard: "EIP3091", - }, + "name": "DCpay Mainnet Explorer", + "url": "https://mainnet.dcpay.io", + "standard": "EIP3091" + } ], "21224": [ { - name: "DCpay Testnet Explorer", - url: "https://testnet.dcpay.io", - standard: "EIP3091", - }, + "name": "DCpay Testnet Explorer", + "url": "https://testnet.dcpay.io", + "standard": "EIP3091" + } ], "21337": [ { - name: "UNcover", - url: "https://uncoverexplorer.com", - standard: "none", - }, + "name": "UNcover", + "url": "https://uncoverexplorer.com", + "standard": "none" + } ], "21816": [ { - name: "omChain Explorer", - url: "https://explorer.omchain.io", - standard: "EIP3091", - }, + "name": "omChain Explorer", + "url": "https://explorer.omchain.io", + "standard": "EIP3091" + } ], "21912": [ { - name: "BSL Mainnet Explorer", - url: "https://scan.nftruth.io", - standard: "EIP3091", - }, + "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 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", - }, + "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", - }, + "name": "AirDAO Network Explorer", + "url": "https://testnet.airdao.io/explorer", + "standard": "none" + } ], "22222": [ { - name: "Nautscan", - url: "https://nautscan.com", - standard: "EIP3091", - icon: "nautilus", - }, + "name": "Nautscan", + "url": "https://nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } ], "22324": [ { - name: "GoldXChain Testnet Explorer", - url: "https://testnet-explorer.goldxchain.io", - standard: "EIP3091", - }, + "name": "GoldXChain Testnet Explorer", + "url": "https://testnet-explorer.goldxchain.io", + "standard": "EIP3091" + } ], "22776": [ { - name: "maposcan", - url: "https://maposcan.io", - standard: "EIP3091", - }, + "name": "maposcan", + "url": "https://maposcan.io", + "standard": "EIP3091" + } ], "23006": [ { - name: "Antofy Testnet", - url: "https://test.antofyscan.com", - standard: "EIP3091", - }, + "name": "Antofy Testnet", + "url": "https://test.antofyscan.com", + "standard": "EIP3091" + } ], "23118": [ { - name: "opsideInfo", - url: "https://opside.info", - standard: "EIP3091", - }, + "name": "opsideInfo", + "url": "https://opside.info", + "standard": "EIP3091" + } ], "23294": [ { - name: "Oasis Sapphire Explorer", - url: "https://explorer.oasis.io/mainnet/sapphire", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "drxscan", + "url": "https://scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } ], "23452": [ { - name: "drxscan", - url: "https://testnet-scan.dreyerx.com", - icon: "dreyerx", - standard: "EIP3091", - }, + "name": "drxscan", + "url": "https://testnet-scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } ], "23888": [ { - name: "Blast Testnet", - url: "http://testnet-explorer.blastblockchain.com", - standard: "EIP3091", - }, + "name": "Blast Testnet", + "url": "http://testnet-explorer.blastblockchain.com", + "standard": "EIP3091" + } ], "25186": [ { - name: "LiquidLayer Mainnet Explorer", - url: "https://scan.liquidlayer.network", - standard: "EIP3091", - }, + "name": "LiquidLayer Mainnet Explorer", + "url": "https://scan.liquidlayer.network", + "standard": "EIP3091" + } ], "25839": [ { - name: "AlveyScan Testnet", - url: "https://alveytestnet.com", - icon: "alveychain", - standard: "EIP3091", - }, + "name": "AlveyScan Testnet", + "url": "https://alveytestnet.com", + "icon": "alveychain", + "standard": "EIP3091" + } ], "25888": [ { - name: "Hammer Chain Explorer", - url: "https://www.hammerchain.io", - standard: "none", - }, + "name": "Hammer Chain Explorer", + "url": "https://www.hammerchain.io", + "standard": "none" + } ], "25925": [ { - name: "bkcscan-testnet", - url: "https://testnet.bkcscan.com", - standard: "none", - icon: "bkc", - }, + "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", - }, + "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", - }, + "name": "Hertz Scan", + "url": "https://hertzscan.com", + "icon": "hertz-network", + "standard": "EIP3091" + } ], "26863": [ { - name: "OasisChain Explorer", - url: "https://scan.oasischain.io", - standard: "EIP3091", - }, + "name": "OasisChain Explorer", + "url": "https://scan.oasischain.io", + "standard": "EIP3091" + } ], "27181": [ { - name: "blockscout", - url: "https://blockscout.klaosnova.laosfoundation.io", - icon: "k-laos", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ZEROONEMAI Explorer", + "url": "https://subnets.avax.network/zeroonemai", + "standard": "EIP3091" + } ], "28516": [ { - name: "blockscout", - url: "https://explorer-sepolia.vizing.com", - icon: "vizing", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer-sepolia.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } ], "28518": [ { - name: "blockscout", - url: "https://explorer.vizing.com", - icon: "vizing", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } ], "28528": [ { - name: "blockscout", - url: "https://blockscout.com/optimism/bedrock-alpha", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.com/optimism/bedrock-alpha", + "standard": "EIP3091" + } ], "28882": [ { - name: "Bobascan", - url: "https://testnet.bobascan.com", - standard: "none", - }, + "name": "Bobascan", + "url": "https://testnet.bobascan.com", + "standard": "none" + } ], "29112": [ { - name: "blockscout", - url: "https://testnet.explorer.hychain.com", - icon: "hychain", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } ], "29536": [ { - name: "KaiChain Explorer", - url: "https://testnet-explorer.kaichain.net", - standard: "EIP3091", - }, + "name": "KaiChain Explorer", + "url": "https://testnet-explorer.kaichain.net", + "standard": "EIP3091" + } ], "29548": [ { - name: "MCH Verse Explorer", - url: "https://explorer.oasys.mycryptoheroes.net", - standard: "EIP3091", - }, + "name": "MCH Verse Explorer", + "url": "https://explorer.oasys.mycryptoheroes.net", + "standard": "EIP3091" + } ], "30067": [ { - name: "Piece Scan", - url: "https://testnet-scan.piecenetwork.com", - standard: "EIP3091", - }, + "name": "Piece Scan", + "url": "https://testnet-scan.piecenetwork.com", + "standard": "EIP3091" + } ], "30088": [ { - name: "MiYou block explorer", - url: "https://myscan.miyou.io", - standard: "EIP3091", - }, + "name": "MiYou block explorer", + "url": "https://myscan.miyou.io", + "standard": "EIP3091" + } ], "30103": [ { - name: "canxium explorer", - url: "https://cerium-explorer.canxium.net", - standard: "none", - }, + "name": "canxium explorer", + "url": "https://cerium-explorer.canxium.net", + "standard": "none" + } ], "30730": [ { - name: "mevm explorer", - url: "https://explorer.movementlabs.xyz", - standard: "none", - }, + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } ], "30731": [ { - name: "mevm explorer", - url: "https://explorer.movementlabs.xyz", - standard: "none", - }, + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } ], "30732": [ { - name: "mevm explorer", - url: "https://explorer.movementlabs.xyz", - standard: "none", - }, + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } ], "31223": [ { - name: "cloudtxscan", - url: "https://scan.cloudtx.finance", - standard: "EIP3091", - }, + "name": "cloudtxscan", + "url": "https://scan.cloudtx.finance", + "standard": "EIP3091" + } ], "31224": [ { - name: "cloudtxexplorer", - url: "https://explorer.cloudtx.finance", - standard: "EIP3091", - }, + "name": "cloudtxexplorer", + "url": "https://explorer.cloudtx.finance", + "standard": "EIP3091" + } ], "31337": [ { - name: "GoChain Testnet Explorer", - url: "https://testnet-explorer.gochain.io", - standard: "EIP3091", - }, + "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", - }, + "name": "Evoke SmartChain Testnet Explorer", + "url": "https://testnet-explorer.evokescan.org", + "standard": "EIP3091" + } ], "31753": [ { - name: "Xchain Mainnet Explorer", - url: "https://xchainscan.com", - standard: "EIP3091", - }, + "name": "Xchain Mainnet Explorer", + "url": "https://xchainscan.com", + "standard": "EIP3091" + } ], "31754": [ { - name: "Xchain Testnet Explorer", - url: "https://xchaintest.net", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Brise Scan", + "url": "https://brisescan.com", + "icon": "brise", + "standard": "EIP3091" + } ], "32659": [ { - name: "fsnscan", - url: "https://fsnscan.com", - icon: "fsnscan", - standard: "EIP3091", - }, + "name": "fsnscan", + "url": "https://fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } ], "32769": [ { - name: "Zilliqa EVM Explorer", - url: "https://evmx.zilliqa.com", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "Entangle Mainnet Explorer", + "url": "https://explorer.entangle.fi", + "standard": "none" + } ], "33101": [ { - name: "Zilliqa EVM Explorer", - url: "https://evmx.zilliqa.com", - standard: "none", - }, + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } ], "33210": [ { - name: "CLOUDVERSE Explorer", - url: "https://subnets.avax.network/cloudverse", - standard: "EIP3091", - }, + "name": "CLOUDVERSE Explorer", + "url": "https://subnets.avax.network/cloudverse", + "standard": "EIP3091" + } ], "33333": [ { - name: "avescan", - url: "https://avescan.io", - icon: "avescan", - standard: "EIP3091", - }, + "name": "avescan", + "url": "https://avescan.io", + "icon": "avescan", + "standard": "EIP3091" + } ], "33385": [ { - name: "Zilliqa EVM Devnet Explorer", - url: "https://otterscan.devnet.zilliqa.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Funki Mainnet Explorer", + "url": "https://mainnet.funkichain.com", + "standard": "none" + } ], "34443": [ { - name: "modescout", - url: "https://explorer.mode.network", - standard: "none", - }, + "name": "modescout", + "url": "https://explorer.mode.network", + "standard": "none" + } ], "35011": [ { - name: "J2O Taro Explorer", - url: "https://exp.j2o.io", - icon: "j2otaro", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Q explorer", + "url": "https://explorer.qtestnet.org", + "icon": "q", + "standard": "EIP3091" + } ], "38400": [ { - name: "rangersscan", - url: "https://scan.rangersprotocol.com", - standard: "none", - }, + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } ], "38401": [ { - name: "rangersscan-robin", - url: "https://robin-rangersscan.rangersprotocol.com", - standard: "none", - }, + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } ], "39656": [ { - name: "Primal Network", - url: "https://prmscan.org", - standard: "EIP3091", - }, + "name": "Primal Network", + "url": "https://prmscan.org", + "standard": "EIP3091" + } ], "39815": [ { - name: "ohoscan", - url: "https://ohoscan.com", - icon: "ohoscan", - standard: "EIP3091", - }, + "name": "ohoscan", + "url": "https://ohoscan.com", + "icon": "ohoscan", + "standard": "EIP3091" + } ], "41500": [ { - name: "Opulent-X BETA Explorer", - url: "https://explorer.opulent-x.com", - standard: "none", - }, + "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", - }, + "name": "AgentLayer Testnet Explorer", + "url": "https://testnet-explorer.agentlayer.xyz", + "standard": "EIP3091" + } ], "42161": [ { - name: "Arbiscan", - url: "https://arbiscan.io", - standard: "EIP3091", + "name": "Arbiscan", + "url": "https://arbiscan.io", + "standard": "EIP3091" }, { - name: "Arbitrum Explorer", - url: "https://explorer.arbitrum.io", - standard: "EIP3091", + "name": "Arbitrum Explorer", + "url": "https://explorer.arbitrum.io", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://arbitrum.dex.guru", - icon: "dexguru", - 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": "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", - }, + "name": "dexguru", + "url": "https://nova.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], "42220": [ { - name: "Celoscan", - url: "https://celoscan.io", - standard: "EIP3091", + "name": "Celoscan", + "url": "https://celoscan.io", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://explorer.celo.org", - standard: "none", - }, + "name": "blockscout", + "url": "https://explorer.celo.org", + "standard": "none" + } ], "42261": [ { - name: "Oasis Emerald Testnet Explorer", - url: "https://explorer.oasis.io/testnet/emerald", - standard: "EIP3091", - }, + "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", - }, + "name": "Oasis Emerald Explorer", + "url": "https://explorer.oasis.io/mainnet/emerald", + "standard": "EIP3091" + } ], "42355": [ { - name: "GoldXChain Explorer", - url: "https://explorer.goldxchain.io", - standard: "EIP3091", - }, + "name": "GoldXChain Explorer", + "url": "https://explorer.goldxchain.io", + "standard": "EIP3091" + } ], "42766": [ { - name: "blockscout", - url: "https://scan.zkfair.io", - icon: "zkfair", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.zkfair.io", + "icon": "zkfair", + "standard": "EIP3091" + } ], "42793": [ { - name: "Etherlink Explorer", - url: "https://explorer.etherlink.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "kintoscan", + "url": "http://35.215.120.180:4000", + "standard": "EIP3091" + } ], "43113": [ { - name: "snowtrace", - url: "https://testnet.snowtrace.io", - standard: "EIP3091", - }, + "name": "snowtrace", + "url": "https://testnet.snowtrace.io", + "standard": "EIP3091" + } ], "43114": [ { - name: "snowtrace", - url: "https://snowtrace.io", - standard: "EIP3091", - }, + "name": "snowtrace", + "url": "https://snowtrace.io", + "standard": "EIP3091" + } ], "43851": [ { - name: "ZKFair Testnet Info", - url: "https://testnet-scan.zkfair.io", - icon: "zkfair", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://frenscan.io", + "icon": "fren", + "standard": "EIP3091" + } ], "44445": [ { - name: "Quantum Explorer", - url: "https://qtm.avescoin.io", - icon: "quantum", - standard: "EIP3091", - }, + "name": "Quantum Explorer", + "url": "https://qtm.avescoin.io", + "icon": "quantum", + "standard": "EIP3091" + } ], "44787": [ { - name: "Alfajoresscan", - url: "https://alfajores.celoscan.io", - standard: "EIP3091", - }, + "name": "Alfajoresscan", + "url": "https://alfajores.celoscan.io", + "standard": "EIP3091" + } ], "45000": [ { - name: "autobahn explorer", - url: "https://explorer.autobahn.network", - icon: "autobahn", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://swamps-explorer.tc.l2aas.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "45510": [ { - name: "Deelance Mainnet Explorer", - url: "https://deescan.com", - standard: "EIP3091", - }, + "name": "Deelance Mainnet Explorer", + "url": "https://deescan.com", + "standard": "EIP3091" + } ], "46688": [ { - name: "fsnscan", - url: "https://testnet.fsnscan.com", - icon: "fsnscan", - standard: "EIP3091", - }, + "name": "fsnscan", + "url": "https://testnet.fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } ], "47805": [ { - name: "rei-scan", - url: "https://scan.rei.network", - standard: "none", - }, + "name": "rei-scan", + "url": "https://scan.rei.network", + "standard": "none" + } ], "48795": [ { - name: "SPACE Explorer", - url: "https://subnets-test.avax.network/space", - standard: "EIP3091", - }, + "name": "SPACE Explorer", + "url": "https://subnets-test.avax.network/space", + "standard": "EIP3091" + } ], "48899": [ { - name: "Zircuit", - url: "https://explorer.zircuit.com", - icon: "zircuit", - standard: "none", - }, + "name": "Zircuit", + "url": "https://explorer.zircuit.com", + "icon": "zircuit", + "standard": "none" + } ], "49049": [ { - name: "Wire Explorer", - url: "https://floripa-explorer.wireshape.org", - standard: "EIP3091", - }, + "name": "Wire Explorer", + "url": "https://floripa-explorer.wireshape.org", + "standard": "EIP3091" + } ], "49088": [ { - name: "explorer-thebifrost", - url: "https://explorer.testnet.bifrostnetwork.com", - standard: "EIP3091", - }, + "name": "explorer-thebifrost", + "url": "https://explorer.testnet.bifrostnetwork.com", + "standard": "EIP3091" + } ], "49321": [ { - name: "blockscout", - url: "https://testnet.gunzscan.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.gunzscan.io", + "standard": "EIP3091" + } ], "50005": [ { - name: "Yooldo Verse Explorer", - url: "https://explorer.yooldo-verse.xyz", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "LumozTestnetInfo", + "url": "https://lumoz.info", + "icon": "opside-new", + "standard": "EIP3091" + } ], "51712": [ { - name: "Sardis", - url: "https://contract-mainnet.sardisnetwork.com", - standard: "EIP3091", - }, + "name": "Sardis", + "url": "https://contract-mainnet.sardisnetwork.com", + "standard": "EIP3091" + } ], "52014": [ { - name: "blockscout", - url: "https://blockexplorer.electroneum.com", - icon: "electroneum", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockexplorer.electroneum.com", + "icon": "electroneum", + "standard": "EIP3091" + } ], "53277": [ { - name: "DOID Scan", - url: "https://scan.doid.tech", - icon: "doid", - standard: "EIP3091", - }, + "name": "DOID Scan", + "url": "https://scan.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } ], "53302": [ { - name: "seedscout", - url: "https://sepolia-explorer.superseed.xyz", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ethernal", + "url": "https://explorer.dfkchain.com", + "icon": "ethereum", + "standard": "none" + } ], "54211": [ { - name: "TestEdge HAQQ Explorer", - url: "https://explorer.testedge2.haqq.network", - standard: "EIP3091", - }, + "name": "TestEdge HAQQ Explorer", + "url": "https://explorer.testedge2.haqq.network", + "standard": "EIP3091" + } ], "54321": [ { - name: "toronet_explorer", - url: "https://testnet.toronet.org", - standard: "none", - }, + "name": "toronet_explorer", + "url": "https://testnet.toronet.org", + "standard": "none" + } ], "54555": [ { - name: "photon_testnet_explorer", - url: "https://testnet.photonchain.io", - standard: "none", - }, + "name": "photon_testnet_explorer", + "url": "https://testnet.photonchain.io", + "standard": "none" + } ], "55004": [ { - name: "blockscout", - url: "https://explorer.titan.tokamak.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.titan.tokamak.network", + "standard": "EIP3091" + } ], "55555": [ { - name: "reiscan", - url: "https://reiscan.com", - standard: "EIP3091", - }, + "name": "reiscan", + "url": "https://reiscan.com", + "standard": "EIP3091" + } ], "55556": [ { - name: "reiscan", - url: "https://testnet.reiscan.com", - standard: "EIP3091", - }, + "name": "reiscan", + "url": "https://testnet.reiscan.com", + "standard": "EIP3091" + } ], "56026": [ { - name: "Lambda Chain Mainnet Explorer", - url: "https://scan.lambda.im", - standard: "EIP3091", - }, + "name": "Lambda Chain Mainnet Explorer", + "url": "https://scan.lambda.im", + "standard": "EIP3091" + } ], "56288": [ { - name: "Boba BNB block explorer", - url: "https://bobascan.com", - standard: "none", - }, + "name": "Boba BNB block explorer", + "url": "https://bobascan.com", + "standard": "none" + } ], "56400": [ { - name: "TESTNETZER Explorer", - url: "https://subnets-test.avax.network/testnetzer", - standard: "EIP3091", - }, + "name": "TESTNETZER Explorer", + "url": "https://subnets-test.avax.network/testnetzer", + "standard": "EIP3091" + } ], "56789": [ { - name: "novascan", - url: "https://novascan.velo.org", - standard: "EIP3091", - }, + "name": "novascan", + "url": "https://novascan.velo.org", + "standard": "EIP3091" + } ], "56797": [ { - name: "DOID Testnet Scan", - url: "https://scan.testnet.doid.tech", - icon: "doid", - standard: "EIP3091", - }, + "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", - }, + "name": "Rollux Testnet Explorer", + "url": "https://rollux.tanenbaum.io", + "standard": "EIP3091" + } ], "57451": [ { - name: "coinsecnetwork", - url: "https://explorer.coinsec.network", - standard: "EIP3091", - }, + "name": "coinsecnetwork", + "url": "https://explorer.coinsec.network", + "standard": "EIP3091" + } ], "58008": [ { - name: "blockscout", - url: "https://explorer.sepolia.publicgoods.network", - icon: "blockscout", - standard: "EIP3091", - }, + "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": "Etherscan", + "url": "https://goerli.lineascan.build", + "standard": "EIP3091", + "icon": "linea" }, { - name: "Blockscout", - url: "https://explorer.goerli.linea.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": "Etherscan", + "url": "https://sepolia.lineascan.build", + "standard": "EIP3091", + "icon": "linea" }, { - name: "Blockscout", - url: "https://explorer.sepolia.linea.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": "Etherscan", + "url": "https://lineascan.build", + "standard": "EIP3091", + "icon": "linea" }, { - name: "Blockscout", - url: "https://explorer.linea.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", - }, + "name": "L2scan", + "url": "https://linea.l2scan.co", + "standard": "EIP3091", + "icon": "linea" + } ], "59971": [ { - name: "Genesys Scan", - url: "https://genesysscan.io", - icon: "genesyscode", - standard: "none", - }, + "name": "Genesys Scan", + "url": "https://genesysscan.io", + "icon": "genesyscode", + "standard": "none" + } ], "60000": [ { - name: "thinkiumscan", - url: "https://test0.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net", + "standard": "EIP3091" + } ], "60001": [ { - name: "thinkiumscan", - url: "https://test1.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net", + "standard": "EIP3091" + } ], "60002": [ { - name: "thinkiumscan", - url: "https://test2.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net", + "standard": "EIP3091" + } ], "60103": [ { - name: "thinkiumscan", - url: "https://test103.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + } ], "60808": [ { - name: "bobscout", - url: "https://explorer.gobob.xyz", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "bobscout", + "url": "https://explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], "61406": [ { - name: "KaiChain Explorer", - url: "https://explorer.kaichain.net", - standard: "EIP3091", - }, + "name": "KaiChain Explorer", + "url": "https://explorer.kaichain.net", + "standard": "EIP3091" + } ], "61800": [ { - name: "AxelChain Dev-Net Explorer", - url: "https://devexplorer2.viacube.com", - standard: "EIP3091", - }, + "name": "AxelChain Dev-Net Explorer", + "url": "https://devexplorer2.viacube.com", + "standard": "EIP3091" + } ], "61803": [ { - name: "eticascan", - url: "https://eticascan.org", - standard: "EIP3091", + "name": "eticascan", + "url": "https://eticascan.org", + "standard": "EIP3091" }, { - name: "eticastats", - url: "http://explorer.etica-stats.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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Scolscan Explorer", + "url": "https://explorer.scolcoin.com", + "standard": "EIP3091" + } ], "66988": [ { - name: "JanusNetwork Testnet Explorer", - url: "https://beta.scan.janusnetwork.io", - standard: "none", - }, + "name": "JanusNetwork Testnet Explorer", + "url": "https://beta.scan.janusnetwork.io", + "standard": "none" + } ], "68770": [ { - name: "DM2Verse Explorer", - url: "https://explorer.dm2verse.dmm.com", - standard: "EIP3091", - }, + "name": "DM2Verse Explorer", + "url": "https://explorer.dm2verse.dmm.com", + "standard": "EIP3091" + } ], "69420": [ { - name: "Condrieu explorer", - url: "https://explorer.condrieu.ethdevops.io", - standard: "none", - }, + "name": "Condrieu explorer", + "url": "https://explorer.condrieu.ethdevops.io", + "standard": "none" + } ], "70000": [ { - name: "thinkiumscan", - url: "https://chain0.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net", + "standard": "EIP3091" + } ], "70001": [ { - name: "thinkiumscan", - url: "https://chain1.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net", + "standard": "EIP3091" + } ], "70002": [ { - name: "thinkiumscan", - url: "https://chain2.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net", + "standard": "EIP3091" + } ], "70103": [ { - name: "thinkiumscan", - url: "https://chain103.thinkiumscan.net", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "GWScan Block Explorer", + "url": "https://v1.testnet.gwscan.com", + "standard": "none" + } ], "71402": [ { - name: "GWScan Block Explorer", - url: "https://v1.gwscan.com", - standard: "none", - }, + "name": "GWScan Block Explorer", + "url": "https://v1.gwscan.com", + "standard": "none" + } ], "72778": [ { - name: "ankara", - url: "https://explorer.ankara-cagacrypto.com", - standard: "EIP3091", - }, + "name": "ankara", + "url": "https://explorer.ankara-cagacrypto.com", + "standard": "EIP3091" + } ], "72992": [ { - name: "GrokScan", - url: "https://mainnet-explorer.grokchain.dev", - standard: "none", - }, + "name": "GrokScan", + "url": "https://mainnet-explorer.grokchain.dev", + "standard": "none" + } ], "73114": [ { - name: "ICB Tesnet Explorer", - url: "https://testnet.icbscan.io", - standard: "EIP3091", - }, + "name": "ICB Tesnet Explorer", + "url": "https://testnet.icbscan.io", + "standard": "EIP3091" + } ], "73115": [ { - name: "ICB Explorer", - url: "https://icbscan.io", - standard: "EIP3091", - }, + "name": "ICB Explorer", + "url": "https://icbscan.io", + "standard": "EIP3091" + } ], "73927": [ { - name: "mvmscan", - url: "https://scan.mvm.dev", - icon: "mvm", - standard: "EIP3091", - }, + "name": "mvmscan", + "url": "https://scan.mvm.dev", + "icon": "mvm", + "standard": "EIP3091" + } ], "75000": [ { - name: "ResinScan", - url: "https://explorer.resincoin.dev", - standard: "none", - }, + "name": "ResinScan", + "url": "https://explorer.resincoin.dev", + "standard": "none" + } ], "75512": [ { - name: "Geek Explorer", - url: "https://explorer.geekout-pte.com", - standard: "EIP3091", - }, + "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", - }, + "name": "Geek Testnet Explorer", + "url": "https://explorer-testnet.geekout-pte.com", + "standard": "EIP3091" + } ], "77001": [ { - name: "BORAchainscope", - url: "https://scope.boraportal.com", - standard: "EIP3091", - }, + "name": "BORAchainscope", + "url": "https://scope.boraportal.com", + "standard": "EIP3091" + } ], "77238": [ { - name: "Foundry Scan Testnet", - url: "https://testnet-explorer.foundryscan.org", - standard: "EIP3091", - }, + "name": "Foundry Scan Testnet", + "url": "https://testnet-explorer.foundryscan.org", + "standard": "EIP3091" + } ], "77612": [ { - name: "ventionscan", - url: "https://ventionscan.io", - standard: "EIP3091", - }, + "name": "ventionscan", + "url": "https://ventionscan.io", + "standard": "EIP3091" + } ], "77777": [ { - name: "toronet_explorer", - url: "https://toronet.org/explorer", - standard: "none", - }, + "name": "toronet_explorer", + "url": "https://toronet.org/explorer", + "standard": "none" + } ], "78281": [ { - name: "Dragonfly Blockscout", - url: "https://blockscout.dragonfly.hexapod.network", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Gold Smart Chain", + "url": "https://testnet.goldsmartchain.com", + "standard": "EIP3091" + } ], "80001": [ { - name: "polygonscan", - url: "https://mumbai.polygonscan.com", - standard: "EIP3091", - }, + "name": "polygonscan", + "url": "https://mumbai.polygonscan.com", + "standard": "EIP3091" + } ], "80002": [ { - name: "polygonamoy", - url: "https://www.oklink.com/amoy", - standard: "EIP3091", - }, + "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", - }, + "name": "Beratrail", + "url": "https://artio.beratrail.io", + "icon": "berachain", + "standard": "none" + } ], "80096": [ { - name: "blockscout", - url: "https://hizoco.net:38443", - standard: "none", - }, + "name": "blockscout", + "url": "https://hizoco.net:38443", + "standard": "none" + } ], "81041": [ { - name: "nordek", - url: "https://nordekscan.com", - standard: "EIP3091", - }, + "name": "nordek", + "url": "https://nordekscan.com", + "standard": "EIP3091" + } ], "81457": [ { - name: "Blastscan", - url: "https://blastscan.io", - icon: "blast", - standard: "EIP3091", + "name": "Blastscan", + "url": "https://blastscan.io", + "icon": "blast", + "standard": "EIP3091" }, { - name: "Blast Explorer", - url: "https://blastexplorer.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", - }, + "name": "Quantum Scan Mainnet", + "url": "https://quantumscan.org", + "standard": "EIP3091" + } ], "82459": [ { - name: "SLN Testnet Explorer", - url: "https://explorer.test.smartlayer.network", - standard: "EIP3091", - }, + "name": "SLN Testnet Explorer", + "url": "https://explorer.test.smartlayer.network", + "standard": "EIP3091" + } ], "83872": [ { - name: "Zedscan", - url: "http://zedscan.net", - standard: "EIP3091", - }, + "name": "Zedscan", + "url": "http://zedscan.net", + "standard": "EIP3091" + } ], "84531": [ { - name: "basescan", - url: "https://goerli.basescan.org", - standard: "none", + "name": "basescan", + "url": "https://goerli.basescan.org", + "standard": "none" }, { - name: "basescout", - url: "https://base-goerli.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "basescout", + "url": "https://base-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://base-goerli.dex.guru", - icon: "dexguru", - 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", - }, + "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", - }, + "name": "Aerie Explorer", + "url": "https://explorer.aerielab.io", + "icon": "aerie", + "standard": "EIP3091" + } ], "88002": [ { - name: "Nautscan", - url: "https://proteus.nautscan.com", - standard: "EIP3091", - icon: "nautilus", - }, + "name": "Nautscan", + "url": "https://proteus.nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } ], "88559": [ { - name: "inoai live", - url: "https://inoai.live", - standard: "none", - }, + "name": "inoai live", + "url": "https://inoai.live", + "standard": "none" + } ], "88817": [ { - name: "explorer-testnet", - url: "https://explorer-testnet.unit0.dev", - standard: "EIP3091", - }, + "name": "explorer-testnet", + "url": "https://explorer-testnet.unit0.dev", + "standard": "EIP3091" + } ], "88819": [ { - name: "explorer-stagenet", - url: "https://explorer-stagenet.unit0.dev", - standard: "EIP3091", - }, + "name": "explorer-stagenet", + "url": "https://explorer-stagenet.unit0.dev", + "standard": "EIP3091" + } ], "88882": [ { - name: "spicy-explorer", - url: "https://testnet.chiliscan.com", - standard: "EIP3091", - }, + "name": "spicy-explorer", + "url": "https://testnet.chiliscan.com", + "standard": "EIP3091" + } ], "88888": [ { - name: "chiliscan", - url: "https://chiliscan.com", - standard: "EIP3091", + "name": "chiliscan", + "url": "https://chiliscan.com", + "standard": "EIP3091" }, { - name: "chilizscan", - url: "https://scan.chiliz.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", - }, + "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", - }, + "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", - }, + "name": "Nautscan", + "url": "https://triton.nautscan.com", + "standard": "EIP3091" + } ], "91120": [ { - name: "MetaDAP Enterprise Mainnet explorer", - url: "https://explorer.chain.metadap.io", - standard: "none", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Green Chain Explorer", + "url": "https://explorer.greenchain.app", + "standard": "EIP3091" + } ], "97970": [ { - name: "OptimusZ7 Testnet Explorer", - url: "https://testnet.optimusz7.com", - standard: "EIP3091", - }, + "name": "OptimusZ7 Testnet Explorer", + "url": "https://testnet.optimusz7.com", + "standard": "EIP3091" + } ], "99099": [ { - name: "eLiberty Testnet", - url: "https://testnet.eliberty.ngo", - standard: "EIP3091", - }, + "name": "eLiberty Testnet", + "url": "https://testnet.eliberty.ngo", + "standard": "EIP3091" + } ], "100001": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/0", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/0", + "standard": "EIP3091" + } ], "100002": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/1", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/1", + "standard": "EIP3091" + } ], "100003": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/2", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/2", + "standard": "EIP3091" + } ], "100004": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/3", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/3", + "standard": "EIP3091" + } ], "100005": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/4", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/4", + "standard": "EIP3091" + } ], "100006": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/5", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/5", + "standard": "EIP3091" + } ], "100007": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/6", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/6", + "standard": "EIP3091" + } ], "100008": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/7", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/7", + "standard": "EIP3091" + } ], "100009": [ { - name: "VeChain Stats", - url: "https://vechainstats.com", - standard: "none", + "name": "VeChain Stats", + "url": "https://vechainstats.com", + "standard": "none" }, { - name: "VeChain Explorer", - url: "https://explore.vechain.org", - standard: "none", - }, + "name": "VeChain Explorer", + "url": "https://explore.vechain.org", + "standard": "none" + } ], "100010": [ { - name: "VeChain Explorer", - url: "https://explore-testnet.vechain.org", - standard: "none", - }, + "name": "VeChain Explorer", + "url": "https://explore-testnet.vechain.org", + "standard": "none" + } ], "101010": [ { - name: "blockscout", - url: "https://stability.blockscout.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://stability.blockscout.com", + "standard": "EIP3091" + } ], "102031": [ { - name: "blockscout", - url: "https://creditcoin-testnet.blockscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://creditcoin-testnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "103090": [ { - name: "blockscout", - url: "https://scan.crystaleum.org", - icon: "crystal", - standard: "EIP3091", - }, + "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", - }, + "name": "Masa Testnet Explorer", + "url": "https://subnets-test.avax.network/masatestnet", + "standard": "EIP3091" + } ], "104566": [ { - name: "KaspaClassic Explorer", - url: "https://explorer.kaspaclassic.world", - standard: "none", - }, + "name": "KaspaClassic Explorer", + "url": "https://explorer.kaspaclassic.world", + "standard": "none" + } ], "105105": [ { - name: "Stratis Explorer", - url: "https://explorer.stratisevm.com", - standard: "EIP3091", - }, + "name": "Stratis Explorer", + "url": "https://explorer.stratisevm.com", + "standard": "EIP3091" + } ], "108801": [ { - name: "BROChain Explorer", - url: "https://explorer.brochain.org", - standard: "EIP3091", - }, + "name": "BROChain Explorer", + "url": "https://explorer.brochain.org", + "standard": "EIP3091" + } ], "110001": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/0", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/0", + "standard": "EIP3091" + } ], "110002": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/1", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/1", + "standard": "EIP3091" + } ], "110003": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/2", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/2", + "standard": "EIP3091" + } ], "110004": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/3", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/3", + "standard": "EIP3091" + } ], "110005": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/4", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/4", + "standard": "EIP3091" + } ], "110006": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/5", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/5", + "standard": "EIP3091" + } ], "110007": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/6", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/6", + "standard": "EIP3091" + } ], "110008": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/7", - standard: "EIP3091", - }, + "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", - }, + "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 - 1", + "url": "https://explorer.main.siberium.net", + "icon": "siberium", + "standard": "EIP3091" }, { - name: "Siberium Mainnet Explorer - blockscout - 2", - url: "https://explorer.main.siberium.net.ru", - icon: "siberium", - standard: "EIP3091", - }, + "name": "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", - }, + "name": "blockscout", + "url": "https://explorer.re.al", + "icon": "real", + "standard": "EIP3091" + } ], "112358": [ { - name: "blockscout", - url: "https://explorer.metachain.one", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Etherlink Testnet Explorer", + "url": "https://testnet-explorer.etherlink.com", + "standard": "EIP3091" + } ], "131419": [ { - name: "etndscan", - url: "https://scan.etnd.pro", - icon: "ETND", - standard: "none", - }, + "name": "etndscan", + "url": "https://scan.etnd.pro", + "icon": "ETND", + "standard": "none" + } ], "132902": [ { - name: "Form Testnet explorer", - url: "https://testnet-explorer.form.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ICPlaza", + "url": "https://browsemainnet.ic-plaza.org/index", + "standard": "none" + } ], "165279": [ { - name: "Eclat Mainnet Explorer", - url: "https://eclatscan.com", - standard: "EIP3091", - }, + "name": "Eclat Mainnet Explorer", + "url": "https://eclatscan.com", + "standard": "EIP3091" + } ], "167000": [ { - name: "etherscan", - url: "https://taikoscan.io", - standard: "EIP3091", - }, + "name": "etherscan", + "url": "https://taikoscan.io", + "standard": "EIP3091" + } ], "167008": [ { - name: "blockscout", - url: "https://explorer.katla.taiko.xyz", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.katla.taiko.xyz", + "standard": "EIP3091" + } ], "167009": [ { - name: "blockscout", - url: "https://blockscoutapi.hekla.taiko.xyz", - standard: "EIP3091", + "name": "blockscout", + "url": "https://blockscoutapi.hekla.taiko.xyz", + "standard": "EIP3091" }, { - name: "routescan", - url: "https://hekla.taikoscan.network", - standard: "EIP3091", - }, + "name": "routescan", + "url": "https://hekla.taikoscan.network", + "standard": "EIP3091" + } ], "188710": [ { - name: "Bitica DPOS Blockchain Explorer", - url: "https://biticablockchain.com", - standard: "none", - }, + "name": "Bitica DPOS Blockchain Explorer", + "url": "https://biticablockchain.com", + "standard": "none" + } ], "188881": [ { - name: "CondorScan", - url: "https://explorer.condor.systems", - standard: "none", - }, + "name": "CondorScan", + "url": "https://explorer.condor.systems", + "standard": "none" + } ], "200101": [ { - name: "Blockscout", - url: "https://explorer-devnet-cardano-evm.c1.milkomeda.com", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "bitlayer testnet scan", + "url": "https://testnet.btrscan.com", + "standard": "EIP3091" + } ], "200901": [ { - name: "bitlayer mainnet scan", - url: "https://www.btrscan.com", - standard: "EIP3091", - }, + "name": "bitlayer mainnet scan", + "url": "https://www.btrscan.com", + "standard": "EIP3091" + } ], "201018": [ { - name: "alaya explorer", - url: "https://scan.alaya.network", - standard: "none", - }, + "name": "alaya explorer", + "url": "https://scan.alaya.network", + "standard": "none" + } ], "201030": [ { - name: "alaya explorer", - url: "https://devnetscan.alaya.network", - standard: "none", - }, + "name": "alaya explorer", + "url": "https://devnetscan.alaya.network", + "standard": "none" + } ], "201804": [ { - name: "Mythical Chain Explorer", - url: "https://explorer.mythicalgames.com", - icon: "mythical", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Auroria Testnet Explorer", + "url": "https://auroria.explorer.stratisevm.com", + "standard": "EIP3091" + } ], "210425": [ { - name: "PlatON explorer", - url: "https://scan.platon.network", - standard: "none", - }, + "name": "PlatON explorer", + "url": "https://scan.platon.network", + "standard": "none" + } ], "220315": [ { - name: "explorer masnet", - url: "https://explorer.masnet.ai", - standard: "EIP3091", - }, + "name": "explorer masnet", + "url": "https://explorer.masnet.ai", + "standard": "EIP3091" + } ], "221230": [ { - name: "Reapchain Dashboard", - url: "https://dashboard.reapchain.org", - icon: "reapchain", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://explorer.evm.hydration.cloud", + "standard": "EIP3091" + } ], "222555": [ { - name: "DeepL Mainnet Explorer", - url: "https://scan.deeplnetwork.org", - icon: "deepl", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Taf ECO Chain Mainnet", + "url": "https://ecoscan.tafchain.com", + "standard": "EIP3091" + } ], "224422": [ { - name: "CONET Scan", - url: "https://scan.conet.network", - standard: "EIP3091", - }, + "name": "CONET Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } ], "224433": [ { - name: "CONET Holesky Scan", - url: "https://scan.conet.network", - standard: "EIP3091", - }, + "name": "CONET Holesky Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } ], "230315": [ { - name: "HashKey Chain Testnet Explorer", - url: "https://testnet.hashkeyscan.io", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "saakuru-explorer-testnet", + "url": "https://explorer-testnet.saakuru.network", + "standard": "EIP3091" + } ], "256256": [ { - name: "Mainnet Scan", - url: "https://mainnet.scan.caduceus.foundation", - standard: "none", - }, + "name": "Mainnet Scan", + "url": "https://mainnet.scan.caduceus.foundation", + "standard": "none" + } ], "262371": [ { - name: "Eclat Testnet Explorer", - url: "https://testnet-explorer.eclatscan.com", - standard: "EIP3091", - }, + "name": "Eclat Testnet Explorer", + "url": "https://testnet-explorer.eclatscan.com", + "standard": "EIP3091" + } ], "271271": [ { - name: "EgonCoin Testnet", - url: "https://testnet.egonscan.com", - standard: "EIP3091", - }, + "name": "EgonCoin Testnet", + "url": "https://testnet.egonscan.com", + "standard": "EIP3091" + } ], "282828": [ { - name: "zillscout", - url: "https://sepolia.zillnet.io", - icon: "zillion", - standard: "EIP3091", - }, + "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", - }, + "name": "One World Chain Mainnet Explorer", + "url": "https://mainnet.oneworldchain.org", + "standard": "EIP3091" + } ], "313313": [ { - name: "Testnet Scan", - url: "https://explorer.saharaa.info", - standard: "EIP3091", - }, + "name": "Testnet Scan", + "url": "https://explorer.saharaa.info", + "standard": "EIP3091" + } ], "314159": [ { - name: "Filscan - Calibration", - url: "https://calibration.filscan.io", - standard: "none", + "name": "Filscan - Calibration", + "url": "https://calibration.filscan.io", + "standard": "none" }, { - name: "Filscout - Calibration", - url: "https://calibration.filscout.com/en", - standard: "none", + "name": "Filscout - Calibration", + "url": "https://calibration.filscout.com/en", + "standard": "none" }, { - name: "Filfox - Calibration", - url: "https://calibration.filfox.info", - 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": "Glif Explorer - Calibration", + "url": "https://explorer.glif.io/?network=calibration", + "standard": "none" }, { - name: "Beryx", - url: "https://beryx.zondax.ch", - 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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Bloom Genesis Mainnet", + "url": "https://explorer.bloomgenesis.com", + "standard": "EIP3091" + } ], "333331": [ { - name: "avescan", - url: "https://testnet.avescoin.io", - icon: "avescan", - standard: "EIP3091", - }, + "name": "avescan", + "url": "https://testnet.avescoin.io", + "icon": "avescan", + "standard": "EIP3091" + } ], "333333": [ { - name: "Nativ3 Test Explorer", - url: "https://scantest.nativ3.network", - standard: "EIP3091", - }, + "name": "Nativ3 Test Explorer", + "url": "https://scantest.nativ3.network", + "standard": "EIP3091" + } ], "333666": [ { - name: "blockscout", - url: "https://testnet.oonescan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://testnet.oonescan.com", + "standard": "none" + } ], "333777": [ { - name: "blockscout", - url: "https://dev.oonescan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://dev.oonescan.com", + "standard": "none" + } ], "336655": [ { - name: "UPchain Testnet Explorer", - url: "https://explorer-testnet.uniport.network", - icon: "up", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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://explorer.testnet.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" }, { - name: "Bitfinity Testnet Block Explorer", - url: "https://bitfinity-test.dex.guru", - icon: "dexguru", - 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", - }, + "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", - }, + "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", - }, + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout-test.hap.land", + "standard": "none", + "icon": "hap" + } ], "381931": [ { - name: "metalscan", - url: "https://metalscan.io", - standard: "EIP3091", - }, + "name": "metalscan", + "url": "https://metalscan.io", + "standard": "EIP3091" + } ], "381932": [ { - name: "metalscan", - url: "https://tahoe.metalscan.io", - standard: "EIP3091", - }, + "name": "metalscan", + "url": "https://tahoe.metalscan.io", + "standard": "EIP3091" + } ], "404040": [ { - name: "Tipboxcoin", - url: "https://tipboxcoin.net", - standard: "EIP3091", - }, + "name": "Tipboxcoin", + "url": "https://tipboxcoin.net", + "standard": "EIP3091" + } ], "413413": [ { - name: "aiescan-testnet", - icon: "aie", - url: "https://testnet.aiescan.io", - standard: "none", - }, + "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", - }, + "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", - }, + "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", - }, + "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": "arbiscan-testnet", + "url": "https://testnet.arbiscan.io", + "standard": "EIP3091" }, { - name: "arbitrum-rinkeby", - url: "https://rinkeby-explorer.arbitrum.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", - }, + "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", - }, + "name": "Arbitrum Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.arbitrum.io", + "standard": "EIP3091" + } ], "424242": [ { - name: "blockscout", - url: "https://testnet.ftnscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://testnet.ftnscan.com", + "standard": "none" + } ], "432201": [ { - name: "Avalanche Subnet Testnet Explorer", - url: "https://subnets-test.avax.network/dexalot", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "weelink-testnet", + "url": "https://weelink.cloud/#/blockView/overview", + "standard": "none" + } ], "473861": [ { - name: "ultraproscan", - url: "https://ultraproscan.io", - icon: "ultrapro", - standard: "EIP3091", - }, + "name": "ultraproscan", + "url": "https://ultraproscan.io", + "icon": "ultrapro", + "standard": "EIP3091" + } ], "474142": [ { - name: "SIDE SCAN", - url: "https://sidescan.luniverse.io/1641349324562974539", - standard: "none", - }, + "name": "SIDE SCAN", + "url": "https://sidescan.luniverse.io/1641349324562974539", + "standard": "none" + } ], "504441": [ { - name: "Playdapp Explorer", - url: "https://subnets.avax.network/playdappne", - standard: "EIP3091", - }, + "name": "Playdapp Explorer", + "url": "https://subnets.avax.network/playdappne", + "standard": "EIP3091" + } ], "512512": [ { - name: "Galaxy Scan", - url: "https://galaxy.scan.caduceus.foundation", - standard: "none", - }, + "name": "Galaxy Scan", + "url": "https://galaxy.scan.caduceus.foundation", + "standard": "none" + } ], "513100": [ { - name: "DisChain", - url: "https://www.oklink.com/dis", - standard: "EIP3091", - }, + "name": "DisChain", + "url": "https://www.oklink.com/dis", + "standard": "EIP3091" + } ], "526916": [ { - name: "DoCoin Community Chain Explorer", - url: "https://explorer.docoin.shop", - standard: "EIP3091", - }, + "name": "DoCoin Community Chain Explorer", + "url": "https://explorer.docoin.shop", + "standard": "EIP3091" + } ], "534351": [ { - name: "Scroll Sepolia Etherscan", - url: "https://sepolia.scrollscan.com", - standard: "EIP3091", - }, + "name": "Scroll Sepolia Etherscan", + "url": "https://sepolia.scrollscan.com", + "standard": "EIP3091" + } ], "534352": [ { - name: "Scrollscan", - url: "https://scrollscan.com", - standard: "EIP3091", - }, + "name": "Scrollscan", + "url": "https://scrollscan.com", + "standard": "EIP3091" + } ], "534849": [ { - name: "shinascan", - url: "https://shinascan.shinarium.org", - standard: "EIP3091", - }, + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } ], "535037": [ { - name: "bescscan", - url: "https://Bescscan.io", - standard: "EIP3091", - }, + "name": "bescscan", + "url": "https://Bescscan.io", + "standard": "EIP3091" + } ], "552981": [ { - name: "One World Chain Testnet Explorer", - url: "https://testnet.oneworldchain.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipsecha", + "standard": "EIP3091" + } ], "622277": [ { - name: "hypra", - url: "https://explorer.hypra.network", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "name": "Atlas Testnet Scan", + "url": "https://explorer.testnet.atl.network", + "icon": "atlas", + "standard": "EIP3091" + } ], "641230": [ { - name: "brnkscan", - url: "https://brnkscan.bearnetwork.net", - standard: "EIP3091", - }, + "name": "brnkscan", + "url": "https://brnkscan.bearnetwork.net", + "standard": "EIP3091" + } ], "651940": [ { - name: "Alltra SmartChain Explorer", - url: "https://alltra.global", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Won Explorer", + "url": "https://scan.wonnetwork.org", + "standard": "EIP3091" + } ], "696969": [ { - name: "Galadriel Explorer", - url: "https://explorer.galadriel.com", - standard: "none", - }, + "name": "Galadriel Explorer", + "url": "https://explorer.galadriel.com", + "standard": "none" + } ], "710420": [ { - name: "TILTYARD Explorer", - url: "https://subnets.avax.network/tiltyard", - standard: "EIP3091", - }, + "name": "TILTYARD Explorer", + "url": "https://subnets.avax.network/tiltyard", + "standard": "EIP3091" + } ], "713715": [ { - name: "Seistream", - url: "https://seistream.app", - standard: "none", + "name": "Seistream", + "url": "https://seistream.app", + "standard": "none" }, { - name: "Seitrace", - url: "https://seitrace.com", - standard: "EIP3091", - }, + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } ], "721529": [ { - name: "Eramscan", - url: "https://eramscan.com", - standard: "EIP3091", - }, + "name": "Eramscan", + "url": "https://eramscan.com", + "standard": "EIP3091" + } ], "743111": [ { - name: "blockscout", - url: "https://testnet.explorer.hemi.xyz", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.explorer.hemi.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], "751230": [ { - name: "brnktestscan", - url: "https://brnktest-scan.bearnetwork.net", - standard: "EIP3091", - }, + "name": "brnktestscan", + "url": "https://brnktest-scan.bearnetwork.net", + "standard": "EIP3091" + } ], "761412": [ { - name: "Miexs Smartchain Explorer", - url: "https://miexs.com", - standard: "EIP3091", - }, + "name": "Miexs Smartchain Explorer", + "url": "https://miexs.com", + "standard": "EIP3091" + } ], "764984": [ { - name: "Lamina1 Test Explorer", - url: "https://subnets-test.avax.network/lamina1tes", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "tscscan", + "url": "https://testnet.tscscan.io", + "icon": "netxscan", + "standard": "none" + } ], "827431": [ { - name: "CURVE Mainnet", - url: "https://curvescan.io", - standard: "EIP3091", - }, + "name": "CURVE Mainnet", + "url": "https://curvescan.io", + "standard": "EIP3091" + } ], "839320": [ { - name: "Primal Network Testnet", - url: "https://testnet-explorer.prmscan.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "BlocX Mainnet Explorer", + "url": "https://explorer.blxscan.com", + "icon": "blx", + "standard": "none" + } ], "888882": [ { - name: "REXX Mainnet Explorer", - url: "https://rexxnetwork.com", - standard: "EIP3091", - }, + "name": "REXX Mainnet Explorer", + "url": "https://rexxnetwork.com", + "standard": "EIP3091" + } ], "888888": [ { - name: "Visionscan", - url: "https://www.visionscan.org", - standard: "EIP3091", - }, + "name": "Visionscan", + "url": "https://www.visionscan.org", + "standard": "EIP3091" + } ], "900000": [ { - name: "Posichain Explorer", - url: "https://explorer.posichain.org", - standard: "EIP3091", - }, + "name": "Posichain Explorer", + "url": "https://explorer.posichain.org", + "standard": "EIP3091" + } ], "910000": [ { - name: "Posichain Explorer Testnet", - url: "https://explorer-testnet.posichain.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "JONO12 Explorer", + "url": "https://subnets-test.avax.network/jono12", + "standard": "EIP3091" + } ], "955305": [ { - name: "blockscout", - url: "https://explorer.eluv.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.eluv.io", + "standard": "EIP3091" + } ], "978657": [ { - name: "treasurescan", - url: "https://testnet.treasurescan.io", - icon: "treasure", - standard: "EIP3091", - }, + "name": "treasurescan", + "url": "https://testnet.treasurescan.io", + "icon": "treasure", + "standard": "EIP3091" + } ], "984122": [ { - name: "blockscout", - url: "https://explorer.forma.art", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://explorer.sketchpad-1.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } ], "988207": [ { - name: "Ecrox Chain Explorer", - url: "https://ecroxscan.com", - standard: "EIP3091", - }, + "name": "Ecrox Chain Explorer", + "url": "https://ecroxscan.com", + "standard": "EIP3091" + } ], "998899": [ { - name: "supernet-testnet-explorer", - url: "https://testnet-explorer.supernet.chaingames.io", - standard: "EIP3091", - }, + "name": "supernet-testnet-explorer", + "url": "https://testnet-explorer.supernet.chaingames.io", + "standard": "EIP3091" + } ], "999999": [ { - name: "AMCAmChain explorer", - url: "https://explorer.amchain.net", - standard: "none", - }, + "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", - }, + "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", - }, + "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": "Blockscout zKatana chain explorer", + "url": "https://zkatana.blockscout.com", + "standard": "EIP3091" }, { - name: "Startale zKatana chain explorer", - url: "https://zkatana.explorer.startale.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", - }, + "name": "blockscout", + "url": "https://explorer.ethoprotocol.com", + "standard": "none" + } ], "1337702": [ { - name: "kintsugi explorer", - url: "https://explorer.kintsugi.themerge.dev", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "PlayFi Block Explorer", + "url": "https://albireo-explorer.playfi.ai", + "standard": "EIP3091" + } ], "1637450": [ { - name: "Xterio Testnet Explorer", - url: "https://testnet.xterscan.io", - standard: "EIP3091", - }, + "name": "Xterio Testnet Explorer", + "url": "https://testnet.xterscan.io", + "standard": "EIP3091" + } ], "2021398": [ { - name: "DeBank Chain Explorer", - url: "https://explorer.testnet.debank.com", - standard: "EIP3091", - }, + "name": "DeBank Chain Explorer", + "url": "https://explorer.testnet.debank.com", + "standard": "EIP3091" + } ], "2099156": [ { - name: "piscan", - url: "https://piscan.plian.org/pchain", - standard: "EIP3091", - }, + "name": "piscan", + "url": "https://piscan.plian.org/pchain", + "standard": "EIP3091" + } ], "2206132": [ { - name: "PlatON explorer", - url: "https://devnet2scan.platon.network", - standard: "none", - }, + "name": "PlatON explorer", + "url": "https://devnet2scan.platon.network", + "standard": "none" + } ], "3397901": [ { - name: "Funki Sepolia Sandbox Explorer", - url: "https://sepolia-sandbox.funkichain.com", - standard: "none", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Moonchain Geneva Testnet", + "url": "https://geneva-explorer.moonchain.com", + "standard": "EIP3091" + } ], "5201420": [ { - name: "blockscout", - url: "https://blockexplorer.thesecurityteam.rocks", - icon: "electroneum", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockexplorer.thesecurityteam.rocks", + "icon": "electroneum", + "standard": "EIP3091" + } ], "5318008": [ { - name: "reactscan", - url: "https://kopli.reactscan.net", - standard: "none", - }, + "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 EVM explorer (Blockscout)", + "url": "https://txe.imversed.network", + "icon": "imversed", + "standard": "EIP3091" }, { - name: "Imversed Cosmos Explorer (Big Dipper)", - url: "https://tex-c.imversed.com", - icon: "imversed", - standard: "none", - }, + "name": "Imversed 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 EVM Explorer (Blockscout)", + "url": "https://txe-test.imversed.network", + "icon": "imversed", + "standard": "EIP3091" }, { - name: "Imversed Cosmos Explorer (Big Dipper)", - url: "https://tex-t.imversed.com", - icon: "imversed", - standard: "none", - }, + "name": "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "saakuru-explorer", + "url": "https://explorer.saakuru.network", + "standard": "EIP3091" + } ], "7355310": [ { - name: "openvessel-mainnet", - url: "https://mainnet-explorer.openvessel.io", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "Zora Network Explorer", + "url": "https://explorer.zora.energy", + "standard": "EIP3091" + } ], "8007736": [ { - name: "piscan", - url: "https://piscan.plian.org/child_0", - standard: "EIP3091", - }, + "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", - }, + "name": "Fhenix Helium Explorer (Blockscout)", + "url": "https://explorer.helium.fhenix.zone", + "standard": "EIP3091" + } ], "8080808": [ { - name: "Hokum Explorer", - url: "https://explorer.hokum.gg", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "piscan", + "url": "https://testnet.plian.org/child_test", + "standard": "EIP3091" + } ], "10101010": [ { - name: "Soverun", - url: "https://explorer.soverun.com", - standard: "EIP3091", - }, + "name": "Soverun", + "url": "https://explorer.soverun.com", + "standard": "EIP3091" + } ], "10241025": [ { - name: "Hal Explorer", - url: "https://hal-explorer.alienxchain.io", - standard: "EIP3091", - }, + "name": "Hal Explorer", + "url": "https://hal-explorer.alienxchain.io", + "standard": "EIP3091" + } ], "11155111": [ { - name: "etherscan-sepolia", - url: "https://sepolia.etherscan.io", - standard: "EIP3091", + "name": "etherscan-sepolia", + "url": "https://sepolia.etherscan.io", + "standard": "EIP3091" }, { - name: "otterscan-sepolia", - url: "https://sepolia.otterscan.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", - }, + "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", - }, + "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", - }, + "name": "anduschain explorer", + "url": "https://explorer.anduschain.io", + "icon": "daon", + "standard": "none" + } ], "16658437": [ { - name: "piscan", - url: "https://testnet.plian.org/testnet", - standard: "EIP3091", - }, + "name": "piscan", + "url": "https://testnet.plian.org/testnet", + "standard": "EIP3091" + } ], "17000920": [ { - name: "Lambda Chain Testnet Explorer", - url: "https://testscan.lambda.im", - standard: "EIP3091", - }, + "name": "Lambda Chain Testnet Explorer", + "url": "https://testscan.lambda.im", + "standard": "EIP3091" + } ], "20180427": [ { - name: "blockscout", - url: "https://stability-testnet.blockscout.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://stability-testnet.blockscout.com", + "standard": "EIP3091" + } ], "20180430": [ { - name: "spectrum", - url: "https://spectrum.pub", - standard: "none", - }, + "name": "spectrum", + "url": "https://spectrum.pub", + "standard": "none" + } ], "20181205": [ { - name: "qkiscan", - url: "https://qkiscan.io", - standard: "EIP3091", - }, + "name": "qkiscan", + "url": "https://qkiscan.io", + "standard": "EIP3091" + } ], "20201022": [ { - name: "Pego Network Explorer", - url: "https://scan.pego.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Hokum Explorer", + "url": "https://testnet-explorer.hokum.gg", + "standard": "EIP3091" + } ], "22052002": [ { - name: "Excelon explorer", - url: "https://explorer.excelon.io", - standard: "EIP3091", - }, + "name": "Excelon explorer", + "url": "https://explorer.excelon.io", + "standard": "EIP3091" + } ], "27082017": [ { - name: "exlscan", - url: "https://testnet-explorer.exlscan.com", - icon: "exl", - standard: "EIP3091", - }, + "name": "exlscan", + "url": "https://testnet-explorer.exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } ], "27082022": [ { - name: "exlscan", - url: "https://exlscan.com", - icon: "exl", - standard: "EIP3091", - }, + "name": "exlscan", + "url": "https://exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } ], "28122024": [ { - name: "scan-testnet", - url: "https://scanv2-testnet.ancient8.gg", - standard: "EIP3091", - }, + "name": "scan-testnet", + "url": "https://scanv2-testnet.ancient8.gg", + "standard": "EIP3091" + } ], "29032022": [ { - name: "FLXExplorer", - url: "https://explorer.flaexchange.top", - standard: "EIP3091", - }, + "name": "FLXExplorer", + "url": "https://explorer.flaexchange.top", + "standard": "EIP3091" + } ], "37084624": [ { - name: "Blockscout", - url: "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", - standard: "EIP3091", - }, + "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", - }, + "name": "TravelSong", + "url": "https://www.beastkingdom.io/travelsong", + "standard": "EIP3091" + } ], "43214913": [ { - name: "maistesntet", - url: "http://174.138.9.169:3006/?network=maistesntet", - standard: "none", - }, + "name": "maistesntet", + "url": "http://174.138.9.169:3006/?network=maistesntet", + "standard": "none" + } ], "65010002": [ { - name: "autonity-blockscout", - url: "https://bakerloo.autonity.org", - standard: "EIP3091", - }, + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } ], "65100002": [ { - name: "autonity-blockscout", - url: "https://piccadilly.autonity.org", - standard: "EIP3091", - }, + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } ], "68840142": [ { - name: "Frame Testnet Explorer", - url: "https://explorer.testnet.frame.xyz", - standard: "EIP3091", - }, + "name": "Frame Testnet Explorer", + "url": "https://explorer.testnet.frame.xyz", + "standard": "EIP3091" + } ], "77787778": [ { - name: "blockscout", - url: "https://test.0xhashscan.io", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://test.0xhashscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } ], "88888888": [ { - name: "teamscan", - url: "https://teamblockchain.team", - standard: "EIP3091", - }, + "name": "teamscan", + "url": "https://teamblockchain.team", + "standard": "EIP3091" + } ], "94204209": [ { - name: "blockscout", - url: "https://polygon-blackberry.gelatoscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://polygon-blackberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "111557560": [ { - name: "Cyber Testnet Explorer", - url: "https://testnet.cyberscan.co", - standard: "EIP3091", - }, + "name": "Cyber Testnet Explorer", + "url": "https://testnet.cyberscan.co", + "standard": "EIP3091" + } ], "123420111": [ { - name: "blockscout", - url: "https://opcelestia-raspberry.gelatoscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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://testnet.meldscan.io", + "icon": "meld", + "standard": "EIP3091" }, { - name: "explorer", - url: "https://subnets-test.avax.network/meld", - 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": "neonscan", + "url": "https://devnet.neonscan.org", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://neon-devnet.blockscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://neon-devnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "245022934": [ { - name: "neonscan", - url: "https://neonscan.org", - standard: "EIP3091", + "name": "neonscan", + "url": "https://neonscan.org", + "standard": "EIP3091" }, { - name: "native", - url: "https://neon.blockscout.com", - 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", - }, + "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", - }, + "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", - }, + "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://meldscan.io", + "icon": "meld", + "standard": "EIP3091" }, { - name: "explorer", - url: "https://subnets.avax.network/meld", - 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", - }, + "name": "Blockscout", + "url": "https://testnet-explorer.gather.network", + "icon": "gather", + "standard": "none" + } ], "486217935": [ { - name: "Blockscout", - url: "https://devnet-explorer.gather.network", - standard: "none", - }, + "name": "Blockscout", + "url": "https://devnet-explorer.gather.network", + "standard": "none" + } ], "888888888": [ { - name: "Ancient8 Explorer", - url: "https://scan.ancient8.gg", - standard: "EIP3091", - }, + "name": "Ancient8 Explorer", + "url": "https://scan.ancient8.gg", + "standard": "EIP3091" + } ], "889910245": [ { - name: "PTCESCAN Testnet Explorer", - url: "https://explorer-testnet.ptcscan.io", - standard: "EIP3091", - }, + "name": "PTCESCAN Testnet Explorer", + "url": "https://explorer-testnet.ptcscan.io", + "standard": "EIP3091" + } ], "889910246": [ { - name: "PTCESCAN Explorer", - url: "https://ptcscan.io", - standard: "EIP3091", - }, + "name": "PTCESCAN Explorer", + "url": "https://ptcscan.io", + "standard": "EIP3091" + } ], "974399131": [ { - name: "Blockscout", - url: "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "aurorascan.dev", + "url": "https://aurorascan.dev", + "standard": "EIP3091" + } ], "1313161555": [ { - name: "aurorascan.dev", - url: "https://testnet.aurorascan.dev", - standard: "EIP3091", - }, + "name": "aurorascan.dev", + "url": "https://testnet.aurorascan.dev", + "standard": "EIP3091" + } ], "1313161560": [ { - name: "PowerGold explorer", - url: "https://explorer.powergold.aurora.dev", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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 Scan", + "url": "https://sepolia.kakarotscan.org", + "standard": "EIP3091" }, { - name: "Kakarot Explorer", - url: "https://sepolia-explorer.kakarot.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", - }, + "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", - }, + "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", - }, + "name": "OneLedger Block Explorer", + "url": "https://frankenstein-explorer.oneledger.network", + "standard": "EIP3091" + } ], "11297108109": [ { - name: "Chainlens", - url: "https://palm.chainlens.com", - standard: "EIP3091", + "name": "Chainlens", + "url": "https://palm.chainlens.com", + "standard": "EIP3091" }, { - name: "Dora", - url: "https://www.ondora.xyz/network/palm", - standard: "none", - }, + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm", + "standard": "none" + } ], "11297108099": [ { - name: "Chainlens", - url: "https://testnet.palm.chainlens.com", - standard: "EIP3091", + "name": "Chainlens", + "url": "https://testnet.palm.chainlens.com", + "standard": "EIP3091" }, { - name: "Dora", - url: "https://www.ondora.xyz/network/palm-testnet", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://arb-blueberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "111222333444": [ { - name: "Alphabet Explorer", - url: "https://scan.alphabetnetwork.org", - standard: "EIP3091", - }, + "name": "Alphabet Explorer", + "url": "https://scan.alphabetnetwork.org", + "standard": "EIP3091" + } ], "197710212030": [ { - name: "Ntity Blockscout", - url: "https://blockscout.ntity.io", - icon: "ntity", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "zeniq-smart-chain-explorer", + "url": "https://smart.zeniq.net", + "standard": "EIP3091" + } ], "666301171999": [ { - name: "ipdcscan", - url: "https://scan.ipdc.io", - standard: "EIP3091", - }, + "name": "ipdcscan", + "url": "https://scan.ipdc.io", + "standard": "EIP3091" + } ], "2713017997578000": [ { - name: "dchaint scan", - url: "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", - standard: "EIP3091", - }, + "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", - }, - ], + "name": "dchain scan", + "url": "https://dchain-2716446429837000-1.sagaexplorer.io", + "standard": "EIP3091" + } + ] }; export const NETWORK_CURRENCIES = { "1": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2": { - name: "Expanse Network Ether", - symbol: "EXP", - decimals: 18, + "name": "Expanse Network Ether", + "symbol": "EXP", + "decimals": 18 }, "3": { - name: "Ropsten Ether", - symbol: "ETH", - decimals: 18, + "name": "Ropsten Ether", + "symbol": "ETH", + "decimals": 18 }, "4": { - name: "Rinkeby Ether", - symbol: "ETH", - decimals: 18, + "name": "Rinkeby Ether", + "symbol": "ETH", + "decimals": 18 }, "5": { - name: "Goerli Ether", - symbol: "ETH", - decimals: 18, + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 }, "7": { - name: "ThaiChain Ether", - symbol: "TCH", - decimals: 18, + "name": "ThaiChain Ether", + "symbol": "TCH", + "decimals": 18 }, "8": { - name: "Ubiq Ether", - symbol: "UBQ", - decimals: 18, + "name": "Ubiq Ether", + "symbol": "UBQ", + "decimals": 18 }, "9": { - name: "Ubiq Testnet Ether", - symbol: "TUBQ", - decimals: 18, + "name": "Ubiq Testnet Ether", + "symbol": "TUBQ", + "decimals": 18 }, "10": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "11": { - name: "Metadium Mainnet Ether", - symbol: "META", - decimals: 18, + "name": "Metadium Mainnet Ether", + "symbol": "META", + "decimals": 18 }, "12": { - name: "Metadium Testnet Ether", - symbol: "KAL", - decimals: 18, + "name": "Metadium Testnet Ether", + "symbol": "KAL", + "decimals": 18 }, "13": { - name: "Staging Diodes", - symbol: "sDIODE", - decimals: 18, + "name": "Staging Diodes", + "symbol": "sDIODE", + "decimals": 18 }, "14": { - name: "Flare", - symbol: "FLR", - decimals: 18, + "name": "Flare", + "symbol": "FLR", + "decimals": 18 }, "15": { - name: "Diodes", - symbol: "DIODE", - decimals: 18, + "name": "Diodes", + "symbol": "DIODE", + "decimals": 18 }, "16": { - name: "Coston Flare", - symbol: "CFLR", - decimals: 18, + "name": "Coston Flare", + "symbol": "CFLR", + "decimals": 18 }, "17": { - name: "Thaifi Ether", - symbol: "TFI", - decimals: 18, + "name": "Thaifi Ether", + "symbol": "TFI", + "decimals": 18 }, "18": { - name: "ThunderCore Testnet Token", - symbol: "TST", - decimals: 18, + "name": "ThunderCore Testnet Token", + "symbol": "TST", + "decimals": 18 }, "19": { - name: "Songbird", - symbol: "SGB", - decimals: 18, + "name": "Songbird", + "symbol": "SGB", + "decimals": 18 }, "20": { - name: "Elastos", - symbol: "ELA", - decimals: 18, + "name": "Elastos", + "symbol": "ELA", + "decimals": 18 }, "21": { - name: "Elastos", - symbol: "tELA", - decimals: 18, + "name": "Elastos", + "symbol": "tELA", + "decimals": 18 }, "22": { - name: "Elastos", - symbol: "ELA", - decimals: 18, + "name": "Elastos", + "symbol": "ELA", + "decimals": 18 }, "23": { - name: "Elastos", - symbol: "tELA", - decimals: 18, + "name": "Elastos", + "symbol": "tELA", + "decimals": 18 }, "24": { - name: "KardiaChain", - symbol: "KAI", - decimals: 18, + "name": "KardiaChain", + "symbol": "KAI", + "decimals": 18 }, "25": { - name: "Cronos", - symbol: "CRO", - decimals: 18, + "name": "Cronos", + "symbol": "CRO", + "decimals": 18 }, "26": { - name: "L1 testcoin", - symbol: "L1test", - decimals: 18, + "name": "L1 testcoin", + "symbol": "L1test", + "decimals": 18 }, "27": { - name: "SHIBA INU COIN", - symbol: "SHIB", - decimals: 18, + "name": "SHIBA INU COIN", + "symbol": "SHIB", + "decimals": 18 }, "29": { - name: "L1 coin", - symbol: "L1", - decimals: 18, + "name": "L1 coin", + "symbol": "L1", + "decimals": 18 }, "30": { - name: "Smart Bitcoin", - symbol: "RBTC", - decimals: 18, + "name": "Smart Bitcoin", + "symbol": "RBTC", + "decimals": 18 }, "31": { - name: "Testnet Smart Bitcoin", - symbol: "tRBTC", - decimals: 18, + "name": "Testnet Smart Bitcoin", + "symbol": "tRBTC", + "decimals": 18 }, "32": { - name: "GoodData Testnet Ether", - symbol: "GooD", - decimals: 18, + "name": "GoodData Testnet Ether", + "symbol": "GooD", + "decimals": 18 }, "33": { - name: "GoodData Mainnet Ether", - symbol: "GooD", - decimals: 18, + "name": "GoodData Mainnet Ether", + "symbol": "GooD", + "decimals": 18 }, "34": { - name: "SecureChain", - symbol: "SCAI", - decimals: 18, + "name": "SecureChain", + "symbol": "SCAI", + "decimals": 18 }, "35": { - name: "TBWG Ether", - symbol: "TBG", - decimals: 18, + "name": "TBWG Ether", + "symbol": "TBG", + "decimals": 18 }, "36": { - name: "Dxchain", - symbol: "DX", - decimals: 18, + "name": "Dxchain", + "symbol": "DX", + "decimals": 18 }, "37": { - name: "XPLA", - symbol: "XPLA", - decimals: 18, + "name": "XPLA", + "symbol": "XPLA", + "decimals": 18 }, "38": { - name: "Valorbit", - symbol: "VAL", - decimals: 18, + "name": "Valorbit", + "symbol": "VAL", + "decimals": 18 }, "39": { - name: "Unicorn Ultra", - symbol: "U2U", - decimals: 18, + "name": "Unicorn Ultra", + "symbol": "U2U", + "decimals": 18 }, "40": { - name: "Telos", - symbol: "TLOS", - decimals: 18, + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 }, "41": { - name: "Telos", - symbol: "TLOS", - decimals: 18, + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 }, "42": { - name: "LUKSO", - symbol: "LYX", - decimals: 18, + "name": "LUKSO", + "symbol": "LYX", + "decimals": 18 }, "43": { - name: "Pangolin Network Native Token", - symbol: "PRING", - decimals: 18, + "name": "Pangolin Network Native Token", + "symbol": "PRING", + "decimals": 18 }, "44": { - name: "Crab Network Native Token", - symbol: "CRAB", - decimals: 18, + "name": "Crab Network Native Token", + "symbol": "CRAB", + "decimals": 18 }, "45": { - name: "Pangoro Network Native Token", - symbol: "ORING", - decimals: 18, + "name": "Pangoro Network Native Token", + "symbol": "ORING", + "decimals": 18 }, "46": { - name: "Darwinia Network Native Token", - symbol: "RING", - decimals: 18, + "name": "Darwinia Network Native Token", + "symbol": "RING", + "decimals": 18 }, "47": { - name: "ACRIA", - symbol: "ACRIA", - decimals: 18, + "name": "ACRIA", + "symbol": "ACRIA", + "decimals": 18 }, "48": { - name: "Ennothem", - symbol: "ETMP", - decimals: 18, + "name": "Ennothem", + "symbol": "ETMP", + "decimals": 18 }, "49": { - name: "Ennothem", - symbol: "ETMP", - decimals: 18, + "name": "Ennothem", + "symbol": "ETMP", + "decimals": 18 }, "50": { - name: "XinFin", - symbol: "XDC", - decimals: 18, + "name": "XinFin", + "symbol": "XDC", + "decimals": 18 }, "51": { - name: "XinFin", - symbol: "TXDC", - decimals: 18, + "name": "XinFin", + "symbol": "TXDC", + "decimals": 18 }, "52": { - name: "CoinEx Chain Native Token", - symbol: "cet", - decimals: 18, + "name": "CoinEx Chain Native Token", + "symbol": "cet", + "decimals": 18 }, "53": { - name: "CoinEx Chain Test Native Token", - symbol: "cett", - decimals: 18, + "name": "CoinEx Chain Test Native Token", + "symbol": "cett", + "decimals": 18 }, "54": { - name: "Belly", - symbol: "BELLY", - decimals: 18, + "name": "Belly", + "symbol": "BELLY", + "decimals": 18 }, "55": { - name: "Zyx", - symbol: "ZYX", - decimals: 18, + "name": "Zyx", + "symbol": "ZYX", + "decimals": 18 }, "56": { - name: "BNB Chain Native Token", - symbol: "BNB", - decimals: 18, + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 }, "57": { - name: "Syscoin", - symbol: "SYS", - decimals: 18, + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 }, "58": { - name: "ONG", - symbol: "ONG", - decimals: 18, + "name": "ONG", + "symbol": "ONG", + "decimals": 18 }, "60": { - name: "GoChain Ether", - symbol: "GO", - decimals: 18, + "name": "GoChain Ether", + "symbol": "GO", + "decimals": 18 }, "61": { - name: "Ether", - symbol: "ETC", - decimals: 18, + "name": "Ether", + "symbol": "ETC", + "decimals": 18 }, "63": { - name: "Mordor Ether", - symbol: "METC", - decimals: 18, + "name": "Mordor Ether", + "symbol": "METC", + "decimals": 18 }, "64": { - name: "Ellaism Ether", - symbol: "ELLA", - decimals: 18, + "name": "Ellaism Ether", + "symbol": "ELLA", + "decimals": 18 }, "65": { - name: "OKExChain Global Utility Token in testnet", - symbol: "OKT", - decimals: 18, + "name": "OKExChain Global Utility Token in testnet", + "symbol": "OKT", + "decimals": 18 }, "66": { - name: "OKXChain Global Utility Token", - symbol: "OKT", - decimals: 18, + "name": "OKXChain Global Utility Token", + "symbol": "OKT", + "decimals": 18 }, "67": { - name: "DBChain Testnet", - symbol: "DBM", - decimals: 18, + "name": "DBChain Testnet", + "symbol": "DBM", + "decimals": 18 }, "68": { - name: "SoterOne Mainnet Ether", - symbol: "SOTER", - decimals: 18, + "name": "SoterOne Mainnet Ether", + "symbol": "SOTER", + "decimals": 18 }, "69": { - name: "Kovan Ether", - symbol: "ETH", - decimals: 18, + "name": "Kovan Ether", + "symbol": "ETH", + "decimals": 18 }, "70": { - name: "Hoo Smart Chain Native Token", - symbol: "HOO", - decimals: 18, + "name": "Hoo Smart Chain Native Token", + "symbol": "HOO", + "decimals": 18 }, "71": { - name: "CFX", - symbol: "CFX", - decimals: 18, + "name": "CFX", + "symbol": "CFX", + "decimals": 18 }, "72": { - name: "DxChain Testnet", - symbol: "DX", - decimals: 18, + "name": "DxChain Testnet", + "symbol": "DX", + "decimals": 18 }, "73": { - name: "FNCY", - symbol: "FNCY", - decimals: 18, + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 }, "74": { - name: "EIDI", - symbol: "EIDI", - decimals: 18, + "name": "EIDI", + "symbol": "EIDI", + "decimals": 18 }, "75": { - name: "Decimal", - symbol: "DEL", - decimals: 18, + "name": "Decimal", + "symbol": "DEL", + "decimals": 18 }, "76": { - name: "Mix Ether", - symbol: "MIX", - decimals: 18, + "name": "Mix Ether", + "symbol": "MIX", + "decimals": 18 }, "77": { - name: "POA Sokol Ether", - symbol: "SPOA", - decimals: 18, + "name": "POA Sokol Ether", + "symbol": "SPOA", + "decimals": 18 }, "78": { - name: "Primus Ether", - symbol: "PETH", - decimals: 18, + "name": "Primus Ether", + "symbol": "PETH", + "decimals": 18 }, "79": { - name: "ZENITH", - symbol: "ZENITH", - decimals: 18, + "name": "ZENITH", + "symbol": "ZENITH", + "decimals": 18 }, "80": { - name: "RNA", - symbol: "RNA", - decimals: 18, + "name": "RNA", + "symbol": "RNA", + "decimals": 18 }, "81": { - name: "Japan Open Chain Token", - symbol: "JOC", - decimals: 18, + "name": "Japan Open Chain Token", + "symbol": "JOC", + "decimals": 18 }, "82": { - name: "Meter", - symbol: "MTR", - decimals: 18, + "name": "Meter", + "symbol": "MTR", + "decimals": 18 }, "83": { - name: "Meter", - symbol: "MTR", - decimals: 18, + "name": "Meter", + "symbol": "MTR", + "decimals": 18 }, "84": { - name: "XRP", - symbol: "XRP", - decimals: 18, + "name": "XRP", + "symbol": "XRP", + "decimals": 18 }, "85": { - name: "GateToken", - symbol: "GT", - decimals: 18, + "name": "GateToken", + "symbol": "GT", + "decimals": 18 }, "86": { - name: "GateToken", - symbol: "GT", - decimals: 18, + "name": "GateToken", + "symbol": "GT", + "decimals": 18 }, "87": { - name: "Supernova", - symbol: "SNT", - decimals: 18, + "name": "Supernova", + "symbol": "SNT", + "decimals": 18 }, "88": { - name: "Viction", - symbol: "VIC", - decimals: 18, + "name": "Viction", + "symbol": "VIC", + "decimals": 18 }, "89": { - name: "Viction", - symbol: "VIC", - decimals: 18, + "name": "Viction", + "symbol": "VIC", + "decimals": 18 }, "90": { - name: "Garizon", - symbol: "GAR", - decimals: 18, + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 }, "91": { - name: "Garizon", - symbol: "GAR", - decimals: 18, + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 }, "92": { - name: "Garizon", - symbol: "GAR", - decimals: 18, + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 }, "93": { - name: "Garizon", - symbol: "GAR", - decimals: 18, + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 }, "94": { - name: "BCTS", - symbol: "BCTS", - decimals: 18, + "name": "BCTS", + "symbol": "BCTS", + "decimals": 18 }, "95": { - name: "CADL", - symbol: "CADL", - decimals: 18, + "name": "CADL", + "symbol": "CADL", + "decimals": 18 }, "96": { - name: "Bitkub Coin", - symbol: "KUB", - decimals: 18, + "name": "Bitkub Coin", + "symbol": "KUB", + "decimals": 18 }, "97": { - name: "BNB Chain Native Token", - symbol: "tBNB", - decimals: 18, + "name": "BNB Chain Native Token", + "symbol": "tBNB", + "decimals": 18 }, "98": { - name: "SIX evm token", - symbol: "SIX", - decimals: 18, + "name": "SIX evm token", + "symbol": "SIX", + "decimals": 18 }, "99": { - name: "POA Network Core Ether", - symbol: "POA", - decimals: 18, + "name": "POA Network Core Ether", + "symbol": "POA", + "decimals": 18 }, "100": { - name: "xDAI", - symbol: "XDAI", - decimals: 18, + "name": "xDAI", + "symbol": "XDAI", + "decimals": 18 }, "101": { - name: "EtherInc Ether", - symbol: "ETI", - decimals: 18, + "name": "EtherInc Ether", + "symbol": "ETI", + "decimals": 18 }, "102": { - name: "Web3Games", - symbol: "W3G", - decimals: 18, + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 }, "103": { - name: "Worldland", - symbol: "WLC", - decimals: 18, + "name": "Worldland", + "symbol": "WLC", + "decimals": 18 }, "104": { - name: "Kaiba Testnet Token", - symbol: "tKAIBA", - decimals: 18, + "name": "Kaiba Testnet Token", + "symbol": "tKAIBA", + "decimals": 18 }, "105": { - name: "Web3Games", - symbol: "W3G", - decimals: 18, + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 }, "106": { - name: "Velas", - symbol: "VLX", - decimals: 18, + "name": "Velas", + "symbol": "VLX", + "decimals": 18 }, "107": { - name: "Nebula X", - symbol: "NBX", - decimals: 18, + "name": "Nebula X", + "symbol": "NBX", + "decimals": 18 }, "108": { - name: "ThunderCore Token", - symbol: "TT", - decimals: 18, + "name": "ThunderCore Token", + "symbol": "TT", + "decimals": 18 }, "109": { - name: "BONE Shibarium", - symbol: "BONE", - decimals: 18, + "name": "BONE Shibarium", + "symbol": "BONE", + "decimals": 18 }, "110": { - name: "Proton", - symbol: "XPR", - decimals: 4, + "name": "Proton", + "symbol": "XPR", + "decimals": 4 }, "111": { - name: "EtherLite", - symbol: "ETL", - decimals: 18, + "name": "EtherLite", + "symbol": "ETL", + "decimals": 18 }, "112": { - name: "Gas IDR", - symbol: "GIDR", - decimals: 18, + "name": "Gas IDR", + "symbol": "GIDR", + "decimals": 18 }, "113": { - name: "Dehvo", - symbol: "Deh", - decimals: 18, + "name": "Dehvo", + "symbol": "Deh", + "decimals": 18 }, "114": { - name: "Coston2 Flare", - symbol: "C2FLR", - decimals: 18, + "name": "Coston2 Flare", + "symbol": "C2FLR", + "decimals": 18 }, "117": { - name: "Uptick", - symbol: "UPTICK", - decimals: 18, + "name": "Uptick", + "symbol": "UPTICK", + "decimals": 18 }, "118": { - name: "Arcology Coin", - symbol: "Acol", - decimals: 18, + "name": "Arcology Coin", + "symbol": "Acol", + "decimals": 18 }, "119": { - name: "NULS", - symbol: "NULS", - decimals: 18, + "name": "NULS", + "symbol": "NULS", + "decimals": 18 }, "120": { - name: "NULS", - symbol: "NULS", - decimals: 18, + "name": "NULS", + "symbol": "NULS", + "decimals": 18 }, "121": { - name: "Realchain", - symbol: "REAL", - decimals: 18, + "name": "Realchain", + "symbol": "REAL", + "decimals": 18 }, "122": { - name: "Fuse", - symbol: "FUSE", - decimals: 18, + "name": "Fuse", + "symbol": "FUSE", + "decimals": 18 }, "123": { - name: "Spark", - symbol: "SPARK", - decimals: 18, + "name": "Spark", + "symbol": "SPARK", + "decimals": 18 }, "124": { - name: "Decentralized Web Utility", - symbol: "DWU", - decimals: 18, + "name": "Decentralized Web Utility", + "symbol": "DWU", + "decimals": 18 }, "125": { - name: "OYchain Token", - symbol: "OY", - decimals: 18, + "name": "OYchain Token", + "symbol": "OY", + "decimals": 18 }, "126": { - name: "OYchain Token", - symbol: "OY", - decimals: 18, + "name": "OYchain Token", + "symbol": "OY", + "decimals": 18 }, "127": { - name: "Factory 127 Token", - symbol: "FETH", - decimals: 18, + "name": "Factory 127 Token", + "symbol": "FETH", + "decimals": 18 }, "128": { - name: "Huobi ECO Chain Native Token", - symbol: "HT", - decimals: 18, + "name": "Huobi ECO Chain Native Token", + "symbol": "HT", + "decimals": 18 }, "129": { - name: "INOV8", - symbol: "INOV8", - decimals: 18, + "name": "INOV8", + "symbol": "INOV8", + "decimals": 18 }, "131": { - name: "Engram Tokio Testnet", - symbol: "tGRAM", - decimals: 18, + "name": "Engram Tokio Testnet", + "symbol": "tGRAM", + "decimals": 18 }, "132": { - name: "Namefi Coin", - symbol: "NFIC", - decimals: 18, + "name": "Namefi Coin", + "symbol": "NFIC", + "decimals": 18 }, "133": { - name: "HashKey EcoPoints", - symbol: "HSK", - decimals: 18, + "name": "HashKey EcoPoints", + "symbol": "HSK", + "decimals": 18 }, "134": { - name: "xRLC", - symbol: "xRLC", - decimals: 18, + "name": "xRLC", + "symbol": "xRLC", + "decimals": 18 }, "135": { - name: "Alyx Testnet Native Token", - symbol: "ALYX", - decimals: 18, + "name": "Alyx Testnet Native Token", + "symbol": "ALYX", + "decimals": 18 }, "136": { - name: "Deamchain Native Token", - symbol: "DEAM", - decimals: 18, + "name": "Deamchain Native Token", + "symbol": "DEAM", + "decimals": 18 }, "137": { - name: "MATIC", - symbol: "MATIC", - decimals: 18, + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 }, "138": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "139": { - name: "WoopCoin", - symbol: "WOOC", - decimals: 18, + "name": "WoopCoin", + "symbol": "WOOC", + "decimals": 18 }, "140": { - name: "Eternal", - symbol: "Eter", - decimals: 18, + "name": "Eternal", + "symbol": "Eter", + "decimals": 18 }, "141": { - name: "Belly", - symbol: "BELLY", - decimals: 18, + "name": "Belly", + "symbol": "BELLY", + "decimals": 18 }, "142": { - name: "Prodax", - symbol: "DAX", - decimals: 18, + "name": "Prodax", + "symbol": "DAX", + "decimals": 18 }, "144": { - name: "PHI", - symbol: "Φ", - decimals: 18, + "name": "PHI", + "symbol": "Φ", + "decimals": 18 }, "145": { - name: "SoraETH", - symbol: "SETH", - decimals: 18, + "name": "SoraETH", + "symbol": "SETH", + "decimals": 18 }, "147": { - name: "Flag", - symbol: "FLAG", - decimals: 18, + "name": "Flag", + "symbol": "FLAG", + "decimals": 18 }, "148": { - name: "SMR", - symbol: "SMR", - decimals: 18, + "name": "SMR", + "symbol": "SMR", + "decimals": 18 }, "150": { - name: "SIX testnet evm token", - symbol: "tSIX", - decimals: 18, + "name": "SIX testnet evm token", + "symbol": "tSIX", + "decimals": 18 }, "151": { - name: "Redbelly Network Coin", - symbol: "RBNT", - decimals: 18, + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 }, "152": { - name: "Redbelly Network Coin", - symbol: "RBNT", - decimals: 18, + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 }, "153": { - name: "Redbelly Network Coin", - symbol: "RBNT", - decimals: 18, + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 }, "154": { - name: "Redbelly Network Coin", - symbol: "RBNT", - decimals: 18, + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 }, "155": { - name: "TENET", - symbol: "TENET", - decimals: 18, + "name": "TENET", + "symbol": "TENET", + "decimals": 18 }, "156": { - name: "OEBlock", - symbol: "OEB", - decimals: 18, + "name": "OEBlock", + "symbol": "OEB", + "decimals": 18 }, "157": { - name: "BONE", - symbol: "BONE", - decimals: 18, + "name": "BONE", + "symbol": "BONE", + "decimals": 18 }, "158": { - name: "Roburna", - symbol: "RBA", - decimals: 18, + "name": "Roburna", + "symbol": "RBA", + "decimals": 18 }, "159": { - name: "Roburna", - symbol: "RBAT", - decimals: 18, + "name": "Roburna", + "symbol": "RBAT", + "decimals": 18 }, "160": { - name: "Armonia Multichain Native Token", - symbol: "AMAX", - decimals: 18, + "name": "Armonia Multichain Native Token", + "symbol": "AMAX", + "decimals": 18 }, "161": { - name: "Armonia Multichain Native Token", - symbol: "AMAX", - decimals: 18, + "name": "Armonia Multichain Native Token", + "symbol": "AMAX", + "decimals": 18 }, "162": { - name: "Lightstreams PHT", - symbol: "PHT", - decimals: 18, + "name": "Lightstreams PHT", + "symbol": "PHT", + "decimals": 18 }, "163": { - name: "Lightstreams PHT", - symbol: "PHT", - decimals: 18, + "name": "Lightstreams PHT", + "symbol": "PHT", + "decimals": 18 }, "164": { - name: "Omni", - symbol: "OMNI", - decimals: 18, + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 }, "166": { - name: "Omni", - symbol: "OMNI", - decimals: 18, + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 }, "167": { - name: "ATOSHI", - symbol: "ATOS", - decimals: 18, + "name": "ATOSHI", + "symbol": "ATOS", + "decimals": 18 }, "168": { - name: "AIOZ", - symbol: "AIOZ", - decimals: 18, + "name": "AIOZ", + "symbol": "AIOZ", + "decimals": 18 }, "169": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "170": { - name: "HOO", - symbol: "HOO", - decimals: 18, + "name": "HOO", + "symbol": "HOO", + "decimals": 18 }, "172": { - name: "Latam-Blockchain Resil Test Native Token", - symbol: "usd", - decimals: 18, + "name": "Latam-Blockchain Resil Test Native Token", + "symbol": "usd", + "decimals": 18 }, "176": { - name: "DC Native Token", - symbol: "DCT", - decimals: 18, + "name": "DC Native Token", + "symbol": "DCT", + "decimals": 18 }, "180": { - name: "AME", - symbol: "AME", - decimals: 18, + "name": "AME", + "symbol": "AME", + "decimals": 18 }, "181": { - name: "WATER", - symbol: "WATER", - decimals: 18, + "name": "WATER", + "symbol": "WATER", + "decimals": 18 }, "185": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "186": { - name: "Seele", - symbol: "Seele", - decimals: 18, + "name": "Seele", + "symbol": "Seele", + "decimals": 18 }, "188": { - name: "BTM", - symbol: "BTM", - decimals: 18, + "name": "BTM", + "symbol": "BTM", + "decimals": 18 }, "189": { - name: "BTM", - symbol: "BTM", - decimals: 18, + "name": "BTM", + "symbol": "BTM", + "decimals": 18 }, "191": { - name: "FFG", - symbol: "FFG", - decimals: 18, + "name": "FFG", + "symbol": "FFG", + "decimals": 18 }, "193": { - name: "Crypto Emergency", - symbol: "CEM", - decimals: 18, + "name": "Crypto Emergency", + "symbol": "CEM", + "decimals": 18 }, "195": { - name: "X Layer Global Utility Token in testnet", - symbol: "OKB", - decimals: 18, + "name": "X Layer Global Utility Token in testnet", + "symbol": "OKB", + "decimals": 18 }, "196": { - name: "X Layer Global Utility Token", - symbol: "OKB", - decimals: 18, + "name": "X Layer Global Utility Token", + "symbol": "OKB", + "decimals": 18 }, "197": { - name: "Neutrinos", - symbol: "NEUTR", - decimals: 18, + "name": "Neutrinos", + "symbol": "NEUTR", + "decimals": 18 }, "198": { - name: "Bitcoin", - symbol: "BTC", - decimals: 18, + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 }, "199": { - name: "BitTorrent", - symbol: "BTT", - decimals: 18, + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 }, "200": { - name: "xDAI", - symbol: "xDAI", - decimals: 18, + "name": "xDAI", + "symbol": "xDAI", + "decimals": 18 }, "201": { - name: "MOAC", - symbol: "mc", - decimals: 18, + "name": "MOAC", + "symbol": "mc", + "decimals": 18 }, "202": { - name: "Edgeless Wrapped Eth", - symbol: "EwEth", - decimals: 18, + "name": "Edgeless Wrapped Eth", + "symbol": "EwEth", + "decimals": 18 }, "204": { - name: "BNB Chain Native Token", - symbol: "BNB", - decimals: 18, + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 }, "206": { - name: "VinuChain", - symbol: "VC", - decimals: 18, + "name": "VinuChain", + "symbol": "VC", + "decimals": 18 }, "207": { - name: "VinuChain", - symbol: "VC", - decimals: 18, + "name": "VinuChain", + "symbol": "VC", + "decimals": 18 }, "208": { - name: "Notes", - symbol: "utx", - decimals: 18, + "name": "Notes", + "symbol": "utx", + "decimals": 18 }, "210": { - name: "Bitnet", - symbol: "BTN", - decimals: 18, + "name": "Bitnet", + "symbol": "BTN", + "decimals": 18 }, "211": { - name: "Freight Trust Native", - symbol: "0xF", - decimals: 18, + "name": "Freight Trust Native", + "symbol": "0xF", + "decimals": 18 }, "212": { - name: "Makalu MAPO", - symbol: "MAPO", - decimals: 18, + "name": "Makalu MAPO", + "symbol": "MAPO", + "decimals": 18 }, "213": { - name: "BSquared Token", - symbol: "B2", - decimals: 18, + "name": "BSquared Token", + "symbol": "B2", + "decimals": 18 }, "214": { - name: "Shina Inu", - symbol: "SHI", - decimals: 18, + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 }, "217": { - name: "MCD", - symbol: "MCD", - decimals: 18, + "name": "MCD", + "symbol": "MCD", + "decimals": 18 }, "220": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "223": { - name: "Bitcoin", - symbol: "BTC", - decimals: 18, + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 }, "224": { - name: "Viridis Token", - symbol: "VRD", - decimals: 18, + "name": "Viridis Token", + "symbol": "VRD", + "decimals": 18 }, "225": { - name: "LA", - symbol: "LA", - decimals: 18, + "name": "LA", + "symbol": "LA", + "decimals": 18 }, "226": { - name: "TLA", - symbol: "TLA", - decimals: 18, + "name": "TLA", + "symbol": "TLA", + "decimals": 18 }, "228": { - name: "FHE", - symbol: "FHE", - decimals: 18, + "name": "FHE", + "symbol": "FHE", + "decimals": 18 }, "230": { - name: "SwapDEX", - symbol: "SDX", - decimals: 18, + "name": "SwapDEX", + "symbol": "SDX", + "decimals": 18 }, "234": { - name: "JNFTC", - symbol: "JNFTC", - decimals: 18, + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 }, "236": { - name: "Deamchain Native Token", - symbol: "DEAM", - decimals: 18, + "name": "Deamchain Native Token", + "symbol": "DEAM", + "decimals": 18 }, "242": { - name: "Plinga", - symbol: "PLINGA", - decimals: 18, + "name": "Plinga", + "symbol": "PLINGA", + "decimals": 18 }, "246": { - name: "Energy Web Token", - symbol: "EWT", - decimals: 18, + "name": "Energy Web Token", + "symbol": "EWT", + "decimals": 18 }, "248": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "250": { - name: "Fantom", - symbol: "FTM", - decimals: 18, + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 }, "252": { - name: "Frax Ether", - symbol: "frxETH", - decimals: 18, + "name": "Frax Ether", + "symbol": "frxETH", + "decimals": 18 }, "255": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "256": { - name: "Huobi ECO Chain Test Native Token", - symbol: "htt", - decimals: 18, + "name": "Huobi ECO Chain Test Native Token", + "symbol": "htt", + "decimals": 18 }, "258": { - name: "Setheum", - symbol: "SETM", - decimals: 18, + "name": "Setheum", + "symbol": "SETM", + "decimals": 18 }, "259": { - name: "Neonlink Native Token", - symbol: "NEON", - decimals: 18, + "name": "Neonlink Native Token", + "symbol": "NEON", + "decimals": 18 }, "262": { - name: "Suren", - symbol: "SRN", - decimals: 18, + "name": "Suren", + "symbol": "SRN", + "decimals": 18 }, "266": { - name: "Ankr", - symbol: "ANKR", - decimals: 18, + "name": "Ankr", + "symbol": "ANKR", + "decimals": 18 }, "267": { - name: "Testnet Ankr", - symbol: "ANKR", - decimals: 18, + "name": "Testnet Ankr", + "symbol": "ANKR", + "decimals": 18 }, "268": { - name: "Devnet Ankr", - symbol: "ANKR", - decimals: 18, + "name": "Devnet Ankr", + "symbol": "ANKR", + "decimals": 18 }, "269": { - name: "High Performance Blockchain Ether", - symbol: "HPB", - decimals: 18, + "name": "High Performance Blockchain Ether", + "symbol": "HPB", + "decimals": 18 }, "271": { - name: "EgonCoin", - symbol: "EGON", - decimals: 18, + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 }, "274": { - name: "LaCoin", - symbol: "LAC", - decimals: 18, + "name": "LaCoin", + "symbol": "LAC", + "decimals": 18 }, "278": { - name: "FAI", - symbol: "FAI", - decimals: 18, + "name": "FAI", + "symbol": "FAI", + "decimals": 18 }, "279": { - name: "BPX", - symbol: "BPX", - decimals: 18, + "name": "BPX", + "symbol": "BPX", + "decimals": 18 }, "282": { - name: "Cronos zkEVM Test Coin", - symbol: "zkTCRO", - decimals: 18, + "name": "Cronos zkEVM Test Coin", + "symbol": "zkTCRO", + "decimals": 18 }, "288": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "291": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "295": { - name: "hbar", - symbol: "HBAR", - decimals: 18, + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 }, "296": { - name: "hbar", - symbol: "HBAR", - decimals: 18, + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 }, "297": { - name: "hbar", - symbol: "HBAR", - decimals: 18, + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 }, "298": { - name: "hbar", - symbol: "HBAR", - decimals: 18, + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 }, "300": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "302": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "303": { - name: "Neurochain", - symbol: "tNCN", - decimals: 18, + "name": "Neurochain", + "symbol": "tNCN", + "decimals": 18 }, "305": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "307": { - name: "Lovely", - symbol: "LOVELY", - decimals: 18, + "name": "Lovely", + "symbol": "LOVELY", + "decimals": 18 }, "308": { - name: "Furtheon", - symbol: "FTH", - decimals: 18, + "name": "Furtheon", + "symbol": "FTH", + "decimals": 18 }, "309": { - name: "Wyzth", - symbol: "WYZ", - decimals: 18, + "name": "Wyzth", + "symbol": "WYZ", + "decimals": 18 }, "311": { - name: "OMAX COIN", - symbol: "OMAX", - decimals: 18, + "name": "OMAX COIN", + "symbol": "OMAX", + "decimals": 18 }, "313": { - name: "Neurochain", - symbol: "NCN", - decimals: 18, + "name": "Neurochain", + "symbol": "NCN", + "decimals": 18 }, "314": { - name: "filecoin", - symbol: "FIL", - decimals: 18, + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 }, "321": { - name: "KuCoin Token", - symbol: "KCS", - decimals: 18, + "name": "KuCoin Token", + "symbol": "KCS", + "decimals": 18 }, "322": { - name: "KuCoin Testnet Token", - symbol: "tKCS", - decimals: 18, + "name": "KuCoin Testnet Token", + "symbol": "tKCS", + "decimals": 18 }, "323": { - name: "Cosvm", - symbol: "CVM", - decimals: 18, + "name": "Cosvm", + "symbol": "CVM", + "decimals": 18 }, "324": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "333": { - name: "Web3Q", - symbol: "W3Q", - decimals: 18, + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 }, "335": { - name: "Jewel", - symbol: "JEWEL", - decimals: 18, + "name": "Jewel", + "symbol": "JEWEL", + "decimals": 18 }, "336": { - name: "Shiden", - symbol: "SDN", - decimals: 18, + "name": "Shiden", + "symbol": "SDN", + "decimals": 18 }, "338": { - name: "Cronos Test Coin", - symbol: "TCRO", - decimals: 18, + "name": "Cronos Test Coin", + "symbol": "TCRO", + "decimals": 18 }, "345": { - name: "TAS", - symbol: "TAS", - decimals: 18, + "name": "TAS", + "symbol": "TAS", + "decimals": 18 }, "361": { - name: "Theta Fuel", - symbol: "TFUEL", - decimals: 18, + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 }, "363": { - name: "Theta Fuel", - symbol: "TFUEL", - decimals: 18, + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 }, "364": { - name: "Theta Fuel", - symbol: "TFUEL", - decimals: 18, + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 }, "365": { - name: "Theta Fuel", - symbol: "TFUEL", - decimals: 18, + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 }, "369": { - name: "Pulse", - symbol: "PLS", - decimals: 18, + "name": "Pulse", + "symbol": "PLS", + "decimals": 18 }, "371": { - name: "tCNT", - symbol: "tCNT", - decimals: 18, + "name": "tCNT", + "symbol": "tCNT", + "decimals": 18 }, "380": { - name: "filecoin", - symbol: "FIL", - decimals: 18, + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 }, "381": { - name: "filecoin", - symbol: "FIL", - decimals: 18, + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 }, "385": { - name: "Lisinski Ether", - symbol: "LISINS", - decimals: 18, + "name": "Lisinski Ether", + "symbol": "LISINS", + "decimals": 18 }, "395": { - name: "CADL", - symbol: "CADL", - decimals: 18, + "name": "CADL", + "symbol": "CADL", + "decimals": 18 }, "397": { - name: "NEAR", - symbol: "NEAR", - decimals: 18, + "name": "NEAR", + "symbol": "NEAR", + "decimals": 18 }, "398": { - name: "Testnet NEAR", - symbol: "NEAR", - decimals: 18, + "name": "Testnet NEAR", + "symbol": "NEAR", + "decimals": 18 }, "399": { - name: "USNT", - symbol: "USNT", - decimals: 18, + "name": "USNT", + "symbol": "USNT", + "decimals": 18 }, "400": { - name: "HyperonChain", - symbol: "HPN", - decimals: 18, + "name": "HyperonChain", + "symbol": "HPN", + "decimals": 18 }, "401": { - name: "OZONE", - symbol: "OZO", - decimals: 18, + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 }, "404": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "411": { - name: "Pepe", - symbol: "PEPE", - decimals: 18, + "name": "Pepe", + "symbol": "PEPE", + "decimals": 18 }, "416": { - name: "SX Network", - symbol: "SX", - decimals: 18, + "name": "SX Network", + "symbol": "SX", + "decimals": 18 }, "418": { - name: "Test LaCoin", - symbol: "TLA", - decimals: 18, + "name": "Test LaCoin", + "symbol": "TLA", + "decimals": 18 }, "420": { - name: "Goerli Ether", - symbol: "ETH", - decimals: 18, + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 }, "422": { - name: "Viridis Token", - symbol: "VRD", - decimals: 18, + "name": "Viridis Token", + "symbol": "VRD", + "decimals": 18 }, "424": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "427": { - name: "Zeeth Token", - symbol: "ZTH", - decimals: 18, + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 }, "428": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "434": { - name: "Boyaa mainnet native coin", - symbol: "BYC", - decimals: 18, + "name": "Boyaa mainnet native coin", + "symbol": "BYC", + "decimals": 18 }, "443": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "444": { - name: "Sepolia ETH", - symbol: "ETH", - decimals: 18, + "name": "Sepolia ETH", + "symbol": "ETH", + "decimals": 18 }, "456": { - name: "ARZIO", - symbol: "AZO", - decimals: 18, + "name": "ARZIO", + "symbol": "AZO", + "decimals": 18 }, "462": { - name: "Areon", - symbol: "TAREA", - decimals: 18, + "name": "Areon", + "symbol": "TAREA", + "decimals": 18 }, "463": { - name: "Areon", - symbol: "AREA", - decimals: 18, + "name": "Areon", + "symbol": "AREA", + "decimals": 18 }, "499": { - name: "Rupaya", - symbol: "RUPX", - decimals: 18, + "name": "Rupaya", + "symbol": "RUPX", + "decimals": 18 }, "500": { - name: "Camino", - symbol: "CAM", - decimals: 18, + "name": "Camino", + "symbol": "CAM", + "decimals": 18 }, "501": { - name: "Camino", - symbol: "CAM", - decimals: 18, + "name": "Camino", + "symbol": "CAM", + "decimals": 18 }, "510": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "512": { - name: "Acuteangle Native Token", - symbol: "AAC", - decimals: 18, + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 }, "513": { - name: "Acuteangle Native Token", - symbol: "AAC", - decimals: 18, + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 }, "516": { - name: "Gear Zero Network Native Token", - symbol: "GZN", - decimals: 18, + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 }, "520": { - name: "XT Smart Chain Native Token", - symbol: "XT", - decimals: 18, + "name": "XT Smart Chain Native Token", + "symbol": "XT", + "decimals": 18 }, "529": { - name: "Firechain", - symbol: "FIRE", - decimals: 18, + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 }, "530": { - name: "Function X", - symbol: "FX", - decimals: 18, + "name": "Function X", + "symbol": "FX", + "decimals": 18 }, "534": { - name: "CANDLE", - symbol: "CNDL", - decimals: 18, + "name": "CANDLE", + "symbol": "CNDL", + "decimals": 18 }, "537": { - name: "BSC", - symbol: "BNB", - decimals: 18, + "name": "BSC", + "symbol": "BNB", + "decimals": 18 }, "542": { - name: "PAW", - symbol: "PAW", - decimals: 18, + "name": "PAW", + "symbol": "PAW", + "decimals": 18 }, "545": { - name: "FLOW", - symbol: "FLOW", - decimals: 18, + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 }, "555": { - name: "CLASS COIN", - symbol: "CLASS", - decimals: 18, + "name": "CLASS COIN", + "symbol": "CLASS", + "decimals": 18 }, "558": { - name: "Tao", - symbol: "TAO", - decimals: 18, + "name": "Tao", + "symbol": "TAO", + "decimals": 18 }, "568": { - name: "Dogecoin", - symbol: "DOGE", - decimals: 18, + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 }, "570": { - name: "Syscoin", - symbol: "SYS", - decimals: 18, + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 }, "571": { - name: "Metatime Coin", - symbol: "MTC", - decimals: 18, + "name": "Metatime Coin", + "symbol": "MTC", + "decimals": 18 }, "579": { - name: "Filecoin", - symbol: "FIL", - decimals: 18, + "name": "Filecoin", + "symbol": "FIL", + "decimals": 18 }, "592": { - name: "Astar", - symbol: "ASTR", - decimals: 18, + "name": "Astar", + "symbol": "ASTR", + "decimals": 18 }, "595": { - name: "Acala Mandala Token", - symbol: "mACA", - decimals: 18, + "name": "Acala Mandala Token", + "symbol": "mACA", + "decimals": 18 }, "596": { - name: "Karura Token", - symbol: "KAR", - decimals: 18, + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 }, "597": { - name: "Acala Token", - symbol: "ACA", - decimals: 18, + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 }, "600": { - name: "Meshnyan Testnet Native Token", - symbol: "MESHT", - decimals: 18, + "name": "Meshnyan Testnet Native Token", + "symbol": "MESHT", + "decimals": 18 }, "601": { - name: "VINE", - symbol: "VNE", - decimals: 18, + "name": "VINE", + "symbol": "VNE", + "decimals": 18 }, "612": { - name: "EIOB", - symbol: "EIOB", - decimals: 18, + "name": "EIOB", + "symbol": "EIOB", + "decimals": 18 }, "614": { - name: "GLQ", - symbol: "GLQ", - decimals: 18, + "name": "GLQ", + "symbol": "GLQ", + "decimals": 18 }, "634": { - name: "USDC", - symbol: "USDC", - decimals: 18, + "name": "USDC", + "symbol": "USDC", + "decimals": 18 }, "646": { - name: "FLOW", - symbol: "FLOW", - decimals: 18, + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 }, "647": { - name: "SX Network", - symbol: "SX", - decimals: 18, + "name": "SX Network", + "symbol": "SX", + "decimals": 18 }, "648": { - name: "Endurance Chain Native Token", - symbol: "ACE", - decimals: 18, + "name": "Endurance Chain Native Token", + "symbol": "ACE", + "decimals": 18 }, "653": { - name: "kalis", - symbol: "KALIS", - decimals: 18, + "name": "kalis", + "symbol": "KALIS", + "decimals": 18 }, "654": { - name: "kalis", - symbol: "KALIS", - decimals: 18, + "name": "kalis", + "symbol": "KALIS", + "decimals": 18 }, "662": { - name: "ulc", - symbol: "ULC", - decimals: 18, + "name": "ulc", + "symbol": "ULC", + "decimals": 18 }, "666": { - name: "Pixie Chain Testnet Native Token", - symbol: "PCTT", - decimals: 18, + "name": "Pixie Chain Testnet Native Token", + "symbol": "PCTT", + "decimals": 18 }, "667": { - name: "LAOS", - symbol: "LAOS", - decimals: 18, + "name": "LAOS", + "symbol": "LAOS", + "decimals": 18 }, "668": { - name: "JuncaChain Native Token", - symbol: "JGC", - decimals: 18, + "name": "JuncaChain Native Token", + "symbol": "JGC", + "decimals": 18 }, "669": { - name: "JuncaChain Testnet Native Token", - symbol: "JGCT", - decimals: 18, + "name": "JuncaChain Testnet Native Token", + "symbol": "JGCT", + "decimals": 18 }, "686": { - name: "Karura Token", - symbol: "KAR", - decimals: 18, + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 }, "690": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "700": { - name: "Social", - symbol: "SNS", - decimals: 18, + "name": "Social", + "symbol": "SNS", + "decimals": 18 }, "701": { - name: "Koi Network Native Token", - symbol: "KRING", - decimals: 18, + "name": "Koi Network Native Token", + "symbol": "KRING", + "decimals": 18 }, "707": { - name: "BCS Token", - symbol: "BCS", - decimals: 18, + "name": "BCS Token", + "symbol": "BCS", + "decimals": 18 }, "708": { - name: "BCS Testnet Token", - symbol: "tBCS", - decimals: 18, + "name": "BCS Testnet Token", + "symbol": "tBCS", + "decimals": 18 }, "710": { - name: "Fury", - symbol: "FURY", - decimals: 18, + "name": "Fury", + "symbol": "FURY", + "decimals": 18 }, "713": { - name: "VRC Chain", - symbol: "VRC", - decimals: 18, + "name": "VRC Chain", + "symbol": "VRC", + "decimals": 18 }, "719": { - name: "BONE", - symbol: "BONE", - decimals: 18, + "name": "BONE", + "symbol": "BONE", + "decimals": 18 }, "721": { - name: "Lycan", - symbol: "LYC", - decimals: 18, + "name": "Lycan", + "symbol": "LYC", + "decimals": 18 }, "727": { - name: "Blucrates", - symbol: "BLU", - decimals: 18, + "name": "Blucrates", + "symbol": "BLU", + "decimals": 18 }, "730": { - name: "Lovely", - symbol: "LOVELY", - decimals: 18, + "name": "Lovely", + "symbol": "LOVELY", + "decimals": 18 }, "741": { - name: "VNT", - symbol: "VNT", - decimals: 18, + "name": "VNT", + "symbol": "VNT", + "decimals": 18 }, "742": { - name: "Script", - symbol: "SPAY", - decimals: 18, + "name": "Script", + "symbol": "SPAY", + "decimals": 18 }, "747": { - name: "FLOW", - symbol: "FLOW", - decimals: 18, + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 }, "766": { - name: "Shiba Predator", - symbol: "QOM", - decimals: 18, + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 }, "776": { - name: "Openchain Testnet", - symbol: "TOPC", - decimals: 18, + "name": "Openchain Testnet", + "symbol": "TOPC", + "decimals": 18 }, "777": { - name: "cTH", - symbol: "cTH", - decimals: 18, + "name": "cTH", + "symbol": "cTH", + "decimals": 18 }, "786": { - name: "MAAL", - symbol: "MAAL", - decimals: 18, + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 }, "787": { - name: "Acala Token", - symbol: "ACA", - decimals: 18, + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 }, "788": { - name: "Aerochain Testnet", - symbol: "TAero", - decimals: 18, + "name": "Aerochain Testnet", + "symbol": "TAero", + "decimals": 18 }, "789": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "799": { - name: "Test Rupaya", - symbol: "TRUPX", - decimals: 18, + "name": "Test Rupaya", + "symbol": "TRUPX", + "decimals": 18 }, "800": { - name: "LUCID", - symbol: "LUCID", - decimals: 18, + "name": "LUCID", + "symbol": "LUCID", + "decimals": 18 }, "803": { - name: "Haicoin", - symbol: "HAIC", - decimals: 18, + "name": "Haicoin", + "symbol": "HAIC", + "decimals": 18 }, "808": { - name: "Portal Fantasy Token", - symbol: "PFT", - decimals: 18, + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 }, "810": { - name: "Haven1", - symbol: "H1", - decimals: 18, + "name": "Haven1", + "symbol": "H1", + "decimals": 18 }, "813": { - name: "Qitmeer", - symbol: "MEER", - decimals: 18, + "name": "Qitmeer", + "symbol": "MEER", + "decimals": 18 }, "814": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "818": { - name: "BeOne Chain Mainnet", - symbol: "BOC", - decimals: 18, + "name": "BeOne Chain Mainnet", + "symbol": "BOC", + "decimals": 18 }, "820": { - name: "Callisto", - symbol: "CLO", - decimals: 18, + "name": "Callisto", + "symbol": "CLO", + "decimals": 18 }, "822": { - name: "Bitcoin", - symbol: "rBTC", - decimals: 18, + "name": "Bitcoin", + "symbol": "rBTC", + "decimals": 18 }, "831": { - name: "CDT", - symbol: "CDT", - decimals: 18, + "name": "CDT", + "symbol": "CDT", + "decimals": 18 }, "841": { - name: "Tara", - symbol: "TARA", - decimals: 18, + "name": "Tara", + "symbol": "TARA", + "decimals": 18 }, "842": { - name: "Tara", - symbol: "TARA", - decimals: 18, + "name": "Tara", + "symbol": "TARA", + "decimals": 18 }, "859": { - name: "Zeeth Token", - symbol: "ZTH", - decimals: 18, + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 }, "868": { - name: "FST", - symbol: "FST", - decimals: 18, + "name": "FST", + "symbol": "FST", + "decimals": 18 }, "876": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "877": { - name: "Dexit network", - symbol: "DXT", - decimals: 18, + "name": "Dexit network", + "symbol": "DXT", + "decimals": 18 }, "880": { - name: "AMBROS", - symbol: "AMBROS", - decimals: 18, + "name": "AMBROS", + "symbol": "AMBROS", + "decimals": 18 }, "888": { - name: "Wancoin", - symbol: "WAN", - decimals: 18, + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 }, "898": { - name: "MAXI GAS", - symbol: "MGAS", - decimals: 18, + "name": "MAXI GAS", + "symbol": "MGAS", + "decimals": 18 }, "899": { - name: "MAXI GAS", - symbol: "MGAS", - decimals: 18, + "name": "MAXI GAS", + "symbol": "MGAS", + "decimals": 18 }, "900": { - name: "Garizon", - symbol: "GAR", - decimals: 18, + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 }, "901": { - name: "Garizon", - symbol: "GAR", - decimals: 18, + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 }, "902": { - name: "Garizon", - symbol: "GAR", - decimals: 18, + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 }, "903": { - name: "Garizon", - symbol: "GAR", - decimals: 18, + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 }, "909": { - name: "Portal Fantasy Token", - symbol: "PFT", - decimals: 18, + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 }, "910": { - name: "DecentraBone", - symbol: "DBONE", - decimals: 18, + "name": "DecentraBone", + "symbol": "DBONE", + "decimals": 18 }, "911": { - name: "TBTC", - symbol: "TBTC", - decimals: 18, + "name": "TBTC", + "symbol": "TBTC", + "decimals": 18 }, "917": { - name: "Firechain", - symbol: "FIRE", - decimals: 18, + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 }, "919": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "927": { - name: "Yidark", - symbol: "YDK", - decimals: 18, + "name": "Yidark", + "symbol": "YDK", + "decimals": 18 }, "943": { - name: "Test Pulse", - symbol: "tPLS", - decimals: 18, + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 }, "956": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "957": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "963": { - name: "BTCC", - symbol: "BTCC", - decimals: 18, + "name": "BTCC", + "symbol": "BTCC", + "decimals": 18 }, "969": { - name: "Settled EthXY Token", - symbol: "SEXY", - decimals: 18, + "name": "Settled EthXY Token", + "symbol": "SEXY", + "decimals": 18 }, "970": { - name: "Oort", - symbol: "OORT", - decimals: 18, + "name": "Oort", + "symbol": "OORT", + "decimals": 18 }, "971": { - name: "Oort", - symbol: "CCN", - decimals: 18, + "name": "Oort", + "symbol": "CCN", + "decimals": 18 }, "972": { - name: "Oort", - symbol: "CCNA", - decimals: 18, + "name": "Oort", + "symbol": "CCNA", + "decimals": 18 }, "977": { - name: "Nepal Blockchain Network Ether", - symbol: "YETI", - decimals: 18, + "name": "Nepal Blockchain Network Ether", + "symbol": "YETI", + "decimals": 18 }, "979": { - name: "Settled EthXY Token", - symbol: "SEXY", - decimals: 18, + "name": "Settled EthXY Token", + "symbol": "SEXY", + "decimals": 18 }, "980": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "985": { - name: "Memo", - symbol: "CMEMO", - decimals: 18, + "name": "Memo", + "symbol": "CMEMO", + "decimals": 18 }, "989": { - name: "TOP", - symbol: "TOP", - decimals: 6, + "name": "TOP", + "symbol": "TOP", + "decimals": 6 }, "990": { - name: "eLiberty", - symbol: "$EL", - decimals: 18, + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 }, "997": { - name: "5ire Token", - symbol: "5ire", - decimals: 18, + "name": "5ire Token", + "symbol": "5ire", + "decimals": 18 }, "998": { - name: "Lucky", - symbol: "L99", - decimals: 18, + "name": "Lucky", + "symbol": "L99", + "decimals": 18 }, "999": { - name: "Wancoin", - symbol: "WAN", - decimals: 18, + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 }, "1000": { - name: "GCD", - symbol: "GCD", - decimals: 18, + "name": "GCD", + "symbol": "GCD", + "decimals": 18 }, "1001": { - name: "KLAY", - symbol: "KLAY", - decimals: 18, + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 }, "1003": { - name: "Tectum", - symbol: "TET", - decimals: 8, + "name": "Tectum", + "symbol": "TET", + "decimals": 8 }, "1004": { - name: "T-EKTA", - symbol: "T-EKTA", - decimals: 18, + "name": "T-EKTA", + "symbol": "T-EKTA", + "decimals": 18 }, "1007": { - name: "Newton", - symbol: "NEW", - decimals: 18, + "name": "Newton", + "symbol": "NEW", + "decimals": 18 }, "1008": { - name: "Eurus", - symbol: "EUN", - decimals: 18, + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 }, "1009": { - name: "JNFTC", - symbol: "JNFTC", - decimals: 18, + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 }, "1010": { - name: "Evrice", - symbol: "EVC", - decimals: 18, + "name": "Evrice", + "symbol": "EVC", + "decimals": 18 }, "1011": { - name: "Rebus", - symbol: "REBUS", - decimals: 18, + "name": "Rebus", + "symbol": "REBUS", + "decimals": 18 }, "1012": { - name: "Newton", - symbol: "NEW", - decimals: 18, + "name": "Newton", + "symbol": "NEW", + "decimals": 18 }, "1022": { - name: "Sakura", - symbol: "SKU", - decimals: 18, + "name": "Sakura", + "symbol": "SKU", + "decimals": 18 }, "1023": { - name: "Clover", - symbol: "CLV", - decimals: 18, + "name": "Clover", + "symbol": "CLV", + "decimals": 18 }, "1024": { - name: "CLV", - symbol: "CLV", - decimals: 18, + "name": "CLV", + "symbol": "CLV", + "decimals": 18 }, "1028": { - name: "BitTorrent", - symbol: "BTT", - decimals: 18, + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 }, "1030": { - name: "CFX", - symbol: "CFX", - decimals: 18, + "name": "CFX", + "symbol": "CFX", + "decimals": 18 }, "1031": { - name: "PRX", - symbol: "PRX", - decimals: 18, + "name": "PRX", + "symbol": "PRX", + "decimals": 18 }, "1038": { - name: "tBRO", - symbol: "tBRO", - decimals: 18, + "name": "tBRO", + "symbol": "tBRO", + "decimals": 18 }, "1039": { - name: "BRO", - symbol: "BRO", - decimals: 18, + "name": "BRO", + "symbol": "BRO", + "decimals": 18 }, "1073": { - name: "SMR", - symbol: "SMR", - decimals: 18, + "name": "SMR", + "symbol": "SMR", + "decimals": 18 }, "1075": { - name: "IOTA", - symbol: "IOTA", - decimals: 18, + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 }, "1079": { - name: "MINTARA", - symbol: "MNTR", - decimals: 18, + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 }, "1080": { - name: "MINTARA", - symbol: "MNTR", - decimals: 18, + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 }, "1088": { - name: "Metis", - symbol: "METIS", - decimals: 18, + "name": "Metis", + "symbol": "METIS", + "decimals": 18 }, "1089": { - name: "HEART", - symbol: "HEART", - decimals: 18, + "name": "HEART", + "symbol": "HEART", + "decimals": 18 }, "1099": { - name: "MOAC", - symbol: "mc", - decimals: 18, + "name": "MOAC", + "symbol": "mc", + "decimals": 18 }, "1100": { - name: "DYM", - symbol: "DYM", - decimals: 18, + "name": "DYM", + "symbol": "DYM", + "decimals": 18 }, "1101": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1107": { - name: "BLXQ", - symbol: "BLXQ", - decimals: 18, + "name": "BLXQ", + "symbol": "BLXQ", + "decimals": 18 }, "1108": { - name: "BLXQ", - symbol: "BLXQ", - decimals: 18, + "name": "BLXQ", + "symbol": "BLXQ", + "decimals": 18 }, "1111": { - name: "WEMIX", - symbol: "WEMIX", - decimals: 18, + "name": "WEMIX", + "symbol": "WEMIX", + "decimals": 18 }, "1112": { - name: "TestnetWEMIX", - symbol: "tWEMIX", - decimals: 18, + "name": "TestnetWEMIX", + "symbol": "tWEMIX", + "decimals": 18 }, "1113": { - name: "BSquared Token", - symbol: "B2", - decimals: 18, + "name": "BSquared Token", + "symbol": "B2", + "decimals": 18 }, "1115": { - name: "Core Blockchain Testnet Native Token", - symbol: "tCORE", - decimals: 18, + "name": "Core Blockchain Testnet Native Token", + "symbol": "tCORE", + "decimals": 18 }, "1116": { - name: "Core Blockchain Native Token", - symbol: "CORE", - decimals: 18, + "name": "Core Blockchain Native Token", + "symbol": "CORE", + "decimals": 18 }, "1117": { - name: "Dogcoin", - symbol: "DOGS", - decimals: 18, + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 }, "1123": { - name: "Bitcoin", - symbol: "BTC", - decimals: 18, + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 }, "1130": { - name: "DeFiChain", - symbol: "DFI", - decimals: 18, + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 }, "1131": { - name: "DeFiChain", - symbol: "DFI", - decimals: 18, + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 }, "1133": { - name: "DeFiChain Token", - symbol: "DFI", - decimals: 18, + "name": "DeFiChain Token", + "symbol": "DFI", + "decimals": 18 }, "1135": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1138": { - name: "SINSO", - symbol: "SINSO", - decimals: 18, + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 }, "1139": { - name: "MathChain", - symbol: "MATH", - decimals: 18, + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 }, "1140": { - name: "MathChain", - symbol: "MATH", - decimals: 18, + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 }, "1147": { - name: "Flag Testnet", - symbol: "FLAG", - decimals: 18, + "name": "Flag Testnet", + "symbol": "FLAG", + "decimals": 18 }, "1149": { - name: "Plex Native Token", - symbol: "PLEX", - decimals: 18, + "name": "Plex Native Token", + "symbol": "PLEX", + "decimals": 18 }, "1170": { - name: "Origin", - symbol: "UOC", - decimals: 18, + "name": "Origin", + "symbol": "UOC", + "decimals": 18 }, "1177": { - name: "Smart Host Teknoloji TESTNET", - symbol: "tSHT", - decimals: 18, + "name": "Smart Host Teknoloji TESTNET", + "symbol": "tSHT", + "decimals": 18 }, "1188": { - name: "ClubMos", - symbol: "MOS", - decimals: 18, + "name": "ClubMos", + "symbol": "MOS", + "decimals": 18 }, "1197": { - name: "Iora", - symbol: "IORA", - decimals: 18, + "name": "Iora", + "symbol": "IORA", + "decimals": 18 + }, + "1200": { + "name": "CuckooAI", + "symbol": "CAI", + "decimals": 18 }, "1201": { - name: "AVIS", - symbol: "AVIS", - decimals: 18, + "name": "AVIS", + "symbol": "AVIS", + "decimals": 18 }, "1202": { - name: "World Trade Token", - symbol: "WTT", - decimals: 18, + "name": "World Trade Token", + "symbol": "WTT", + "decimals": 18 }, "1209": { - name: "SaitaBlockChain(SBC)", - symbol: "STC", - decimals: 18, + "name": "SaitaBlockChain(SBC)", + "symbol": "STC", + "decimals": 18 }, "1210": { - name: "CuckooAI", - symbol: "CAI", - decimals: 18, + "name": "CuckooAI", + "symbol": "CAI", + "decimals": 18 }, "1213": { - name: "Popcat", - symbol: "POP", - decimals: 18, + "name": "Popcat", + "symbol": "POP", + "decimals": 18 }, "1214": { - name: "EnterCoin", - symbol: "ENTER", - decimals: 18, + "name": "EnterCoin", + "symbol": "ENTER", + "decimals": 18 }, "1221": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, - "1224": { - name: "Hybrid", - symbol: "HYB", - decimals: 18, + "1225": { + "name": "Hybrid", + "symbol": "HYB", + "decimals": 18 }, "1229": { - name: "Exzo", - symbol: "XZO", - decimals: 18, + "name": "Exzo", + "symbol": "XZO", + "decimals": 18 }, "1230": { - name: "Ultron", - symbol: "ULX", - decimals: 18, + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 }, "1231": { - name: "Ultron", - symbol: "ULX", - decimals: 18, + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 }, "1234": { - name: "FITFI", - symbol: "FITFI", - decimals: 18, + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 }, "1235": { - name: "ITX", - symbol: "ITX", - decimals: 18, + "name": "ITX", + "symbol": "ITX", + "decimals": 18 }, "1243": { - name: "ARC", - symbol: "ARC", - decimals: 18, + "name": "ARC", + "symbol": "ARC", + "decimals": 18 }, "1244": { - name: "ARC", - symbol: "ARC", - decimals: 18, + "name": "ARC", + "symbol": "ARC", + "decimals": 18 }, "1246": { - name: "OMCOIN", - symbol: "OM", - decimals: 18, + "name": "OMCOIN", + "symbol": "OM", + "decimals": 18 }, "1248": { - name: "Dogether", - symbol: "dogeth", - decimals: 18, + "name": "Dogether", + "symbol": "dogeth", + "decimals": 18 }, "1252": { - name: "Crazy Internet Coin", - symbol: "CICT", - decimals: 18, + "name": "Crazy Internet Coin", + "symbol": "CICT", + "decimals": 18 }, "1280": { - name: "HALO", - symbol: "HO", - decimals: 18, + "name": "HALO", + "symbol": "HO", + "decimals": 18 }, "1284": { - name: "Glimmer", - symbol: "GLMR", - decimals: 18, + "name": "Glimmer", + "symbol": "GLMR", + "decimals": 18 }, "1285": { - name: "Moonriver", - symbol: "MOVR", - decimals: 18, + "name": "Moonriver", + "symbol": "MOVR", + "decimals": 18 }, "1287": { - name: "Dev", - symbol: "DEV", - decimals: 18, + "name": "Dev", + "symbol": "DEV", + "decimals": 18 }, "1288": { - name: "Rocs", - symbol: "ROC", - decimals: 18, + "name": "Rocs", + "symbol": "ROC", + "decimals": 18 }, "1291": { - name: "Swisstronik", - symbol: "SWTR", - decimals: 18, + "name": "Swisstronik", + "symbol": "SWTR", + "decimals": 18 }, "1311": { - name: "Dos Native Token", - symbol: "DOS", - decimals: 18, + "name": "Dos Native Token", + "symbol": "DOS", + "decimals": 18 }, "1314": { - name: "Alyx Chain Native Token", - symbol: "ALYX", - decimals: 18, + "name": "Alyx Chain Native Token", + "symbol": "ALYX", + "decimals": 18 }, "1319": { - name: "AIA Mainnet", - symbol: "AIA", - decimals: 18, + "name": "AIA Mainnet", + "symbol": "AIA", + "decimals": 18 }, "1320": { - name: "AIA Testnet", - symbol: "AIA", - decimals: 18, + "name": "AIA Testnet", + "symbol": "AIA", + "decimals": 18 }, "1328": { - name: "Sei", - symbol: "SEI", - decimals: 18, + "name": "Sei", + "symbol": "SEI", + "decimals": 18 }, "1329": { - name: "Sei", - symbol: "SEI", - decimals: 18, + "name": "Sei", + "symbol": "SEI", + "decimals": 18 }, "1337": { - name: "Geth Testnet Ether", - symbol: "ETH", - decimals: 18, + "name": "Geth Testnet Ether", + "symbol": "ETH", + "decimals": 18 }, "1338": { - name: "LAVA", - symbol: "LAVA", - decimals: 18, + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 }, "1339": { - name: "LAVA", - symbol: "LAVA", - decimals: 18, + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 }, "1343": { - name: "BLITZ GAS", - symbol: "BGAS", - decimals: 18, + "name": "BLITZ GAS", + "symbol": "BGAS", + "decimals": 18 }, "1353": { - name: "Crazy Internet Coin", - symbol: "CIC", - decimals: 18, + "name": "Crazy Internet Coin", + "symbol": "CIC", + "decimals": 18 }, "1369": { - name: "Zakumi Chain Native Token", - symbol: "ZAFIC", - decimals: 18, + "name": "Zakumi Chain Native Token", + "symbol": "ZAFIC", + "decimals": 18 }, "1370": { - name: "Rama", - symbol: "RAMA", - decimals: 18, + "name": "Rama", + "symbol": "RAMA", + "decimals": 18 }, "1377": { - name: "Rama", - symbol: "tRAMA", - decimals: 18, + "name": "Rama", + "symbol": "tRAMA", + "decimals": 18 }, "1379": { - name: "Kalar", - symbol: "KLC", - decimals: 18, + "name": "Kalar", + "symbol": "KLC", + "decimals": 18 }, "1388": { - name: "SINSO", - symbol: "SINSO", - decimals: 18, + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 }, "1392": { - name: "Joseon Mun", - symbol: "JSM", - decimals: 18, + "name": "Joseon Mun", + "symbol": "JSM", + "decimals": 18 }, "1414": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "1433": { - name: "Rikeza", - symbol: "RIK", - decimals: 18, + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 }, "1440": { - name: "LAS", - symbol: "LAS", - decimals: 18, + "name": "LAS", + "symbol": "LAS", + "decimals": 18 }, "1442": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1452": { - name: "GANG", - symbol: "GANG", - decimals: 18, + "name": "GANG", + "symbol": "GANG", + "decimals": 18 }, "1453": { - name: "Metatime Coin", - symbol: "MTC", - decimals: 18, + "name": "Metatime Coin", + "symbol": "MTC", + "decimals": 18 }, "1455": { - name: "CTEX", - symbol: "CTEX", - decimals: 18, + "name": "CTEX", + "symbol": "CTEX", + "decimals": 18 }, "1490": { - name: "Vitruveo Coin", - symbol: "VTRU", - decimals: 18, + "name": "Vitruveo Coin", + "symbol": "VTRU", + "decimals": 18 }, "1499": { - name: "iDos Games Coin", - symbol: "IGC", - decimals: 18, + "name": "iDos Games Coin", + "symbol": "IGC", + "decimals": 18 }, "1501": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "1506": { - name: "KSX", - symbol: "KSX", - decimals: 18, + "name": "KSX", + "symbol": "KSX", + "decimals": 18 }, "1507": { - name: "KSX", - symbol: "KSX", - decimals: 18, + "name": "KSX", + "symbol": "KSX", + "decimals": 18 }, "1515": { - name: "Beagle", - symbol: "BG", - decimals: 18, + "name": "Beagle", + "symbol": "BG", + "decimals": 18 }, "1559": { - name: "TENET", - symbol: "TENET", - decimals: 18, + "name": "TENET", + "symbol": "TENET", + "decimals": 18 }, "1617": { - name: "Ethereum Inscription", - symbol: "ETINS", - decimals: 18, + "name": "Ethereum Inscription", + "symbol": "ETINS", + "decimals": 18 }, "1618": { - name: "Catecoin", - symbol: "CATE", - decimals: 18, + "name": "Catecoin", + "symbol": "CATE", + "decimals": 18 }, "1620": { - name: "Atheios Ether", - symbol: "ATH", - decimals: 18, + "name": "Atheios Ether", + "symbol": "ATH", + "decimals": 18 }, "1625": { - name: "Gravity", - symbol: "G.", - decimals: 18, + "name": "Gravity", + "symbol": "G.", + "decimals": 18 }, "1657": { - name: "Bitcoin Asset", - symbol: "BTA", - decimals: 18, + "name": "Bitcoin Asset", + "symbol": "BTA", + "decimals": 18 }, "1662": { - name: "Licoin", - symbol: "LCN", - decimals: 18, + "name": "Licoin", + "symbol": "LCN", + "decimals": 18 }, "1663": { - name: "Testnet Zen", - symbol: "tZEN", - decimals: 18, + "name": "Testnet Zen", + "symbol": "tZEN", + "decimals": 18 }, "1686": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "1687": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "1688": { - name: "LUDAN", - symbol: "LUDAN", - decimals: 18, + "name": "LUDAN", + "symbol": "LUDAN", + "decimals": 18 }, "1701": { - name: "ANY", - symbol: "ANY", - decimals: 18, + "name": "ANY", + "symbol": "ANY", + "decimals": 18 }, "1707": { - name: "Jinda", - symbol: "JINDA", - decimals: 18, + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 }, "1708": { - name: "Jinda", - symbol: "JINDA", - decimals: 18, + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 }, "1717": { - name: "Doric Native Token", - symbol: "DRC", - decimals: 18, + "name": "Doric Native Token", + "symbol": "DRC", + "decimals": 18 }, "1718": { - name: "Palette Token", - symbol: "PLT", - decimals: 18, + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 }, "1729": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1740": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "1750": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "1773": { - name: "Grams", - symbol: "GRAMS", - decimals: 18, + "name": "Grams", + "symbol": "GRAMS", + "decimals": 18 }, "1777": { - name: "GANG", - symbol: "GANG", - decimals: 18, + "name": "GANG", + "symbol": "GANG", + "decimals": 18 }, "1789": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1804": { - name: "Climate awaReness Coin", - symbol: "CRC", - decimals: 18, + "name": "Climate awaReness Coin", + "symbol": "CRC", + "decimals": 18 }, "1807": { - name: "Rabbit Analog Test Chain Native Token ", - symbol: "rAna", - decimals: 18, + "name": "Rabbit Analog Test Chain Native Token ", + "symbol": "rAna", + "decimals": 18 }, "1818": { - name: "Cube Chain Native Token", - symbol: "CUBE", - decimals: 18, + "name": "Cube Chain Native Token", + "symbol": "CUBE", + "decimals": 18 }, "1819": { - name: "Cube Chain Test Native Token", - symbol: "CUBET", - decimals: 18, + "name": "Cube Chain Test Native Token", + "symbol": "CUBET", + "decimals": 18 }, "1821": { - name: "RUBY Smart Chain Native Token", - symbol: "RUBY", - decimals: 18, + "name": "RUBY Smart Chain Native Token", + "symbol": "RUBY", + "decimals": 18 }, "1856": { - name: "Teslafunds Ether", - symbol: "TSF", - decimals: 18, + "name": "Teslafunds Ether", + "symbol": "TSF", + "decimals": 18 }, "1875": { - name: "WhiteBIT Coin", - symbol: "WBT", - decimals: 18, + "name": "WhiteBIT Coin", + "symbol": "WBT", + "decimals": 18 }, "1881": { - name: "Gitshock Cartenz", - symbol: "tGTFX", - decimals: 18, + "name": "Gitshock Cartenz", + "symbol": "tGTFX", + "decimals": 18 }, "1890": { - name: "Ethereum", - symbol: "ETH", - decimals: 18, + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 }, "1891": { - name: "Ethereum", - symbol: "ETH", - decimals: 18, + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 }, "1898": { - name: "BOYACoin", - symbol: "BOY", - decimals: 18, + "name": "BOYACoin", + "symbol": "BOY", + "decimals": 18 }, "1904": { - name: "SCN", - symbol: "SCN", - decimals: 18, + "name": "SCN", + "symbol": "SCN", + "decimals": 18 }, "1907": { - name: "Bitci", - symbol: "BITCI", - decimals: 18, + "name": "Bitci", + "symbol": "BITCI", + "decimals": 18 }, "1908": { - name: "Test Bitci", - symbol: "TBITCI", - decimals: 18, + "name": "Test Bitci", + "symbol": "TBITCI", + "decimals": 18 }, "1909": { - name: "Merkle", - symbol: "MRK", - decimals: 18, + "name": "Merkle", + "symbol": "MRK", + "decimals": 18 }, "1911": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1912": { - name: "RUBY Smart Chain Native Token", - symbol: "tRUBY", - decimals: 18, + "name": "RUBY Smart Chain Native Token", + "symbol": "tRUBY", + "decimals": 18 }, "1918": { - name: "UPBEth", - symbol: "UPBEth", - decimals: 18, + "name": "UPBEth", + "symbol": "UPBEth", + "decimals": 18 }, "1945": { - name: "ONUS", - symbol: "ONUS", - decimals: 18, + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 }, "1951": { - name: "DOINX", - symbol: "DOINX", - decimals: 18, + "name": "DOINX", + "symbol": "DOINX", + "decimals": 18 }, "1953": { - name: "Selendra", - symbol: "tSEL", - decimals: 18, + "name": "Selendra", + "symbol": "tSEL", + "decimals": 18 }, "1954": { - name: "Dexilla Native Token", - symbol: "DXZ", - decimals: 18, + "name": "Dexilla Native Token", + "symbol": "DXZ", + "decimals": 18 }, "1956": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "1961": { - name: "Selendra", - symbol: "SEL", - decimals: 18, + "name": "Selendra", + "symbol": "SEL", + "decimals": 18 }, "1967": { - name: "Eleanor Metacoin", - symbol: "MTC", - decimals: 18, + "name": "Eleanor Metacoin", + "symbol": "MTC", + "decimals": 18 }, "1969": { - name: "Super Chain Native Token", - symbol: "TSCS", - decimals: 18, + "name": "Super Chain Native Token", + "symbol": "TSCS", + "decimals": 18 }, "1970": { - name: "Super Chain Native Token", - symbol: "SCS", - decimals: 18, + "name": "Super Chain Native Token", + "symbol": "SCS", + "decimals": 18 }, "1971": { - name: "ATLR", - symbol: "ATLR", - decimals: 18, + "name": "ATLR", + "symbol": "ATLR", + "decimals": 18 }, "1972": { - name: "RedeCoin", - symbol: "REDEV2", - decimals: 18, + "name": "RedeCoin", + "symbol": "REDEV2", + "decimals": 18 }, "1975": { - name: "ONUS", - symbol: "ONUS", - decimals: 18, + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 }, "1984": { - name: "Eurus", - symbol: "EUN", - decimals: 18, + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 }, "1985": { - name: "Tushy Token", - symbol: "TUSHY", - decimals: 18, + "name": "Tushy Token", + "symbol": "TUSHY", + "decimals": 18 }, "1986": { - name: "Tushy Token", - symbol: "TUSHY", - decimals: 18, + "name": "Tushy Token", + "symbol": "TUSHY", + "decimals": 18 }, "1987": { - name: "EtherGem Ether", - symbol: "EGEM", - decimals: 18, + "name": "EtherGem Ether", + "symbol": "EGEM", + "decimals": 18 }, "1992": { - name: "USD Coin", - symbol: "USDC", - decimals: 18, + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 }, "1994": { - name: "EKTA", - symbol: "EKTA", - decimals: 18, + "name": "EKTA", + "symbol": "EKTA", + "decimals": 18 }, "1995": { - name: "EDEXA", - symbol: "EDX", - decimals: 18, + "name": "EDEXA", + "symbol": "EDX", + "decimals": 18 }, "1996": { - name: "DMT", - symbol: "DMT", - decimals: 18, + "name": "DMT", + "symbol": "DMT", + "decimals": 18 + }, + "1997": { + "name": "Kyoto", + "symbol": "KYOTO", + "decimals": 18 }, "1998": { - name: "Kyoto", - symbol: "KYOTO", - decimals: 18, + "name": "Kyoto", + "symbol": "KYOTO", + "decimals": 18 }, "2000": { - name: "Dogecoin", - symbol: "DOGE", - decimals: 18, + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 }, "2001": { - name: "milkAda", - symbol: "mADA", - decimals: 18, + "name": "milkAda", + "symbol": "mADA", + "decimals": 18 }, "2002": { - name: "milkALGO", - symbol: "mALGO", - decimals: 18, + "name": "milkALGO", + "symbol": "mALGO", + "decimals": 18 }, "2004": { - name: "MetaLink", - symbol: "MTL", - decimals: 18, + "name": "MetaLink", + "symbol": "MTL", + "decimals": 18 }, "2008": { - name: "CloudWalk Native Token", - symbol: "CWN", - decimals: 18, + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 }, "2009": { - name: "CloudWalk Native Token", - symbol: "CWN", - decimals: 18, + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 }, "2013": { - name: "GAS", - symbol: "GAS", - decimals: 18, + "name": "GAS", + "symbol": "GAS", + "decimals": 18 }, "2014": { - name: "NOW Coin", - symbol: "NOW", - decimals: 18, + "name": "NOW Coin", + "symbol": "NOW", + "decimals": 18 }, "2016": { - name: "MainnetZ", - symbol: "NetZ", - decimals: 18, + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 }, "2017": { - name: "Telcoin", - symbol: "TEL", - decimals: 18, + "name": "Telcoin", + "symbol": "TEL", + "decimals": 18 }, "2018": { - name: "USD", - symbol: "USD", - decimals: 18, + "name": "USD", + "symbol": "USD", + "decimals": 18 }, "2019": { - name: "USD", - symbol: "USD", - decimals: 18, + "name": "USD", + "symbol": "USD", + "decimals": 18 }, "2020": { - name: "USD", - symbol: "USD", - decimals: 18, + "name": "USD", + "symbol": "USD", + "decimals": 18 }, "2021": { - name: "Edgeware", - symbol: "EDG", - decimals: 18, + "name": "Edgeware", + "symbol": "EDG", + "decimals": 18 }, "2022": { - name: "Testnet EDG", - symbol: "tEDG", - decimals: 18, + "name": "Testnet EDG", + "symbol": "tEDG", + "decimals": 18 }, "2023": { - name: "test-Shuffle", - symbol: "tSFL", - decimals: 18, + "name": "test-Shuffle", + "symbol": "tSFL", + "decimals": 18 }, "2024": { - name: "SWANETH", - symbol: "sETH", - decimals: 18, + "name": "SWANETH", + "symbol": "sETH", + "decimals": 18 }, "2025": { - name: "Rangers Protocol Gas", - symbol: "RPG", - decimals: 18, + "name": "Rangers Protocol Gas", + "symbol": "RPG", + "decimals": 18 }, "2026": { - name: "Edgeless Wrapped Eth", - symbol: "EwEth", - decimals: 18, + "name": "Edgeless Wrapped Eth", + "symbol": "EwEth", + "decimals": 18 }, "2031": { - name: "Centrifuge", - symbol: "CFG", - decimals: 18, + "name": "Centrifuge", + "symbol": "CFG", + "decimals": 18 }, "2032": { - name: "Catalyst CFG", - symbol: "NCFG", - decimals: 18, + "name": "Catalyst CFG", + "symbol": "NCFG", + "decimals": 18 }, "2035": { - name: "Phala", - symbol: "PHA", - decimals: 18, + "name": "Phala", + "symbol": "PHA", + "decimals": 18 }, "2037": { - name: "Shrapgas", - symbol: "SHRAP", - decimals: 18, + "name": "Shrapgas", + "symbol": "SHRAP", + "decimals": 18 }, "2038": { - name: "SHRAPG", - symbol: "SHRAPG", - decimals: 18, + "name": "SHRAPG", + "symbol": "SHRAPG", + "decimals": 18 }, "2039": { - name: "TZERO", - symbol: "TZERO", - decimals: 18, + "name": "TZERO", + "symbol": "TZERO", + "decimals": 18 }, "2040": { - name: "VANRY", - symbol: "VANRY", - decimals: 18, + "name": "VANRY", + "symbol": "VANRY", + "decimals": 18 }, "2043": { - name: "NeuroWeb Token", - symbol: "NEURO", - decimals: 12, + "name": "NeuroWeb Token", + "symbol": "NEURO", + "decimals": 12 }, "2044": { - name: "Shrapnel Gas Token", - symbol: "SHRAPG", - decimals: 18, + "name": "Shrapnel Gas Token", + "symbol": "SHRAPG", + "decimals": 18 }, "2045": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "2047": { - name: "STOS", - symbol: "STOS", - decimals: 18, + "name": "STOS", + "symbol": "STOS", + "decimals": 18 }, "2048": { - name: "STOS", - symbol: "STOS", - decimals: 18, + "name": "STOS", + "symbol": "STOS", + "decimals": 18 }, "2049": { - name: "Movo Smart Chain", - symbol: "MOVO", - decimals: 18, + "name": "Movo Smart Chain", + "symbol": "MOVO", + "decimals": 18 }, "2077": { - name: "Qkacoin", - symbol: "QKA", - decimals: 18, + "name": "Qkacoin", + "symbol": "QKA", + "decimals": 18 }, "2088": { - name: "Altair", - symbol: "AIR", - decimals: 18, + "name": "Altair", + "symbol": "AIR", + "decimals": 18 }, "2100": { - name: "Ecoball Coin", - symbol: "ECO", - decimals: 18, + "name": "Ecoball Coin", + "symbol": "ECO", + "decimals": 18 }, "2101": { - name: "Espuma Coin", - symbol: "ECO", - decimals: 18, + "name": "Espuma Coin", + "symbol": "ECO", + "decimals": 18 }, "2109": { - name: "Sama Token", - symbol: "SAMA", - decimals: 18, + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 }, "2112": { - name: "UCASH", - symbol: "UCASH", - decimals: 18, + "name": "UCASH", + "symbol": "UCASH", + "decimals": 18 }, "2121": { - name: "Catena", - symbol: "CMCX", - decimals: 18, + "name": "Catena", + "symbol": "CMCX", + "decimals": 18 }, "2122": { - name: "METAD", - symbol: "METAD", - decimals: 18, + "name": "METAD", + "symbol": "METAD", + "decimals": 18 }, "2124": { - name: "Metaunit", - symbol: "MEU", - decimals: 18, + "name": "Metaunit", + "symbol": "MEU", + "decimals": 18 }, "2136": { - name: "Dolarz", - symbol: "Dolarz", - decimals: 18, + "name": "Dolarz", + "symbol": "Dolarz", + "decimals": 18 }, "2137": { - name: "USD Coin", - symbol: "USDC", - decimals: 18, + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 }, "2138": { - name: "testEther", - symbol: "tETH", - decimals: 18, + "name": "testEther", + "symbol": "tETH", + "decimals": 18 }, "2140": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "2141": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "2151": { - name: "BOSAGORA", - symbol: "BOA", - decimals: 18, + "name": "BOSAGORA", + "symbol": "BOA", + "decimals": 18 }, "2152": { - name: "FRA", - symbol: "FRA", - decimals: 18, + "name": "FRA", + "symbol": "FRA", + "decimals": 18 }, "2153": { - name: "FRA", - symbol: "FRA", - decimals: 18, + "name": "FRA", + "symbol": "FRA", + "decimals": 18 }, "2154": { - name: "FRA", - symbol: "FRA", - decimals: 18, + "name": "FRA", + "symbol": "FRA", + "decimals": 18 }, "2199": { - name: "Sama Token", - symbol: "SAMA", - decimals: 18, + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 }, "2202": { - name: "Antofy", - symbol: "ABN", - decimals: 18, + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 }, "2203": { - name: "Bitcoin", - symbol: "BTC", - decimals: 18, + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 }, "2213": { - name: "EVA", - symbol: "EVA", - decimals: 18, + "name": "EVA", + "symbol": "EVA", + "decimals": 18 }, "2221": { - name: "TKava", - symbol: "TKAVA", - decimals: 18, + "name": "TKava", + "symbol": "TKAVA", + "decimals": 18 }, "2222": { - name: "Kava", - symbol: "KAVA", - decimals: 18, + "name": "Kava", + "symbol": "KAVA", + "decimals": 18 }, "2223": { - name: "VNDT", - symbol: "VNDT", - decimals: 18, + "name": "VNDT", + "symbol": "VNDT", + "decimals": 18 }, "2241": { - name: "Krest", - symbol: "KRST", - decimals: 18, + "name": "Krest", + "symbol": "KRST", + "decimals": 18 }, "2300": { - name: "BOMB Token", - symbol: "BOMB", - decimals: 18, + "name": "BOMB Token", + "symbol": "BOMB", + "decimals": 18 }, "2306": { - name: "Ebro", - symbol: "ebro", - decimals: 18, + "name": "Ebro", + "symbol": "ebro", + "decimals": 18 }, "2309": { - name: "Arev", - symbol: "ARÉV", - decimals: 18, + "name": "Arev", + "symbol": "ARÉV", + "decimals": 18 }, "2323": { - name: "SMA", - symbol: "tSMA", - decimals: 18, + "name": "SMA", + "symbol": "tSMA", + "decimals": 18 }, "2330": { - name: "Altcoin", - symbol: "ALT", - decimals: 18, + "name": "Altcoin", + "symbol": "ALT", + "decimals": 18 }, "2331": { - name: "RSS3", - symbol: "RSS3", - decimals: 18, + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 }, "2332": { - name: "Soma Native Token", - symbol: "SMA", - decimals: 18, + "name": "Soma Native Token", + "symbol": "SMA", + "decimals": 18 }, "2340": { - name: "Atla", - symbol: "ATLA", - decimals: 18, + "name": "Atla", + "symbol": "ATLA", + "decimals": 18 }, "2342": { - name: "Omnia", - symbol: "OMNIA", - decimals: 18, + "name": "Omnia", + "symbol": "OMNIA", + "decimals": 18 }, "2355": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2358": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "2370": { - name: "Nexis", - symbol: "NZT", - decimals: 18, + "name": "Nexis", + "symbol": "NZT", + "decimals": 18 }, "2399": { - name: "BOMB Token", - symbol: "tBOMB", - decimals: 18, + "name": "BOMB Token", + "symbol": "tBOMB", + "decimals": 18 }, "2400": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "2410": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2415": { - name: "XODEX Native Token", - symbol: "XODEX", - decimals: 18, + "name": "XODEX Native Token", + "symbol": "XODEX", + "decimals": 18 }, "2425": { - name: "King Of Legends", - symbol: "KOL", - decimals: 18, + "name": "King Of Legends", + "symbol": "KOL", + "decimals": 18 }, "2442": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2458": { - name: "Hybrid Chain Native Token", - symbol: "tHRC", - decimals: 18, + "name": "Hybrid Chain Native Token", + "symbol": "tHRC", + "decimals": 18 }, "2468": { - name: "Hybrid Chain Native Token", - symbol: "HRC", - decimals: 18, + "name": "Hybrid Chain Native Token", + "symbol": "HRC", + "decimals": 18 }, "2484": { - name: "Unicorn Ultra Nebulas Testnet", - symbol: "U2U", - decimals: 18, + "name": "Unicorn Ultra Nebulas Testnet", + "symbol": "U2U", + "decimals": 18 }, "2522": { - name: "Frax Ether", - symbol: "frxETH", - decimals: 18, + "name": "Frax Ether", + "symbol": "frxETH", + "decimals": 18 }, "2525": { - name: "Injective", - symbol: "INJ", - decimals: 18, + "name": "Injective", + "symbol": "INJ", + "decimals": 18 }, "2559": { - name: "KorthoChain", - symbol: "KTO", - decimals: 11, + "name": "KorthoChain", + "symbol": "KTO", + "decimals": 11 }, "2569": { - name: "TechPay", - symbol: "TPC", - decimals: 18, + "name": "TechPay", + "symbol": "TPC", + "decimals": 18 }, "2606": { - name: "Climate awaReness Coin", - symbol: "CRC", - decimals: 18, + "name": "Climate awaReness Coin", + "symbol": "CRC", + "decimals": 18 }, "2611": { - name: "Redlight Coin", - symbol: "REDLC", - decimals: 18, + "name": "Redlight Coin", + "symbol": "REDLC", + "decimals": 18 }, "2612": { - name: "EZChain", - symbol: "EZC", - decimals: 18, + "name": "EZChain", + "symbol": "EZC", + "decimals": 18 }, "2613": { - name: "EZChain", - symbol: "EZC", - decimals: 18, + "name": "EZChain", + "symbol": "EZC", + "decimals": 18 }, "2625": { - name: "WhiteBIT Coin", - symbol: "WBT", - decimals: 18, + "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, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2710": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2718": { - name: "KLAOS", - symbol: "KLAOS", - decimals: 18, + "name": "KLAOS", + "symbol": "KLAOS", + "decimals": 18 }, "2730": { - name: "tXR", - symbol: "tXR", - decimals: 18, + "name": "tXR", + "symbol": "tXR", + "decimals": 18 }, "2731": { - name: "TIME", - symbol: "TIME", - decimals: 18, + "name": "TIME", + "symbol": "TIME", + "decimals": 18 }, "2748": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2777": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2810": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2907": { - name: "Elux Chain", - symbol: "ELUX", - decimals: 18, + "name": "Elux Chain", + "symbol": "ELUX", + "decimals": 18 }, "2911": { - name: "TOPIA", - symbol: "TOPIA", - decimals: 18, + "name": "TOPIA", + "symbol": "TOPIA", + "decimals": 18 }, "2941": { - name: "Xenon Testnet", - symbol: "tXEN", - decimals: 18, + "name": "Xenon Testnet", + "symbol": "tXEN", + "decimals": 18 }, "2999": { - name: "BTY", - symbol: "BTY", - decimals: 18, + "name": "BTY", + "symbol": "BTY", + "decimals": 18 }, "3000": { - name: "CPAY", - symbol: "CPAY", - decimals: 18, + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 }, "3001": { - name: "CPAY", - symbol: "CPAY", - decimals: 18, + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 }, "3003": { - name: "Canxium", - symbol: "CAU", - decimals: 18, + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 }, "3011": { - name: "3ULL", - symbol: "3ULL", - decimals: 18, + "name": "3ULL", + "symbol": "3ULL", + "decimals": 18 }, "3031": { - name: "Orlando", - symbol: "ORL", - decimals: 18, + "name": "Orlando", + "symbol": "ORL", + "decimals": 18 }, "3033": { - name: "Rebus", - symbol: "REBUS", - decimals: 18, + "name": "Rebus", + "symbol": "REBUS", + "decimals": 18 }, "3068": { - name: "Bifrost", - symbol: "BFC", - decimals: 18, + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 }, "3073": { - name: "Move", - symbol: "MOVE", - decimals: 18, + "name": "Move", + "symbol": "MOVE", + "decimals": 18 }, "3100": { - name: "IMMU", - symbol: "IMMU", - decimals: 18, + "name": "IMMU", + "symbol": "IMMU", + "decimals": 18 }, "3102": { - name: "VFI", - symbol: "VFI", - decimals: 18, + "name": "VFI", + "symbol": "VFI", + "decimals": 18 }, "3109": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "3110": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "3269": { - name: "Dubxcoin mainnet", - symbol: "DUBX", - decimals: 18, + "name": "Dubxcoin mainnet", + "symbol": "DUBX", + "decimals": 18 }, "3270": { - name: "Dubxcoin testnet", - symbol: "TDUBX", - decimals: 18, + "name": "Dubxcoin testnet", + "symbol": "TDUBX", + "decimals": 18 }, "3306": { - name: "Debounce Network", - symbol: "DB", - decimals: 18, + "name": "Debounce Network", + "symbol": "DB", + "decimals": 18 }, "3331": { - name: "ZCore", - symbol: "ZCR", - decimals: 18, + "name": "ZCore", + "symbol": "ZCR", + "decimals": 18 }, "3333": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "3334": { - name: "Web3Q", - symbol: "W3Q", - decimals: 18, + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 }, "3335": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "3400": { - name: "PRB", - symbol: "PRB", - decimals: 18, + "name": "PRB", + "symbol": "PRB", + "decimals": 18 }, "3424": { - name: "Evolve", - symbol: "EVO", - decimals: 18, + "name": "Evolve", + "symbol": "EVO", + "decimals": 18 }, "3434": { - name: "SCAI", - symbol: "SCAI", - decimals: 18, + "name": "SCAI", + "symbol": "SCAI", + "decimals": 18 }, "3456": { - name: "Bitcoin", - symbol: "BTC", - decimals: 18, + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "3490": { + "name": "GTC", + "symbol": "GTC", + "decimals": 18 }, "3500": { - name: "PRB", - symbol: "PRB", - decimals: 18, + "name": "PRB", + "symbol": "PRB", + "decimals": 18 }, "3501": { - name: "JFIN Coin", - symbol: "JFIN", - decimals: 18, + "name": "JFIN Coin", + "symbol": "JFIN", + "decimals": 18 }, "3601": { - name: "pando-token", - symbol: "PTX", - decimals: 18, + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 }, "3602": { - name: "pando-token", - symbol: "PTX", - decimals: 18, + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 }, "3630": { - name: "Tycooncoin", - symbol: "TYCO", - decimals: 18, + "name": "Tycooncoin", + "symbol": "TYCO", + "decimals": 18 }, "3636": { - name: "Botanix", - symbol: "BTC", - decimals: 18, + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 }, "3637": { - name: "Botanix", - symbol: "BTC", - decimals: 18, + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 }, "3639": { - name: "ISLAMICOIN", - symbol: "ISLAMI", - decimals: 18, + "name": "ISLAMICOIN", + "symbol": "ISLAMI", + "decimals": 18 + }, + "3645": { + "name": "ISLAMICOIN", + "symbol": "ISLAMI", + "decimals": 18 }, "3666": { - name: "J", - symbol: "J", - decimals: 18, + "name": "J", + "symbol": "J", + "decimals": 18 }, "3690": { - name: "Bittex", - symbol: "BTX", - decimals: 18, + "name": "Bittex", + "symbol": "BTX", + "decimals": 18 }, "3693": { - name: "Empire", - symbol: "EMPIRE", - decimals: 18, + "name": "Empire", + "symbol": "EMPIRE", + "decimals": 18 }, "3698": { - name: "SenjePowers", - symbol: "SPC", - decimals: 18, + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 }, "3699": { - name: "SenjePowers", - symbol: "SPC", - decimals: 18, + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 }, "3737": { - name: "Crossbell Token", - symbol: "CSB", - decimals: 18, + "name": "Crossbell Token", + "symbol": "CSB", + "decimals": 18 }, "3776": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "3797": { - name: "AlveyCoin", - symbol: "ALV", - decimals: 18, + "name": "AlveyCoin", + "symbol": "ALV", + "decimals": 18 }, "3799": { - name: "Testnet Tangle Network Token", - symbol: "tTNT", - decimals: 18, + "name": "Testnet Tangle Network Token", + "symbol": "tTNT", + "decimals": 18 }, "3885": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "3888": { - name: "KalyCoin", - symbol: "KLC", - decimals: 18, + "name": "KalyCoin", + "symbol": "KLC", + "decimals": 18 }, "3889": { - name: "KalyCoin", - symbol: "KLC", - decimals: 18, + "name": "KalyCoin", + "symbol": "KLC", + "decimals": 18 }, "3912": { - name: "DRAC", - symbol: "DRAC", - decimals: 18, + "name": "DRAC", + "symbol": "DRAC", + "decimals": 18 }, "3939": { - name: "DOS", - symbol: "DOS", - decimals: 18, + "name": "DOS", + "symbol": "DOS", + "decimals": 18 }, "3966": { - name: "DYNO Token", - symbol: "DYNO", - decimals: 18, + "name": "DYNO Token", + "symbol": "DYNO", + "decimals": 18 }, "3967": { - name: "DYNO Token", - symbol: "tDYNO", - decimals: 18, + "name": "DYNO Token", + "symbol": "tDYNO", + "decimals": 18 }, "3993": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "3999": { - name: "YCC", - symbol: "YCC", - decimals: 18, + "name": "YCC", + "symbol": "YCC", + "decimals": 18 }, "4000": { - name: "OZONE", - symbol: "OZO", - decimals: 18, + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 }, "4001": { - name: "Peperium Chain Testnet", - symbol: "PERIUM", - decimals: 18, + "name": "Peperium Chain Testnet", + "symbol": "PERIUM", + "decimals": 18 }, "4002": { - name: "Fantom", - symbol: "FTM", - decimals: 18, + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 }, "4003": { - name: "XN", - symbol: "XN", - decimals: 18, + "name": "XN", + "symbol": "XN", + "decimals": 18 }, "4040": { - name: "Carbonium", - symbol: "tCBR", - decimals: 18, + "name": "Carbonium", + "symbol": "tCBR", + "decimals": 18 }, "4048": { - name: "GP Token", - symbol: "GP", - decimals: 18, + "name": "GP Token", + "symbol": "GP", + "decimals": 18 }, "4058": { - name: "FTN", - symbol: "FTN", - decimals: 18, + "name": "FTN", + "symbol": "FTN", + "decimals": 18 }, "4061": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "4062": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "4078": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "4080": { - name: "Tobe Coin", - symbol: "TBC", - decimals: 18, + "name": "Tobe Coin", + "symbol": "TBC", + "decimals": 18 }, "4090": { - name: "FTN", - symbol: "FTN", - decimals: 18, + "name": "FTN", + "symbol": "FTN", + "decimals": 18 }, "4096": { - name: "BNI", - symbol: "$BNI", - decimals: 18, + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 }, "4099": { - name: "BNI", - symbol: "$BNI", - decimals: 18, + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 }, "4102": { - name: "testAIOZ", - symbol: "AIOZ", - decimals: 18, + "name": "testAIOZ", + "symbol": "AIOZ", + "decimals": 18 }, "4139": { - name: "HEART", - symbol: "HEART", - decimals: 18, + "name": "HEART", + "symbol": "HEART", + "decimals": 18 }, "4141": { - name: "Tipboxcoin", - symbol: "TPBX", - decimals: 18, + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 }, "4157": { - name: "XFI", - symbol: "XFI", - decimals: 18, + "name": "XFI", + "symbol": "XFI", + "decimals": 18 }, "4181": { - name: "PHI", - symbol: "Φ", - decimals: 18, + "name": "PHI", + "symbol": "Φ", + "decimals": 18 }, "4200": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "4201": { - name: "TestLYX", - symbol: "LYXt", - decimals: 18, + "name": "TestLYX", + "symbol": "LYXt", + "decimals": 18 }, "4202": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "4242": { - name: "Nexi", - symbol: "NEXI", - decimals: 18, + "name": "Nexi", + "symbol": "NEXI", + "decimals": 18 }, "4243": { - name: "NexiV2", - symbol: "NEXI", - decimals: 18, + "name": "NexiV2", + "symbol": "NEXI", + "decimals": 18 }, "4337": { - name: "Beam", - symbol: "BEAM", - decimals: 18, + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 }, "4400": { - name: "Credit", - symbol: "CREDIT", - decimals: 18, + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 }, "4444": { - name: "Htmlcoin", - symbol: "HTML", - decimals: 8, + "name": "Htmlcoin", + "symbol": "HTML", + "decimals": 8 }, "4460": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "4488": { - name: "Hydra", - symbol: "HYDRA", - decimals: 18, + "name": "Hydra", + "symbol": "HYDRA", + "decimals": 18 }, "4544": { - name: "Emoney Network", - symbol: "EMYC", - decimals: 18, + "name": "Emoney Network", + "symbol": "EMYC", + "decimals": 18 }, "4613": { - name: "VERY", - symbol: "VERY", - decimals: 18, + "name": "VERY", + "symbol": "VERY", + "decimals": 18 }, "4653": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "4689": { - name: "IoTeX", - symbol: "IOTX", - decimals: 18, + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 }, "4690": { - name: "IoTeX", - symbol: "IOTX", - decimals: 18, + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 }, "4759": { - name: "MEVerse", - symbol: "MEV", - decimals: 18, + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 }, "4777": { - name: "BlackFort Testnet Token", - symbol: "TBXN", - decimals: 18, + "name": "BlackFort Testnet Token", + "symbol": "TBXN", + "decimals": 18 }, "4893": { - name: "Globel Chain", - symbol: "GC", - decimals: 18, + "name": "Globel Chain", + "symbol": "GC", + "decimals": 18 }, "4918": { - name: "Venidium", - symbol: "XVM", - decimals: 18, + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 }, "4919": { - name: "Venidium", - symbol: "XVM", - decimals: 18, + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 }, "4999": { - name: "BlackFort Token", - symbol: "BXN", - decimals: 18, + "name": "BlackFort Token", + "symbol": "BXN", + "decimals": 18 }, "5000": { - name: "Mantle", - symbol: "MNT", - decimals: 18, + "name": "Mantle", + "symbol": "MNT", + "decimals": 18 }, "5001": { - name: "Testnet Mantle", - symbol: "MNT", - decimals: 18, + "name": "Testnet Mantle", + "symbol": "MNT", + "decimals": 18 }, "5002": { - name: "UNIT", - symbol: "UNIT", - decimals: 18, + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 }, "5003": { - name: "Sepolia Mantle", - symbol: "MNT", - decimals: 18, + "name": "Sepolia Mantle", + "symbol": "MNT", + "decimals": 18 }, "5005": { - name: "UNIT", - symbol: "UNIT", - decimals: 18, + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 }, "5039": { - name: "ONIGIRI", - symbol: "ONGR", - decimals: 18, + "name": "ONIGIRI", + "symbol": "ONGR", + "decimals": 18 }, "5040": { - name: "ONIGIRI", - symbol: "ONGR", - decimals: 18, + "name": "ONIGIRI", + "symbol": "ONGR", + "decimals": 18 }, "5051": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "5100": { - name: "S-Ether", - symbol: "ETH", - decimals: 18, + "name": "S-Ether", + "symbol": "ETH", + "decimals": 18 }, "5101": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "5102": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "5103": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "5104": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "5105": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "5106": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "5112": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "5165": { - name: "FTN", - symbol: "FTN", - decimals: 18, + "name": "FTN", + "symbol": "FTN", + "decimals": 18 }, "5169": { - name: "Service Unit Token", - symbol: "SU", - decimals: 18, + "name": "Service Unit Token", + "symbol": "SU", + "decimals": 18 }, "5177": { - name: "TLChain Network", - symbol: "TLC", - decimals: 18, + "name": "TLChain Network", + "symbol": "TLC", + "decimals": 18 }, "5197": { - name: "EraSwap", - symbol: "ES", - decimals: 18, + "name": "EraSwap", + "symbol": "ES", + "decimals": 18 }, "5234": { - name: "eHMND", - symbol: "eHMND", - decimals: 18, + "name": "eHMND", + "symbol": "eHMND", + "decimals": 18 }, "5315": { - name: "UZMI", - symbol: "UZMI", - decimals: 18, + "name": "UZMI", + "symbol": "UZMI", + "decimals": 18 }, "5317": { - name: "TestBSC", - symbol: "tBNB", - decimals: 18, + "name": "TestBSC", + "symbol": "tBNB", + "decimals": 18 }, "5321": { - name: "ITX", - symbol: "ITX", - decimals: 18, + "name": "ITX", + "symbol": "ITX", + "decimals": 18 }, "5353": { - name: "Tritanium Native Token", - symbol: "tTRN", - decimals: 18, + "name": "Tritanium Native Token", + "symbol": "tTRN", + "decimals": 18 }, "5372": { - name: "Setl", - symbol: "SETL", - decimals: 18, + "name": "Setl", + "symbol": "SETL", + "decimals": 18 }, "5424": { - name: "EDEXA", - symbol: "EDX", - decimals: 18, + "name": "EDEXA", + "symbol": "EDX", + "decimals": 18 }, "5439": { - name: "EGAX", - symbol: "EGAX", - decimals: 18, + "name": "EGAX", + "symbol": "EGAX", + "decimals": 18 }, "5522": { - name: "VEX EVM TESTNET", - symbol: "VEX", - decimals: 18, + "name": "VEX EVM TESTNET", + "symbol": "VEX", + "decimals": 18 }, "5551": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "5555": { - name: "Oasys", - symbol: "OAS", - decimals: 18, + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 }, "5611": { - name: "BNB Chain Native Token", - symbol: "tBNB", - decimals: 18, + "name": "BNB Chain Native Token", + "symbol": "tBNB", + "decimals": 18 }, "5615": { - name: "tARC", - symbol: "tARC", - decimals: 18, + "name": "tARC", + "symbol": "tARC", + "decimals": 18 }, "5616": { - name: "Test Arct", - symbol: "tARCT", - decimals: 18, + "name": "Test Arct", + "symbol": "tARCT", + "decimals": 18 }, "5656": { - name: "QIE Blockchain", - symbol: "QIE", - decimals: 18, + "name": "QIE Blockchain", + "symbol": "QIE", + "decimals": 18 }, "5675": { - name: "Test Filecoin", - symbol: "tFIL", - decimals: 18, + "name": "Test Filecoin", + "symbol": "tFIL", + "decimals": 18 }, "5678": { - name: "TANGO", - symbol: "TANGO", - decimals: 18, + "name": "TANGO", + "symbol": "TANGO", + "decimals": 18 }, "5700": { - name: "Testnet Syscoin", - symbol: "tSYS", - decimals: 18, + "name": "Testnet Syscoin", + "symbol": "tSYS", + "decimals": 18 }, "5729": { - name: "Hik Token", - symbol: "HIK", - decimals: 18, + "name": "Hik Token", + "symbol": "HIK", + "decimals": 18 }, "5758": { - name: "SatoshiChain Coin", - symbol: "SATS", - decimals: 18, + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 }, "5777": { - name: "Ganache Test Ether", - symbol: "ETH", - decimals: 18, + "name": "Ganache Test Ether", + "symbol": "ETH", + "decimals": 18 }, "5845": { - name: "Tangle", - symbol: "TNT", - decimals: 18, + "name": "Tangle", + "symbol": "TNT", + "decimals": 18 }, "5851": { - name: "ONG", - symbol: "ONG", - decimals: 18, + "name": "ONG", + "symbol": "ONG", + "decimals": 18 }, "5869": { - name: "Rubid", - symbol: "RBD", - decimals: 18, + "name": "Rubid", + "symbol": "RBD", + "decimals": 18 }, "6000": { - name: "BounceBit", - symbol: "BB", - decimals: 18, + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 }, "6001": { - name: "BounceBit", - symbol: "BB", - decimals: 18, + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 }, "6065": { - name: "TRES", - symbol: "TRES", - decimals: 18, + "name": "TRES", + "symbol": "TRES", + "decimals": 18 }, "6066": { - name: "TRES", - symbol: "TRES", - decimals: 18, + "name": "TRES", + "symbol": "TRES", + "decimals": 18 }, "6102": { - name: "CC", - symbol: "tCC", - decimals: 18, + "name": "CC", + "symbol": "tCC", + "decimals": 18 }, "6118": { - name: "UPTN", - symbol: "UPTN", - decimals: 18, + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 }, "6119": { - name: "UPTN", - symbol: "UPTN", - decimals: 18, + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 }, "6321": { - name: "test-EAura", - symbol: "eAura", - decimals: 18, + "name": "test-EAura", + "symbol": "eAura", + "decimals": 18 }, "6322": { - name: "Aura", - symbol: "AURA", - decimals: 18, + "name": "Aura", + "symbol": "AURA", + "decimals": 18 }, "6363": { - name: "Digit Coin", - symbol: "DGC", - decimals: 18, + "name": "Digit Coin", + "symbol": "DGC", + "decimals": 18 }, "6502": { - name: "Peerpay", - symbol: "P2P", - decimals: 18, + "name": "Peerpay", + "symbol": "P2P", + "decimals": 18 }, "6552": { - name: "Scolcoin", - symbol: "SCOL", - decimals: 18, + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 }, "6565": { - name: "FOX Native Token", - symbol: "tFOX", - decimals: 18, + "name": "FOX Native Token", + "symbol": "tFOX", + "decimals": 18 }, "6626": { - name: "Pixie Chain Native Token", - symbol: "PIX", - decimals: 18, + "name": "Pixie Chain Native Token", + "symbol": "PIX", + "decimals": 18 }, "6660": { - name: "Latest", - symbol: "LATEST", - decimals: 18, + "name": "Latest", + "symbol": "LATEST", + "decimals": 18 }, "6661": { - name: "Cybria", - symbol: "CYBA", - decimals: 18, + "name": "Cybria", + "symbol": "CYBA", + "decimals": 18 }, "6666": { - name: "Cybria", - symbol: "CYBA", - decimals: 18, + "name": "Cybria", + "symbol": "CYBA", + "decimals": 18 }, "6688": { - name: "Eris", - symbol: "ERIS", - decimals: 18, + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 }, "6699": { - name: "OX", - symbol: "OX", - decimals: 18, + "name": "OX", + "symbol": "OX", + "decimals": 18 }, "6701": { - name: "PAXB", - symbol: "PAXB", - decimals: 18, + "name": "PAXB", + "symbol": "PAXB", + "decimals": 18 }, "6779": { - name: "compverse", - symbol: "CPV", - decimals: 18, + "name": "compverse", + "symbol": "CPV", + "decimals": 18 }, "6789": { - name: "Standard in Gold", - symbol: "STAND", - decimals: 18, + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 }, "6868": { - name: "POOLS Native Token", - symbol: "POOLS", - decimals: 18, + "name": "POOLS Native Token", + "symbol": "POOLS", + "decimals": 18 }, "6969": { - name: "Tomb", - symbol: "TOMB", - decimals: 18, + "name": "Tomb", + "symbol": "TOMB", + "decimals": 18 }, "6999": { - name: "PSC", - symbol: "PSC", - decimals: 18, + "name": "PSC", + "symbol": "PSC", + "decimals": 18 }, "7000": { - name: "Zeta", - symbol: "ZETA", - decimals: 18, + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 }, "7001": { - name: "Zeta", - symbol: "ZETA", - decimals: 18, + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 }, "7007": { - name: "BST Chain", - symbol: "BSTC", - decimals: 18, + "name": "BST Chain", + "symbol": "BSTC", + "decimals": 18 }, "7027": { - name: "Ella", - symbol: "ELLA", - decimals: 18, + "name": "Ella", + "symbol": "ELLA", + "decimals": 18 }, "7070": { - name: "Planq", - symbol: "PLQ", - decimals: 18, + "name": "Planq", + "symbol": "PLQ", + "decimals": 18 }, "7077": { - name: "Planq", - symbol: "tPLQ", - decimals: 18, + "name": "Planq", + "symbol": "tPLQ", + "decimals": 18 }, "7100": { - name: "Dai Stablecoin", - symbol: "DAI", - decimals: 18, + "name": "Dai Stablecoin", + "symbol": "DAI", + "decimals": 18 }, "7118": { - name: "Help The Homeless Coin", - symbol: "HTH", - decimals: 18, + "name": "Help The Homeless Coin", + "symbol": "HTH", + "decimals": 18 }, "7171": { - name: "BITROCK", - symbol: "BROCK", - decimals: 18, + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 }, "7300": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "7331": { - name: "KLYNTAR", - symbol: "KLY", - decimals: 18, + "name": "KLYNTAR", + "symbol": "KLY", + "decimals": 18 }, "7332": { - name: "Zencash", - symbol: "ZEN", - decimals: 18, + "name": "Zencash", + "symbol": "ZEN", + "decimals": 18 }, "7341": { - name: "Shyft", - symbol: "SHYFT", - decimals: 18, + "name": "Shyft", + "symbol": "SHYFT", + "decimals": 18 }, "7484": { - name: "Raba", - symbol: "RABA", - decimals: 18, + "name": "Raba", + "symbol": "RABA", + "decimals": 18 }, "7518": { - name: "MEVerse", - symbol: "MEV", - decimals: 18, + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 }, "7560": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "7575": { - name: "Testnet ADIL", - symbol: "ADIL", - decimals: 18, + "name": "Testnet ADIL", + "symbol": "ADIL", + "decimals": 18 }, "7576": { - name: "ADIL", - symbol: "ADIL", - decimals: 18, + "name": "ADIL", + "symbol": "ADIL", + "decimals": 18 }, "7668": { - name: "XRP", - symbol: "XRP", - decimals: 6, + "name": "XRP", + "symbol": "XRP", + "decimals": 6 }, "7672": { - name: "XRP", - symbol: "XRP", - decimals: 6, + "name": "XRP", + "symbol": "XRP", + "decimals": 6 }, "7700": { - name: "Canto", - symbol: "CANTO", - decimals: 18, + "name": "Canto", + "symbol": "CANTO", + "decimals": 18 }, "7701": { - name: "Testnet Canto", - symbol: "CANTO", - decimals: 18, + "name": "Testnet Canto", + "symbol": "CANTO", + "decimals": 18 }, "7771": { - name: "BITROCK", - symbol: "BROCK", - decimals: 18, + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 }, "7775": { - name: "GDCC", - symbol: "GDCC", - decimals: 18, + "name": "GDCC", + "symbol": "GDCC", + "decimals": 18 }, "7777": { - name: "Nano Machines", - symbol: "NMAC", - decimals: 18, + "name": "Nano Machines", + "symbol": "NMAC", + "decimals": 18 }, "7778": { - name: "ORENIUM", - symbol: "ORE", - decimals: 18, + "name": "ORENIUM", + "symbol": "ORE", + "decimals": 18 }, "7798": { - name: "USDT Testnet", - symbol: "USDT", - decimals: 18, + "name": "USDT Testnet", + "symbol": "USDT", + "decimals": 18 }, "7860": { - name: "MAAL", - symbol: "MAAL", - decimals: 18, + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 }, "7878": { - name: "Hazlor Test Coin", - symbol: "TSCAS", - decimals: 18, + "name": "Hazlor Test Coin", + "symbol": "TSCAS", + "decimals": 18 }, "7887": { - name: "Ethereum", - symbol: "ETH", - decimals: 18, + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 }, "7895": { - name: "ARD", - symbol: "tARD", - decimals: 18, + "name": "ARD", + "symbol": "tARD", + "decimals": 18 }, "7923": { - name: "Dot Blox", - symbol: "DTBX", - decimals: 18, + "name": "Dot Blox", + "symbol": "DTBX", + "decimals": 18 }, "7924": { - name: "MO", - symbol: "MO", - decimals: 18, + "name": "MO", + "symbol": "MO", + "decimals": 18 }, "7979": { - name: "DOS", - symbol: "DOS", - decimals: 18, + "name": "DOS", + "symbol": "DOS", + "decimals": 18 }, "8000": { - name: "Tele", - symbol: "TELE", - decimals: 18, + "name": "Tele", + "symbol": "TELE", + "decimals": 18 }, "8001": { - name: "Tele", - symbol: "TELE", - decimals: 18, + "name": "Tele", + "symbol": "TELE", + "decimals": 18 }, "8029": { - name: "MDGL Token", - symbol: "MDGLT", - decimals: 18, + "name": "MDGL Token", + "symbol": "MDGLT", + "decimals": 18 }, "8047": { - name: "Best Of All Time Token", - symbol: "BOAT", - decimals: 18, + "name": "Best Of All Time Token", + "symbol": "BOAT", + "decimals": 18 }, "8054": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "8080": { - name: "Shardeum SHM", - symbol: "SHM", - decimals: 18, + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 }, "8081": { - name: "Shardeum SHM", - symbol: "SHM", - decimals: 18, + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 }, "8082": { - name: "Shardeum SHM", - symbol: "SHM", - decimals: 18, + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 }, "8086": { - name: "Bitcoin", - symbol: "BTC", - decimals: 18, + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 }, "8087": { - name: "E-Dollar", - symbol: "USD", - decimals: 18, + "name": "E-Dollar", + "symbol": "USD", + "decimals": 18 }, "8098": { - name: "StreamuX", - symbol: "SmuX", - decimals: 18, + "name": "StreamuX", + "symbol": "SmuX", + "decimals": 18 }, "8131": { - name: "Qitmeer Testnet", - symbol: "MEER-T", - decimals: 18, + "name": "Qitmeer Testnet", + "symbol": "MEER-T", + "decimals": 18 }, "8132": { - name: "Qitmeer Mixnet", - symbol: "MEER-M", - decimals: 18, + "name": "Qitmeer Mixnet", + "symbol": "MEER-M", + "decimals": 18 }, "8133": { - name: "Qitmeer Privnet", - symbol: "MEER-P", - decimals: 18, + "name": "Qitmeer Privnet", + "symbol": "MEER-P", + "decimals": 18 }, "8134": { - name: "Amana Mainnet", - symbol: "MEER", - decimals: 18, + "name": "Amana Mainnet", + "symbol": "MEER", + "decimals": 18 }, "8135": { - name: "Flana Mainnet", - symbol: "MEER", - decimals: 18, + "name": "Flana Mainnet", + "symbol": "MEER", + "decimals": 18 }, "8136": { - name: "Mizana Mainnet", - symbol: "MEER", - decimals: 18, + "name": "Mizana Mainnet", + "symbol": "MEER", + "decimals": 18 }, "8181": { - name: "Testnet BeOne Chain", - symbol: "tBOC", - decimals: 18, + "name": "Testnet BeOne Chain", + "symbol": "tBOC", + "decimals": 18 }, "8192": { - name: "TQF", - symbol: "TQF", - decimals: 18, + "name": "TQF", + "symbol": "TQF", + "decimals": 18 }, "8194": { - name: "tTQF", - symbol: "TTQF", - decimals: 18, + "name": "tTQF", + "symbol": "TTQF", + "decimals": 18 }, "8217": { - name: "KLAY", - symbol: "KLAY", - decimals: 18, + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 }, "8227": { - name: "FUEL", - symbol: "FUEL", - decimals: 18, + "name": "FUEL", + "symbol": "FUEL", + "decimals": 18 }, "8272": { - name: "BLOCKTON", - symbol: "BTON", - decimals: 18, + "name": "BLOCKTON", + "symbol": "BTON", + "decimals": 18 }, "8285": { - name: "Kortho Test", - symbol: "KTO", - decimals: 11, + "name": "Kortho Test", + "symbol": "KTO", + "decimals": 11 }, "8329": { - name: "Lorenzo stBTC", - symbol: "stBTC", - decimals: 18, + "name": "Lorenzo stBTC", + "symbol": "stBTC", + "decimals": 18 }, "8387": { - name: "Functionally Universal Coin Kind", - symbol: "FUCK", - decimals: 18, + "name": "Functionally Universal Coin Kind", + "symbol": "FUCK", + "decimals": 18 }, "8453": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "8654": { - name: "Toki", - symbol: "TOKI", - decimals: 18, + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 }, "8655": { - name: "Toki", - symbol: "TOKI", - decimals: 18, + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 }, "8668": { - name: "Hela HLUSD", - symbol: "HLUSD", - decimals: 18, + "name": "Hela HLUSD", + "symbol": "HLUSD", + "decimals": 18 }, "8723": { - name: "TOOL Global", - symbol: "OLO", - decimals: 18, + "name": "TOOL Global", + "symbol": "OLO", + "decimals": 18 }, "8724": { - name: "TOOL Global", - symbol: "OLO", - decimals: 18, + "name": "TOOL Global", + "symbol": "OLO", + "decimals": 18 }, "8726": { - name: "Storagechain", - symbol: "STOR", - decimals: 18, + "name": "Storagechain", + "symbol": "STOR", + "decimals": 18 }, "8727": { - name: "Storagechain", - symbol: "STOR", - decimals: 18, + "name": "Storagechain", + "symbol": "STOR", + "decimals": 18 }, "8738": { - name: "Alph Network", - symbol: "ALPH", - decimals: 18, + "name": "Alph Network", + "symbol": "ALPH", + "decimals": 18 }, "8768": { - name: "TMY", - symbol: "TMY", - decimals: 18, + "name": "TMY", + "symbol": "TMY", + "decimals": 18 }, "8822": { - name: "IOTA", - symbol: "IOTA", - decimals: 18, + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 }, "8844": { - name: "tHydra", - symbol: "tHYDRA", - decimals: 18, + "name": "tHydra", + "symbol": "tHYDRA", + "decimals": 18 }, "8848": { - name: "MARO", - symbol: "MARO", - decimals: 18, + "name": "MARO", + "symbol": "MARO", + "decimals": 18 }, "8866": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "8880": { - name: "Unique", - symbol: "UNQ", - decimals: 18, + "name": "Unique", + "symbol": "UNQ", + "decimals": 18 }, "8881": { - name: "Quartz", - symbol: "QTZ", - decimals: 18, + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 }, "8882": { - name: "Opal", - symbol: "UNQ", - decimals: 18, + "name": "Opal", + "symbol": "UNQ", + "decimals": 18 }, "8883": { - name: "Quartz", - symbol: "QTZ", - decimals: 18, + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 }, "8888": { - name: "XETA", - symbol: "XETA", - decimals: 18, + "name": "XETA", + "symbol": "XETA", + "decimals": 18 }, "8889": { - name: "VSC", - symbol: "VSC", - decimals: 18, + "name": "VSC", + "symbol": "VSC", + "decimals": 18 }, "8890": { - name: "ORENIUM", - symbol: "tORE", - decimals: 18, + "name": "ORENIUM", + "symbol": "tORE", + "decimals": 18 }, "8898": { - name: "Mammoth Token", - symbol: "MMT", - decimals: 18, + "name": "Mammoth Token", + "symbol": "MMT", + "decimals": 18 }, "8899": { - name: "JIBCOIN", - symbol: "JBC", - decimals: 18, + "name": "JIBCOIN", + "symbol": "JBC", + "decimals": 18 }, "8911": { - name: "ALG", - symbol: "ALG", - decimals: 18, + "name": "ALG", + "symbol": "ALG", + "decimals": 18 }, "8912": { - name: "ALG", - symbol: "ALG", - decimals: 18, + "name": "ALG", + "symbol": "ALG", + "decimals": 18 }, "8921": { - name: "ALG", - symbol: "ALG", - decimals: 18, + "name": "ALG", + "symbol": "ALG", + "decimals": 18 }, "8922": { - name: "ALG", - symbol: "ALG", - decimals: 18, + "name": "ALG", + "symbol": "ALG", + "decimals": 18 }, "8989": { - name: "Giant Mammoth Coin", - symbol: "GMMT", - decimals: 18, + "name": "Giant Mammoth Coin", + "symbol": "GMMT", + "decimals": 18 }, "8995": { - name: "BERG", - symbol: "U+25B3", - decimals: 18, + "name": "BERG", + "symbol": "U+25B3", + "decimals": 18 }, "9000": { - name: "test-Evmos", - symbol: "tEVMOS", - decimals: 18, + "name": "test-Evmos", + "symbol": "tEVMOS", + "decimals": 18 }, "9001": { - name: "Evmos", - symbol: "EVMOS", - decimals: 18, + "name": "Evmos", + "symbol": "EVMOS", + "decimals": 18 }, "9007": { - name: "Shido Testnet Token", - symbol: "SHIDO", - decimals: 18, + "name": "Shido Testnet Token", + "symbol": "SHIDO", + "decimals": 18 }, "9008": { - name: "Shido Mainnet Token", - symbol: "SHIDO", - decimals: 18, + "name": "Shido Mainnet Token", + "symbol": "SHIDO", + "decimals": 18 }, "9012": { - name: "BerylBit Chain Native Token", - symbol: "BRB", - decimals: 18, + "name": "BerylBit Chain Native Token", + "symbol": "BRB", + "decimals": 18 }, "9024": { - name: "Nexa Testnet Token", - symbol: "NEXB", - decimals: 18, + "name": "Nexa Testnet Token", + "symbol": "NEXB", + "decimals": 18 }, "9025": { - name: "Nexa Mainnet Token", - symbol: "NEXB", - decimals: 18, + "name": "Nexa Mainnet Token", + "symbol": "NEXB", + "decimals": 18 }, "9100": { - name: "GN Coin", - symbol: "GNC", - decimals: 18, + "name": "GN Coin", + "symbol": "GNC", + "decimals": 18 }, "9223": { - name: "Codefin", - symbol: "COF", - decimals: 18, + "name": "Codefin", + "symbol": "COF", + "decimals": 18 }, "9339": { - name: "Dogcoin", - symbol: "DOGS", - decimals: 18, + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 }, "9393": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "9395": { - name: "MTHN", - symbol: "MTHN", - decimals: 18, + "name": "MTHN", + "symbol": "MTHN", + "decimals": 18 }, "9527": { - name: "Rangers Protocol Gas", - symbol: "tRPG", - decimals: 18, + "name": "Rangers Protocol Gas", + "symbol": "tRPG", + "decimals": 18 }, "9528": { - name: "QET", - symbol: "QET", - decimals: 18, + "name": "QET", + "symbol": "QET", + "decimals": 18 }, "9559": { - name: "Neonlink Native Token", - symbol: "tNEON", - decimals: 18, + "name": "Neonlink Native Token", + "symbol": "tNEON", + "decimals": 18 }, "9700": { - name: "Oort", - symbol: "OORT", - decimals: 18, + "name": "Oort", + "symbol": "OORT", + "decimals": 18 }, "9728": { - name: "Boba Token", - symbol: "BOBA", - decimals: 18, + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 }, "9768": { - name: "MainnetZ", - symbol: "NetZ", - decimals: 18, + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 }, "9779": { - name: "Pepe", - symbol: "WPEPE", - decimals: 18, + "name": "Pepe", + "symbol": "WPEPE", + "decimals": 18 }, "9789": { - name: "Tabi", - symbol: "TABI", - decimals: 18, + "name": "Tabi", + "symbol": "TABI", + "decimals": 18 }, "9790": { - name: "swth", - symbol: "SWTH", - decimals: 18, + "name": "swth", + "symbol": "SWTH", + "decimals": 18 }, "9792": { - name: "swth", - symbol: "SWTH", - decimals: 18, + "name": "swth", + "symbol": "SWTH", + "decimals": 18 }, "9797": { - name: "OptimusZ7", - symbol: "OZ7", - decimals: 18, + "name": "OptimusZ7", + "symbol": "OZ7", + "decimals": 18 }, "9818": { - name: "tIMP", - symbol: "tIMP", - decimals: 18, + "name": "tIMP", + "symbol": "tIMP", + "decimals": 18 }, "9819": { - name: "IMP", - symbol: "IMP", - decimals: 18, + "name": "IMP", + "symbol": "IMP", + "decimals": 18 }, "9888": { - name: "Dogecoin", - symbol: "DOGE", - decimals: 18, + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 }, "9898": { - name: "Larissa", - symbol: "LRS", - decimals: 18, + "name": "Larissa", + "symbol": "LRS", + "decimals": 18 }, "9911": { - name: "ESPENTO", - symbol: "SPENT", - decimals: 18, + "name": "ESPENTO", + "symbol": "SPENT", + "decimals": 18 }, "9977": { - name: "MIND Coin", - symbol: "tMIND", - decimals: 18, + "name": "MIND Coin", + "symbol": "tMIND", + "decimals": 18 }, "9980": { - name: "BNB Chain Native Token", - symbol: "BNB", - decimals: 18, + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 }, "9981": { - name: "V2X", - symbol: "V2X", - decimals: 18, + "name": "V2X", + "symbol": "V2X", + "decimals": 18 }, "9990": { - name: "Agung", - symbol: "AGNG", - decimals: 18, + "name": "Agung", + "symbol": "AGNG", + "decimals": 18 }, "9996": { - name: "MIND Coin", - symbol: "MIND", - decimals: 18, + "name": "MIND Coin", + "symbol": "MIND", + "decimals": 18 }, "9997": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "9998": { - name: "Ztcer", - symbol: "ZTC", - decimals: 5, + "name": "Ztcer", + "symbol": "ZTC", + "decimals": 5 }, "9999": { - name: "MYN", - symbol: "MYN", - decimals: 18, + "name": "MYN", + "symbol": "MYN", + "decimals": 18 }, "10000": { - name: "Bitcoin Cash", - symbol: "BCH", - decimals: 18, + "name": "Bitcoin Cash", + "symbol": "BCH", + "decimals": 18 }, "10001": { - name: "Bitcoin Cash Test Token", - symbol: "BCHT", - decimals: 18, + "name": "Bitcoin Cash Test Token", + "symbol": "BCHT", + "decimals": 18 }, "10024": { - name: "Gon Token", - symbol: "GT", - decimals: 18, + "name": "Gon Token", + "symbol": "GT", + "decimals": 18 }, "10081": { - name: "Japan Open Chain Testnet Token", - symbol: "JOCT", - decimals: 18, + "name": "Japan Open Chain Testnet Token", + "symbol": "JOCT", + "decimals": 18 }, "10086": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "10101": { - name: "GEN", - symbol: "GEN", - decimals: 18, + "name": "GEN", + "symbol": "GEN", + "decimals": 18 }, "10200": { - name: "Chiado xDAI", - symbol: "XDAI", - decimals: 18, + "name": "Chiado xDAI", + "symbol": "XDAI", + "decimals": 18 }, "10201": { - name: "Power", - symbol: "PWR", - decimals: 18, + "name": "Power", + "symbol": "PWR", + "decimals": 18 }, "10222": { - name: "GLC", - symbol: "GLC", - decimals: 18, + "name": "GLC", + "symbol": "GLC", + "decimals": 18 }, "10242": { - name: "Arthera", - symbol: "AA", - decimals: 18, + "name": "Arthera", + "symbol": "AA", + "decimals": 18 }, "10243": { - name: "Arthera", - symbol: "AA", - decimals: 18, + "name": "Arthera", + "symbol": "AA", + "decimals": 18 }, "10248": { - name: "0XT", - symbol: "0XT", - decimals: 18, + "name": "0XT", + "symbol": "0XT", + "decimals": 18 }, "10321": { - name: "TAO", - symbol: "TAO", - decimals: 18, + "name": "TAO", + "symbol": "TAO", + "decimals": 18 }, "10324": { - name: "TAO", - symbol: "TAO", - decimals: 18, + "name": "TAO", + "symbol": "TAO", + "decimals": 18 }, "10395": { - name: "Worldland", - symbol: "WLC", - decimals: 18, + "name": "Worldland", + "symbol": "WLC", + "decimals": 18 }, "10507": { - name: "NUM Token", - symbol: "NUM", - decimals: 18, + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 }, "10508": { - name: "NUM Token", - symbol: "NUM", - decimals: 18, + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 }, "10823": { - name: "CryptoCoinPay", - symbol: "CCP", - decimals: 18, + "name": "CryptoCoinPay", + "symbol": "CCP", + "decimals": 18 }, "10849": { - name: "L1", - symbol: "L1", - decimals: 18, + "name": "L1", + "symbol": "L1", + "decimals": 18 }, "10850": { - name: "L1 ID", - symbol: "L1ID", - decimals: 18, + "name": "L1 ID", + "symbol": "L1ID", + "decimals": 18 }, "10946": { - name: "Quadrans Coin", - symbol: "QDC", - decimals: 18, + "name": "Quadrans Coin", + "symbol": "QDC", + "decimals": 18 }, "10947": { - name: "Quadrans Testnet Coin", - symbol: "tQDC", - decimals: 18, + "name": "Quadrans Testnet Coin", + "symbol": "tQDC", + "decimals": 18 }, "11110": { - name: "Astra", - symbol: "ASA", - decimals: 18, + "name": "Astra", + "symbol": "ASA", + "decimals": 18 }, "11111": { - name: "WAGMI", - symbol: "WGM", - decimals: 18, + "name": "WAGMI", + "symbol": "WGM", + "decimals": 18 }, "11115": { - name: "test-Astra", - symbol: "tASA", - decimals: 18, + "name": "test-Astra", + "symbol": "tASA", + "decimals": 18 }, "11119": { - name: "HashBit Native Token", - symbol: "HBIT", - decimals: 18, + "name": "HashBit Native Token", + "symbol": "HBIT", + "decimals": 18 }, "11221": { - name: "Shine", - symbol: "SC20", - decimals: 18, + "name": "Shine", + "symbol": "SC20", + "decimals": 18 }, "11227": { - name: "JIRI", - symbol: "TZW", - decimals: 18, + "name": "JIRI", + "symbol": "TZW", + "decimals": 18 }, "11235": { - name: "Islamic Coin", - symbol: "ISLM", - decimals: 18, + "name": "Islamic Coin", + "symbol": "ISLM", + "decimals": 18 }, "11437": { - name: "Shyft Test Token", - symbol: "SHYFTT", - decimals: 18, + "name": "Shyft Test Token", + "symbol": "SHYFTT", + "decimals": 18 }, "11501": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "11503": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "11612": { - name: "Sardis", - symbol: "SRDX", - decimals: 18, + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "11822": { + "name": "ART", + "symbol": "ART", + "decimals": 18 }, "11891": { - name: "Arianee", - symbol: "ARIA20", - decimals: 18, + "name": "Arianee", + "symbol": "ARIA20", + "decimals": 18 }, "12009": { - name: "SatoshiChain Coin", - symbol: "SATS", - decimals: 18, + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 }, "12020": { - name: "Aternos", - symbol: "ATR", - decimals: 18, + "name": "Aternos", + "symbol": "ATR", + "decimals": 18 }, "12051": { - name: "ZERO", - symbol: "tZERO", - decimals: 18, + "name": "ZERO", + "symbol": "tZERO", + "decimals": 18 }, "12052": { - name: "ZERO", - symbol: "ZERO", - decimals: 18, + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 }, "12123": { - name: "BRC Chain mainnet native token", - symbol: "BRC", - decimals: 18, + "name": "BRC Chain mainnet native token", + "symbol": "BRC", + "decimals": 18 }, "12306": { - name: "FIBONACCI UTILITY TOKEN", - symbol: "FIBO", - decimals: 18, + "name": "FIBONACCI UTILITY TOKEN", + "symbol": "FIBO", + "decimals": 18 }, "12321": { - name: "Blg", - symbol: "BLG", - decimals: 18, + "name": "Blg", + "symbol": "BLG", + "decimals": 18 }, "12324": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "12325": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "12345": { - name: "FITFI", - symbol: "FITFI", - decimals: 18, + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 }, "12553": { - name: "RSS3", - symbol: "RSS3", - decimals: 18, + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 }, "12715": { - name: "Rikeza", - symbol: "RIK", - decimals: 18, + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 }, "12781": { - name: "Playdapp", - symbol: "PDA", - decimals: 18, + "name": "Playdapp", + "symbol": "PDA", + "decimals": 18 }, "12890": { - name: "Quantum Chain", - symbol: "tQNET", - decimals: 18, + "name": "Quantum Chain", + "symbol": "tQNET", + "decimals": 18 }, "12898": { - name: "BTLT Token", - symbol: "BTLT", - decimals: 18, + "name": "BTLT Token", + "symbol": "BTLT", + "decimals": 18 }, "13000": { - name: "ECG", - symbol: "ECG", - decimals: 18, + "name": "ECG", + "symbol": "ECG", + "decimals": 18 }, "13308": { - name: "Credit", - symbol: "CREDIT", - decimals: 18, + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 }, "13337": { - name: "Beam", - symbol: "BEAM", - decimals: 18, + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 }, "13371": { - name: "IMX", - symbol: "IMX", - decimals: 18, + "name": "IMX", + "symbol": "IMX", + "decimals": 18 }, "13381": { - name: "Phoenix", - symbol: "PHX", - decimals: 18, + "name": "Phoenix", + "symbol": "PHX", + "decimals": 18 }, "13396": { - name: "Masa Token", - symbol: "MASA", - decimals: 18, + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 }, "13473": { - name: "Test IMX", - symbol: "tIMX", - decimals: 18, + "name": "Test IMX", + "symbol": "tIMX", + "decimals": 18 }, "13505": { - name: "Sepolia Gravity", - symbol: "G.", - decimals: 18, + "name": "Sepolia Gravity", + "symbol": "G.", + "decimals": 18 }, "13600": { - name: "Kronobit", - symbol: "KNB", - decimals: 18, + "name": "Kronobit", + "symbol": "KNB", + "decimals": 18 }, "13812": { - name: "Susono", - symbol: "OPN", - decimals: 18, + "name": "Susono", + "symbol": "OPN", + "decimals": 18 }, "14000": { - name: "ECG", - symbol: "ECG", - decimals: 18, + "name": "ECG", + "symbol": "ECG", + "decimals": 18 }, "14324": { - name: "Evolve", - symbol: "EVO", - decimals: 18, + "name": "Evolve", + "symbol": "EVO", + "decimals": 18 }, "14333": { - name: "Vitruveo Test Coin", - symbol: "tVTRU", - decimals: 18, + "name": "Vitruveo Test Coin", + "symbol": "tVTRU", + "decimals": 18 }, "14801": { - name: "DAT", - symbol: "DAT", - decimals: 18, + "name": "DAT", + "symbol": "DAT", + "decimals": 18 }, "14853": { - name: "eHMND", - symbol: "eHMND", - decimals: 18, + "name": "eHMND", + "symbol": "eHMND", + "decimals": 18 }, "15003": { - name: "Dev IMX", - symbol: "dIMX", - decimals: 18, + "name": "Dev IMX", + "symbol": "dIMX", + "decimals": 18 }, "15257": { - name: "Poodl", - symbol: "POODL", - decimals: 18, + "name": "Poodl", + "symbol": "POODL", + "decimals": 18 }, "15259": { - name: "Poodl", - symbol: "POODL", - decimals: 18, + "name": "Poodl", + "symbol": "POODL", + "decimals": 18 }, "15551": { - name: "LOOP", - symbol: "LOOP", - decimals: 18, + "name": "LOOP", + "symbol": "LOOP", + "decimals": 18 }, "15555": { - name: "Trust EVM", - symbol: "EVM", - decimals: 18, + "name": "Trust EVM", + "symbol": "EVM", + "decimals": 18 }, "15557": { - name: "EOS", - symbol: "EOS", - decimals: 18, + "name": "EOS", + "symbol": "EOS", + "decimals": 18 }, "16000": { - name: "MetaDot Token", - symbol: "MTT", - decimals: 18, + "name": "MetaDot Token", + "symbol": "MTT", + "decimals": 18 }, "16001": { - name: "MetaDot Token TestNet", - symbol: "MTTest", - decimals: 18, + "name": "MetaDot Token TestNet", + "symbol": "MTTest", + "decimals": 18 }, "16116": { - name: "Oasys", - symbol: "OAS", - decimals: 18, + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 }, "16507": { - name: "Genesys", - symbol: "GSYS", - decimals: 18, + "name": "Genesys", + "symbol": "GSYS", + "decimals": 18 }, "16688": { - name: "Eris", - symbol: "ERIS", - decimals: 18, + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 }, "16718": { - name: "Amber", - symbol: "AMB", - decimals: 18, + "name": "Amber", + "symbol": "AMB", + "decimals": 18 }, "16888": { - name: "tIvar", - symbol: "tIVAR", - decimals: 18, + "name": "tIvar", + "symbol": "tIVAR", + "decimals": 18 }, "17000": { - name: "Testnet ETH", - symbol: "ETH", - decimals: 18, + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 }, "17069": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "17117": { - name: "Oasys", - symbol: "OAS", - decimals: 18, + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 }, "17171": { - name: "G8Chain", - symbol: "G8C", - decimals: 18, + "name": "G8Chain", + "symbol": "G8C", + "decimals": 18 }, "17172": { - name: "Eclipse", - symbol: "ECLP", - decimals: 16, + "name": "Eclipse", + "symbol": "ECLP", + "decimals": 16 }, "17180": { - name: "Palette Token", - symbol: "PLT", - decimals: 18, + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 }, "17217": { - name: "KONET", - symbol: "KONET", - decimals: 18, + "name": "KONET", + "symbol": "KONET", + "decimals": 18 }, "17777": { - name: "EOS", - symbol: "EOS", - decimals: 18, + "name": "EOS", + "symbol": "EOS", + "decimals": 18 }, "18000": { - name: "ZKST", - symbol: "ZKST", - decimals: 18, + "name": "ZKST", + "symbol": "ZKST", + "decimals": 18 }, "18122": { - name: "STN", - symbol: "STN", - decimals: 18, + "name": "STN", + "symbol": "STN", + "decimals": 18 }, "18159": { - name: "Proof Of Memes", - symbol: "POM", - decimals: 18, + "name": "Proof Of Memes", + "symbol": "POM", + "decimals": 18 }, "18181": { - name: "G8Coin", - symbol: "G8C", - decimals: 18, + "name": "G8Coin", + "symbol": "G8C", + "decimals": 18 }, "18233": { - name: "unreal Ether", - symbol: "reETH", - decimals: 18, + "name": "unreal Ether", + "symbol": "reETH", + "decimals": 18 }, "18686": { - name: "MXC zkEVM Moonchain", - symbol: "MXC", - decimals: 18, + "name": "MXC zkEVM Moonchain", + "symbol": "MXC", + "decimals": 18 }, "18888": { - name: "Titan tkx", - symbol: "TKX", - decimals: 18, + "name": "Titan tkx", + "symbol": "TKX", + "decimals": 18 }, "18889": { - name: "Titan tkx", - symbol: "TKX", - decimals: 18, + "name": "Titan tkx", + "symbol": "TKX", + "decimals": 18 }, "19011": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "19224": { - name: "Decentraconnect Social", - symbol: "DCSM", - decimals: 18, + "name": "Decentraconnect Social", + "symbol": "DCSM", + "decimals": 18 }, "19527": { - name: "Magnet Network", - symbol: "DOT", - decimals: 18, + "name": "Magnet Network", + "symbol": "DOT", + "decimals": 18 }, "19600": { - name: "LBRY Credits", - symbol: "LBC", - decimals: 8, + "name": "LBRY Credits", + "symbol": "LBC", + "decimals": 8 }, "19845": { - name: "BTCIX Network", - symbol: "BTCIX", - decimals: 18, + "name": "BTCIX Network", + "symbol": "BTCIX", + "decimals": 18 }, "20001": { - name: "EthereumPoW", - symbol: "ETHW", - decimals: 18, + "name": "EthereumPoW", + "symbol": "ETHW", + "decimals": 18 }, "20041": { - name: "Niza Global", - symbol: "NIZA", - decimals: 18, + "name": "Niza Global", + "symbol": "NIZA", + "decimals": 18 }, "20073": { - name: "Niza Global", - symbol: "NIZA", - decimals: 18, + "name": "Niza Global", + "symbol": "NIZA", + "decimals": 18 }, "20729": { - name: "Callisto", - symbol: "CLO", - decimals: 18, + "name": "Callisto", + "symbol": "CLO", + "decimals": 18 }, "20736": { - name: "Hooked P2", - symbol: "hP2", - decimals: 18, + "name": "Hooked P2", + "symbol": "hP2", + "decimals": 18 }, "20765": { - name: "Jono11 Token", - symbol: "JONO", - decimals: 18, + "name": "Jono11 Token", + "symbol": "JONO", + "decimals": 18 }, "21004": { - name: "C4EI", - symbol: "C4EI", - decimals: 18, + "name": "C4EI", + "symbol": "C4EI", + "decimals": 18 }, "21133": { - name: "AAH", - symbol: "AAH", - decimals: 18, + "name": "AAH", + "symbol": "AAH", + "decimals": 18 }, "21223": { - name: "DCP", - symbol: "DCP", - decimals: 18, + "name": "DCP", + "symbol": "DCP", + "decimals": 18 }, "21224": { - name: "DCP", - symbol: "DCP", - decimals: 18, + "name": "DCP", + "symbol": "DCP", + "decimals": 18 }, "21337": { - name: "CPAY", - symbol: "CPAY", - decimals: 18, + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 }, "21816": { - name: "omChain", - symbol: "OMC", - decimals: 18, + "name": "omChain", + "symbol": "OMC", + "decimals": 18 }, "21912": { - name: "Origin NFT", - symbol: "ONF", - decimals: 18, + "name": "Origin NFT", + "symbol": "ONF", + "decimals": 18 }, "22023": { - name: "shuffle", - symbol: "SFL", - decimals: 18, + "name": "shuffle", + "symbol": "SFL", + "decimals": 18 }, "22040": { - name: "Amber", - symbol: "AMB", - decimals: 18, + "name": "Amber", + "symbol": "AMB", + "decimals": 18 }, "22222": { - name: "Zebec", - symbol: "ZBC", - decimals: 18, + "name": "Zebec", + "symbol": "ZBC", + "decimals": 18 }, "22324": { - name: "GoldX", - symbol: "GOLDX", - decimals: 18, + "name": "GoldX", + "symbol": "GOLDX", + "decimals": 18 }, "22776": { - name: "MAPO", - symbol: "MAPO", - decimals: 18, + "name": "MAPO", + "symbol": "MAPO", + "decimals": 18 }, "23006": { - name: "Antofy", - symbol: "ABN", - decimals: 18, + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 }, "23118": { - name: "IDE", - symbol: "IDE", - decimals: 18, + "name": "IDE", + "symbol": "IDE", + "decimals": 18 }, "23294": { - name: "Sapphire Rose", - symbol: "ROSE", - decimals: 18, + "name": "Sapphire Rose", + "symbol": "ROSE", + "decimals": 18 }, "23295": { - name: "Sapphire Test Rose", - symbol: "TEST", - decimals: 18, + "name": "Sapphire Test Rose", + "symbol": "TEST", + "decimals": 18 }, "23451": { - name: "DreyerX", - symbol: "DRX", - decimals: 18, + "name": "DreyerX", + "symbol": "DRX", + "decimals": 18 }, "23452": { - name: "DreyerX", - symbol: "DRX", - decimals: 18, + "name": "DreyerX", + "symbol": "DRX", + "decimals": 18 }, "23888": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "24484": { - name: "Webchain Ether", - symbol: "WEB", - decimals: 18, + "name": "Webchain Ether", + "symbol": "WEB", + "decimals": 18 }, "24734": { - name: "MintMe.com Coin", - symbol: "MINTME", - decimals: 18, + "name": "MintMe.com Coin", + "symbol": "MINTME", + "decimals": 18 }, "25186": { - name: "LiquidLayer", - symbol: "LILA", - decimals: 18, + "name": "LiquidLayer", + "symbol": "LILA", + "decimals": 18 }, "25839": { - name: "AlveyCoin Testnet", - symbol: "tALV", - decimals: 18, + "name": "AlveyCoin Testnet", + "symbol": "tALV", + "decimals": 18 }, "25888": { - name: "GOLDT", - symbol: "GOLDT", - decimals: 18, + "name": "GOLDT", + "symbol": "GOLDT", + "decimals": 18 }, "25925": { - name: "Bitkub Coin", - symbol: "tKUB", - decimals: 18, + "name": "Bitkub Coin", + "symbol": "tKUB", + "decimals": 18 }, "26026": { - name: "Ferrum", - symbol: "tFRM", - decimals: 18, + "name": "Ferrum", + "symbol": "tFRM", + "decimals": 18 }, "26600": { - name: "Hertz", - symbol: "HTZ", - decimals: 18, + "name": "Hertz", + "symbol": "HTZ", + "decimals": 18 }, "26863": { - name: "OAC", - symbol: "OAC", - decimals: 18, + "name": "OAC", + "symbol": "OAC", + "decimals": 18 }, "27181": { - name: "KLAOS", - symbol: "KLAOS", - decimals: 18, + "name": "KLAOS", + "symbol": "KLAOS", + "decimals": 18 }, "27483": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "27827": { - name: "ZERO", - symbol: "ZERO", - decimals: 18, + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 }, "28516": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "28518": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "28528": { - name: "Goerli Ether", - symbol: "ETH", - decimals: 18, + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 }, "28882": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "29112": { - name: "TOPIA", - symbol: "TOPIA", - decimals: 18, + "name": "TOPIA", + "symbol": "TOPIA", + "decimals": 18 }, "29536": { - name: "KaiChain Testnet Native Token", - symbol: "KEC", - decimals: 18, + "name": "KaiChain Testnet Native Token", + "symbol": "KEC", + "decimals": 18 }, "29548": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "30067": { - name: "ECE", - symbol: "ECE", - decimals: 18, + "name": "ECE", + "symbol": "ECE", + "decimals": 18 }, "30088": { - name: "Miyou", - symbol: "MY", - decimals: 18, + "name": "Miyou", + "symbol": "MY", + "decimals": 18 }, "30103": { - name: "Canxium", - symbol: "CAU", - decimals: 18, + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 }, "30730": { - name: "Move", - symbol: "MOVE", - decimals: 18, + "name": "Move", + "symbol": "MOVE", + "decimals": 18 }, "30731": { - name: "Move", - symbol: "MOVE", - decimals: 18, + "name": "Move", + "symbol": "MOVE", + "decimals": 18 }, "30732": { - name: "Move", - symbol: "MOVE", - decimals: 18, + "name": "Move", + "symbol": "MOVE", + "decimals": 18 }, "31102": { - name: "Ethersocial Network Ether", - symbol: "ESN", - decimals: 18, + "name": "Ethersocial Network Ether", + "symbol": "ESN", + "decimals": 18 }, "31223": { - name: "CloudTx", - symbol: "CLD", - decimals: 18, + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 }, "31224": { - name: "CloudTx", - symbol: "CLD", - decimals: 18, + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 }, "31337": { - name: "GoChain Coin", - symbol: "GO", - decimals: 18, + "name": "GoChain Coin", + "symbol": "GO", + "decimals": 18 }, "31414": { - name: "MTHN Testnet", - symbol: "MTHN", - decimals: 18, + "name": "MTHN Testnet", + "symbol": "MTHN", + "decimals": 18 }, "31753": { - name: "Intdestcoin", - symbol: "INTD", - decimals: 18, + "name": "Intdestcoin", + "symbol": "INTD", + "decimals": 18 }, "31754": { - name: "Intdestcoin Testnet", - symbol: "INTD", - decimals: 18, + "name": "Intdestcoin Testnet", + "symbol": "INTD", + "decimals": 18 }, "32001": { - name: "W3Gamez Testnet Ether", - symbol: "ETH", - decimals: 18, + "name": "W3Gamez Testnet Ether", + "symbol": "ETH", + "decimals": 18 }, "32382": { - name: "SANR", - symbol: "SANR", - decimals: 18, + "name": "SANR", + "symbol": "SANR", + "decimals": 18 }, "32520": { - name: "Bitrise Token", - symbol: "Brise", - decimals: 18, + "name": "Bitrise Token", + "symbol": "Brise", + "decimals": 18 }, "32659": { - name: "Fusion", - symbol: "FSN", - decimals: 18, + "name": "Fusion", + "symbol": "FSN", + "decimals": 18 }, "32769": { - name: "Zilliqa", - symbol: "ZIL", - decimals: 18, + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 }, "32990": { - name: "Zilliqa", - symbol: "ZIL", - decimals: 18, + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 }, "33033": { - name: "Entangle", - symbol: "NGL", - decimals: 18, + "name": "Entangle", + "symbol": "NGL", + "decimals": 18 }, "33101": { - name: "Zilliqa", - symbol: "ZIL", - decimals: 18, + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 }, "33133": { - name: "Entangle", - symbol: "NGL", - decimals: 18, + "name": "Entangle", + "symbol": "NGL", + "decimals": 18 }, "33210": { - name: "XCLOUD", - symbol: "XCLOUD", - decimals: 18, + "name": "XCLOUD", + "symbol": "XCLOUD", + "decimals": 18 }, "33333": { - name: "Aves", - symbol: "AVS", - decimals: 18, + "name": "Aves", + "symbol": "AVS", + "decimals": 18 }, "33385": { - name: "Zilliqa", - symbol: "ZIL", - decimals: 18, + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 }, "33469": { - name: "Zilliqa", - symbol: "ZIL", - decimals: 18, + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 }, "33979": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "34443": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "35011": { - name: "TARO Coin", - symbol: "taro", - decimals: 18, + "name": "TARO Coin", + "symbol": "taro", + "decimals": 18 }, "35441": { - name: "QGOV", - symbol: "QGOV", - decimals: 18, + "name": "QGOV", + "symbol": "QGOV", + "decimals": 18 }, "35443": { - name: "Q token", - symbol: "Q", - decimals: 18, + "name": "Q token", + "symbol": "Q", + "decimals": 18 }, "38400": { - name: "Rangers Protocol Gas", - symbol: "cmRPG", - decimals: 18, + "name": "Rangers Protocol Gas", + "symbol": "cmRPG", + "decimals": 18 }, "38401": { - name: "Rangers Protocol Gas", - symbol: "ttRPG", - decimals: 18, + "name": "Rangers Protocol Gas", + "symbol": "ttRPG", + "decimals": 18 }, "39656": { - name: "Primal Network", - symbol: "PRM", - decimals: 18, + "name": "Primal Network", + "symbol": "PRM", + "decimals": 18 }, "39797": { - name: "Energi", - symbol: "NRG", - decimals: 18, + "name": "Energi", + "symbol": "NRG", + "decimals": 18 }, "39815": { - name: "OHO", - symbol: "OHO", - decimals: 18, + "name": "OHO", + "symbol": "OHO", + "decimals": 18 }, "41500": { - name: "Oxyn Gas", - symbol: "OXYN", - decimals: 18, + "name": "Oxyn Gas", + "symbol": "OXYN", + "decimals": 18 }, "42069": { - name: "pegglecoin", - symbol: "peggle", - decimals: 18, + "name": "pegglecoin", + "symbol": "peggle", + "decimals": 18 }, "42072": { - name: "Agent", - symbol: "AGENT", - decimals: 18, + "name": "Agent", + "symbol": "AGENT", + "decimals": 18 }, "42161": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "42170": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "42220": { - name: "CELO", - symbol: "CELO", - decimals: 18, + "name": "CELO", + "symbol": "CELO", + "decimals": 18 }, "42261": { - name: "Emerald Rose", - symbol: "ROSE", - decimals: 18, + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 }, "42262": { - name: "Emerald Rose", - symbol: "ROSE", - decimals: 18, + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 }, "42355": { - name: "GoldX", - symbol: "GOLDX", - decimals: 18, + "name": "GoldX", + "symbol": "GOLDX", + "decimals": 18 }, "42766": { - name: "USDC Token", - symbol: "USDC", - decimals: 18, + "name": "USDC Token", + "symbol": "USDC", + "decimals": 18 }, "42793": { - name: "tez", - symbol: "XTZ", - decimals: 18, + "name": "tez", + "symbol": "XTZ", + "decimals": 18 }, "42801": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "42888": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "43110": { - name: "Athereum Ether", - symbol: "ATH", - decimals: 18, + "name": "Athereum Ether", + "symbol": "ATH", + "decimals": 18 }, "43111": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "43113": { - name: "Avalanche", - symbol: "AVAX", - decimals: 18, + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 }, "43114": { - name: "Avalanche", - symbol: "AVAX", - decimals: 18, + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 }, "43851": { - name: "USDC Token", - symbol: "USDC", - decimals: 18, + "name": "USDC Token", + "symbol": "USDC", + "decimals": 18 }, "44444": { - name: "FREN", - symbol: "FREN", - decimals: 18, + "name": "FREN", + "symbol": "FREN", + "decimals": 18 }, "44445": { - name: "Quantum", - symbol: "QTM", - decimals: 18, + "name": "Quantum", + "symbol": "QTM", + "decimals": 18 }, "44787": { - name: "CELO", - symbol: "CELO", - decimals: 18, + "name": "CELO", + "symbol": "CELO", + "decimals": 18 }, "45000": { - name: "TXL", - symbol: "TXL", - decimals: 18, + "name": "TXL", + "symbol": "TXL", + "decimals": 18 }, "45454": { - name: "SWP", - symbol: "SWP", - decimals: 18, + "name": "SWP", + "symbol": "SWP", + "decimals": 18 }, "45510": { - name: "Deelance", - symbol: "DEE", - decimals: 18, + "name": "Deelance", + "symbol": "DEE", + "decimals": 18 }, "46688": { - name: "Testnet Fusion", - symbol: "T-FSN", - decimals: 18, + "name": "Testnet Fusion", + "symbol": "T-FSN", + "decimals": 18 }, "47805": { - name: "REI", - symbol: "REI", - decimals: 18, + "name": "REI", + "symbol": "REI", + "decimals": 18 }, "48795": { - name: "FUEL", - symbol: "FUEL", - decimals: 18, + "name": "FUEL", + "symbol": "FUEL", + "decimals": 18 }, "48899": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "49049": { - name: "WIRE", - symbol: "WIRE", - decimals: 18, + "name": "WIRE", + "symbol": "WIRE", + "decimals": 18 }, "49088": { - name: "Bifrost", - symbol: "BFC", - decimals: 18, + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 }, "49321": { - name: "GUN", - symbol: "GUN", - decimals: 18, + "name": "GUN", + "symbol": "GUN", + "decimals": 18 }, "49797": { - name: "Energi", - symbol: "NRG", - decimals: 18, + "name": "Energi", + "symbol": "NRG", + "decimals": 18 }, "50001": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "50005": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "50006": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "50021": { - name: "GCD", - symbol: "GCD", - decimals: 18, + "name": "GCD", + "symbol": "GCD", + "decimals": 18 }, "51178": { - name: "Lumoz Test Token", - symbol: "MOZ", - decimals: 18, + "name": "Lumoz Test Token", + "symbol": "MOZ", + "decimals": 18 }, "51712": { - name: "Sardis", - symbol: "SRDX", - decimals: 18, + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 }, "52014": { - name: "Electroneum", - symbol: "ETN", - decimals: 18, + "name": "Electroneum", + "symbol": "ETN", + "decimals": 18 }, "53277": { - name: "DOID", - symbol: "DOID", - decimals: 18, + "name": "DOID", + "symbol": "DOID", + "decimals": 18 }, "53302": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "53457": { - name: "DODO", - symbol: "DODO", - decimals: 18, + "name": "DODO", + "symbol": "DODO", + "decimals": 18 }, "53935": { - name: "Jewel", - symbol: "JEWEL", - decimals: 18, + "name": "Jewel", + "symbol": "JEWEL", + "decimals": 18 }, "54211": { - name: "Islamic Coin", - symbol: "ISLMT", - decimals: 18, + "name": "Islamic Coin", + "symbol": "ISLMT", + "decimals": 18 }, "54321": { - name: "Toro", - symbol: "TORO", - decimals: 18, + "name": "Toro", + "symbol": "TORO", + "decimals": 18 }, "54555": { - name: "Photon", - symbol: "PTON", - decimals: 18, + "name": "Photon", + "symbol": "PTON", + "decimals": 18 }, "55004": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "55555": { - name: "Rei", - symbol: "REI", - decimals: 18, + "name": "Rei", + "symbol": "REI", + "decimals": 18 }, "55556": { - name: "tRei", - symbol: "tREI", - decimals: 18, + "name": "tRei", + "symbol": "tREI", + "decimals": 18 }, "56026": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "56288": { - name: "Boba Token", - symbol: "BOBA", - decimals: 18, + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 }, "56400": { - name: "ZERO", - symbol: "ZERO", - decimals: 18, + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 }, "56789": { - name: "Nova", - symbol: "NOVA", - decimals: 18, + "name": "Nova", + "symbol": "NOVA", + "decimals": 18 }, "56797": { - name: "DOID", - symbol: "DOID", - decimals: 18, + "name": "DOID", + "symbol": "DOID", + "decimals": 18 }, "57000": { - name: "Testnet Syscoin", - symbol: "TSYS", - decimals: 18, + "name": "Testnet Syscoin", + "symbol": "TSYS", + "decimals": 18 }, "57451": { - name: "COINSEC", - symbol: "SEC", - decimals: 18, + "name": "COINSEC", + "symbol": "SEC", + "decimals": 18 }, "58008": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "59140": { - name: "Linea Ether", - symbol: "ETH", - decimals: 18, + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 }, "59141": { - name: "Linea Ether", - symbol: "ETH", - decimals: 18, + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 }, "59144": { - name: "Linea Ether", - symbol: "ETH", - decimals: 18, + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 }, "59971": { - name: "GenesysCode", - symbol: "GCODE", - decimals: 18, + "name": "GenesysCode", + "symbol": "GCODE", + "decimals": 18 }, "60000": { - name: "TKM", - symbol: "TKM", - decimals: 18, + "name": "TKM", + "symbol": "TKM", + "decimals": 18 }, "60001": { - name: "TKM", - symbol: "TKM", - decimals: 18, + "name": "TKM", + "symbol": "TKM", + "decimals": 18 }, "60002": { - name: "TKM", - symbol: "TKM", - decimals: 18, + "name": "TKM", + "symbol": "TKM", + "decimals": 18 }, "60103": { - name: "TKM", - symbol: "TKM", - decimals: 18, + "name": "TKM", + "symbol": "TKM", + "decimals": 18 }, "60808": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "61406": { - name: "KaiChain Native Token", - symbol: "KEC", - decimals: 18, + "name": "KaiChain Native Token", + "symbol": "KEC", + "decimals": 18 }, "61800": { - name: "Axelium", - symbol: "AIUM", - decimals: 18, + "name": "Axelium", + "symbol": "AIUM", + "decimals": 18 }, "61803": { - name: "EGAZ", - symbol: "EGAZ", - decimals: 18, + "name": "EGAZ", + "symbol": "EGAZ", + "decimals": 18 }, "61916": { - name: "DoKEN", - symbol: "DKN", - decimals: 18, + "name": "DoKEN", + "symbol": "DKN", + "decimals": 18 }, "62049": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "62050": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "62298": { - name: "Citrea BTC", - symbol: "cBTC", - decimals: 18, + "name": "Citrea BTC", + "symbol": "cBTC", + "decimals": 18 }, "62320": { - name: "CELO", - symbol: "CELO", - decimals: 18, + "name": "CELO", + "symbol": "CELO", + "decimals": 18 }, "62621": { - name: "MultiVAC", - symbol: "MTV", - decimals: 18, + "name": "MultiVAC", + "symbol": "MTV", + "decimals": 18 }, "62831": { - name: "PLYR", - symbol: "PLYR", - decimals: 18, + "name": "PLYR", + "symbol": "PLYR", + "decimals": 18 }, "63000": { - name: "eCredits", - symbol: "ECS", - decimals: 18, + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 }, "63001": { - name: "eCredits", - symbol: "ECS", - decimals: 18, + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 }, "65450": { - name: "Scolcoin", - symbol: "SCOL", - decimals: 18, + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 }, "66988": { - name: "Janus", - symbol: "JNS", - decimals: 18, + "name": "Janus", + "symbol": "JNS", + "decimals": 18 }, "67588": { - name: "Cosmic Chain", - symbol: "COSMIC", - decimals: 18, + "name": "Cosmic Chain", + "symbol": "COSMIC", + "decimals": 18 }, "68770": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "69420": { - name: "Condrieu Testnet Ether", - symbol: "CTE", - decimals: 18, + "name": "Condrieu Testnet Ether", + "symbol": "CTE", + "decimals": 18 }, "70000": { - name: "TKM", - symbol: "TKM", - decimals: 18, + "name": "TKM", + "symbol": "TKM", + "decimals": 18 }, "70001": { - name: "TKM", - symbol: "TKM", - decimals: 18, + "name": "TKM", + "symbol": "TKM", + "decimals": 18 }, "70002": { - name: "TKM", - symbol: "TKM", - decimals: 18, + "name": "TKM", + "symbol": "TKM", + "decimals": 18 }, "70103": { - name: "TKM", - symbol: "TKM", - decimals: 18, + "name": "TKM", + "symbol": "TKM", + "decimals": 18 }, "70700": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "71111": { - name: "GuapcoinX", - symbol: "GuapX", - decimals: 18, + "name": "GuapcoinX", + "symbol": "GuapX", + "decimals": 18 }, "71393": { - name: "CKB", - symbol: "CKB", - decimals: 8, + "name": "CKB", + "symbol": "CKB", + "decimals": 8 }, "71401": { - name: "pCKB", - symbol: "pCKB", - decimals: 18, + "name": "pCKB", + "symbol": "pCKB", + "decimals": 18 }, "71402": { - name: "pCKB", - symbol: "pCKB", - decimals: 18, + "name": "pCKB", + "symbol": "pCKB", + "decimals": 18 }, "72778": { - name: "Caga", - symbol: "CAGA", - decimals: 18, + "name": "Caga", + "symbol": "CAGA", + "decimals": 18 }, "72992": { - name: "Groc", - symbol: "GROC", - decimals: 18, + "name": "Groc", + "symbol": "GROC", + "decimals": 18 }, "73114": { - name: "ICB Testnet Token", - symbol: "ICBT", - decimals: 18, + "name": "ICB Testnet Token", + "symbol": "ICBT", + "decimals": 18 }, "73115": { - name: "ICB Native Token", - symbol: "ICBX", - decimals: 18, + "name": "ICB Native Token", + "symbol": "ICBX", + "decimals": 18 }, "73799": { - name: "Volta Token", - symbol: "VT", - decimals: 18, + "name": "Volta Token", + "symbol": "VT", + "decimals": 18 }, "73927": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "75000": { - name: "Ether", - symbol: "RESIN", - decimals: 18, + "name": "Ether", + "symbol": "RESIN", + "decimals": 18 }, "75512": { - name: "Geek", - symbol: "GEEK", - decimals: 18, + "name": "Geek", + "symbol": "GEEK", + "decimals": 18 }, "75513": { - name: "Geek", - symbol: "GEEK", - decimals: 18, + "name": "Geek", + "symbol": "GEEK", + "decimals": 18 }, "77001": { - name: "BORA", - symbol: "BORA", - decimals: 18, + "name": "BORA", + "symbol": "BORA", + "decimals": 18 }, "77238": { - name: "Foundry Chain Testnet", - symbol: "tFNC", - decimals: 18, + "name": "Foundry Chain Testnet", + "symbol": "tFNC", + "decimals": 18 }, "77612": { - name: "VNT", - symbol: "VNT", - decimals: 18, + "name": "VNT", + "symbol": "VNT", + "decimals": 18 }, "77777": { - name: "Toro", - symbol: "TORO", - decimals: 18, + "name": "Toro", + "symbol": "TORO", + "decimals": 18 }, "78110": { - name: "Firenze Ether", - symbol: "FIN", - decimals: 18, + "name": "Firenze Ether", + "symbol": "FIN", + "decimals": 18 }, "78281": { - name: "Dragonfly", - symbol: "DFLY", - decimals: 18, + "name": "Dragonfly", + "symbol": "DFLY", + "decimals": 18 }, "78430": { - name: "AMP", - symbol: "AMP", - decimals: 18, + "name": "AMP", + "symbol": "AMP", + "decimals": 18 }, "78431": { - name: "BLT", - symbol: "BLT", - decimals: 18, + "name": "BLT", + "symbol": "BLT", + "decimals": 18 }, "78432": { - name: "CON", - symbol: "CON", - decimals: 18, + "name": "CON", + "symbol": "CON", + "decimals": 18 }, "78600": { - name: "Vanguard Vanry", - symbol: "VANRY", - decimals: 18, + "name": "Vanguard Vanry", + "symbol": "VANRY", + "decimals": 18 }, "79879": { - name: "Standard in Gold", - symbol: "STAND", - decimals: 18, + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 }, "80001": { - name: "MATIC", - symbol: "MATIC", - decimals: 18, + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 }, "80002": { - name: "MATIC", - symbol: "MATIC", - decimals: 18, + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "80084": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 }, "80085": { - name: "BERA Token", - symbol: "BERA", - decimals: 18, + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 }, "80096": { - name: "Hizoco", - symbol: "HZC", - decimals: 18, + "name": "Hizoco", + "symbol": "HZC", + "decimals": 18 }, "81041": { - name: "NRK", - symbol: "NRK", - decimals: 18, + "name": "NRK", + "symbol": "NRK", + "decimals": 18 }, "81341": { - name: "Amana Testnet", - symbol: "MEER-T", - decimals: 18, + "name": "Amana Testnet", + "symbol": "MEER-T", + "decimals": 18 }, "81342": { - name: "Amana Mixnet", - symbol: "MEER-M", - decimals: 18, + "name": "Amana Mixnet", + "symbol": "MEER-M", + "decimals": 18 }, "81343": { - name: "Amana Privnet", - symbol: "MEER-P", - decimals: 18, + "name": "Amana Privnet", + "symbol": "MEER-P", + "decimals": 18 }, "81351": { - name: "Flana Testnet", - symbol: "MEER-T", - decimals: 18, + "name": "Flana Testnet", + "symbol": "MEER-T", + "decimals": 18 }, "81352": { - name: "Flana Mixnet", - symbol: "MEER-M", - decimals: 18, + "name": "Flana Mixnet", + "symbol": "MEER-M", + "decimals": 18 }, "81353": { - name: "Flana Privnet", - symbol: "MEER-P", - decimals: 18, + "name": "Flana Privnet", + "symbol": "MEER-P", + "decimals": 18 }, "81361": { - name: "Mizana Testnet", - symbol: "MEER-T", - decimals: 18, + "name": "Mizana Testnet", + "symbol": "MEER-T", + "decimals": 18 }, "81362": { - name: "Mizana Mixnet", - symbol: "MEER-M", - decimals: 18, + "name": "Mizana Mixnet", + "symbol": "MEER-M", + "decimals": 18 }, "81363": { - name: "Mizana Privnet", - symbol: "MEER-P", - decimals: 18, + "name": "Mizana Privnet", + "symbol": "MEER-P", + "decimals": 18 }, "81457": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "81720": { - name: "Quantum Chain", - symbol: "QNET", - decimals: 18, + "name": "Quantum Chain", + "symbol": "QNET", + "decimals": 18 }, "82459": { - name: "Service Unit Token", - symbol: "SU", - decimals: 18, + "name": "Service Unit Token", + "symbol": "SU", + "decimals": 18 }, "83872": { - name: "Zedxion", - symbol: "ZEDX", - decimals: 9, + "name": "Zedxion", + "symbol": "ZEDX", + "decimals": 9 }, "84531": { - name: "Goerli Ether", - symbol: "ETH", - decimals: 18, + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 }, "84532": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "84886": { - name: "Aerie", - symbol: "AER", - decimals: 18, + "name": "Aerie", + "symbol": "AER", + "decimals": 18 }, "85449": { - name: "Cyber Trust", - symbol: "CYBER", - decimals: 18, + "name": "Cyber Trust", + "symbol": "CYBER", + "decimals": 18 }, "88002": { - name: "Zebec Test Token", - symbol: "tZBC", - decimals: 18, + "name": "Zebec Test Token", + "symbol": "tZBC", + "decimals": 18 }, "88559": { - name: "Inoai", - symbol: "INO", - decimals: 18, + "name": "Inoai", + "symbol": "INO", + "decimals": 18 }, "88817": { - name: "UNIT0", - symbol: "UNIT0", - decimals: 18, + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 }, "88819": { - name: "UNIT0", - symbol: "UNIT0", - decimals: 18, + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 }, "88882": { - name: "Chiliz", - symbol: "CHZ", - decimals: 18, + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 }, "88888": { - name: "Chiliz", - symbol: "CHZ", - decimals: 18, + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 }, "90001": { - name: "Function X", - symbol: "FX", - decimals: 18, + "name": "Function X", + "symbol": "FX", + "decimals": 18 }, "90210": { - name: "Beverly Hills Testnet Ether", - symbol: "BVE", - decimals: 18, + "name": "Beverly Hills Testnet Ether", + "symbol": "BVE", + "decimals": 18 }, "90354": { - name: "Ethereum", - symbol: "ETH", - decimals: 18, + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 }, "91002": { - name: "Nautilus Zebec Testnet Tokens", - symbol: "tZBC", - decimals: 18, + "name": "Nautilus Zebec Testnet Tokens", + "symbol": "tZBC", + "decimals": 18 }, "91120": { - name: "DAP", - symbol: "DAP", - decimals: 18, + "name": "DAP", + "symbol": "DAP", + "decimals": 18 }, "91715": { - name: "BNB Chain Native Token", - symbol: "tcBNB", - decimals: 18, + "name": "BNB Chain Native Token", + "symbol": "tcBNB", + "decimals": 18 }, "92001": { - name: "test-Lamb", - symbol: "LAMB", - decimals: 18, + "name": "test-Lamb", + "symbol": "LAMB", + "decimals": 18 }, "93572": { - name: "LiquidLayer Testnet", - symbol: "LILA", - decimals: 18, + "name": "LiquidLayer Testnet", + "symbol": "LILA", + "decimals": 18 }, "96970": { - name: "Mantis", - symbol: "MANTIS", - decimals: 18, + "name": "Mantis", + "symbol": "MANTIS", + "decimals": 18 }, "97531": { - name: "GREEN", - symbol: "GREEN", - decimals: 18, + "name": "GREEN", + "symbol": "GREEN", + "decimals": 18 }, "97970": { - name: "OptimusZ7", - symbol: "OZ7", - decimals: 18, + "name": "OptimusZ7", + "symbol": "OZ7", + "decimals": 18 }, "98881": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "99099": { - name: "eLiberty", - symbol: "$EL", - decimals: 18, + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 }, "99998": { - name: "UBC", - symbol: "UBC", - decimals: 18, + "name": "UBC", + "symbol": "UBC", + "decimals": 18 }, "99999": { - name: "UBC", - symbol: "UBC", - decimals: 18, + "name": "UBC", + "symbol": "UBC", + "decimals": 18 }, "100000": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100001": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100002": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100003": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100004": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100005": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100006": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100007": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100008": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "100009": { - name: "VeChain", - symbol: "VET", - decimals: 18, + "name": "VeChain", + "symbol": "VET", + "decimals": 18 }, "100010": { - name: "VeChain", - symbol: "VET", - decimals: 18, + "name": "VeChain", + "symbol": "VET", + "decimals": 18 }, "100011": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "101010": { - name: "FREE", - symbol: "FREE", - decimals: 18, + "name": "FREE", + "symbol": "FREE", + "decimals": 18 }, "102031": { - name: "Testnet CTC", - symbol: "tCTC", - decimals: 18, + "name": "Testnet CTC", + "symbol": "tCTC", + "decimals": 18 }, "103090": { - name: "CRFI", - symbol: "◈", - decimals: 18, + "name": "CRFI", + "symbol": "◈", + "decimals": 18 }, "103454": { - name: "Masa Token", - symbol: "MASA", - decimals: 18, + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 }, "104566": { - name: "KaspaClassic", - symbol: "CAS", - decimals: 18, + "name": "KaspaClassic", + "symbol": "CAS", + "decimals": 18 }, "105105": { - name: "Stratis", - symbol: "STRAX", - decimals: 18, + "name": "Stratis", + "symbol": "STRAX", + "decimals": 18 }, "108801": { - name: "Brother", - symbol: "BRO", - decimals: 18, + "name": "Brother", + "symbol": "BRO", + "decimals": 18 }, "110000": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110001": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110002": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110003": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110004": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110005": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110006": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110007": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110008": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "110011": { - name: "QKC", - symbol: "QKC", - decimals: 18, + "name": "QKC", + "symbol": "QKC", + "decimals": 18 }, "111000": { - name: "TestSIBR", - symbol: "SIBR", - decimals: 18, + "name": "TestSIBR", + "symbol": "SIBR", + "decimals": 18 }, "111111": { - name: "Siberium", - symbol: "SIBR", - decimals: 18, + "name": "Siberium", + "symbol": "SIBR", + "decimals": 18 }, "111188": { - name: "re.al Ether", - symbol: "reETH", - decimals: 18, + "name": "re.al Ether", + "symbol": "reETH", + "decimals": 18 }, "112358": { - name: "Metao", - symbol: "METAO", - decimals: 18, + "name": "Metao", + "symbol": "METAO", + "decimals": 18 }, "119139": { - name: "DAP", - symbol: "DAP", - decimals: 18, + "name": "DAP", + "symbol": "DAP", + "decimals": 18 }, "123456": { - name: "Devnet ADIL", - symbol: "ADIL", - decimals: 18, + "name": "Devnet ADIL", + "symbol": "ADIL", + "decimals": 18 }, "128123": { - name: "tez", - symbol: "XTZ", - decimals: 18, + "name": "tez", + "symbol": "XTZ", + "decimals": 18 }, "131313": { - name: "DIONE", - symbol: "DIONE", - decimals: 18, + "name": "DIONE", + "symbol": "DIONE", + "decimals": 18 }, "131419": { - name: "ETND", - symbol: "ETND", - decimals: 18, + "name": "ETND", + "symbol": "ETND", + "decimals": 18 }, "132902": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "141319": { - name: "MagApe", - symbol: "MAG", - decimals: 18, + "name": "MagApe", + "symbol": "MAG", + "decimals": 18 }, "142857": { - name: "ict", - symbol: "ict", - decimals: 18, + "name": "ict", + "symbol": "ict", + "decimals": 18 }, "161212": { - name: "Play", - symbol: "PLAY", - decimals: 18, + "name": "Play", + "symbol": "PLAY", + "decimals": 18 }, "165279": { - name: "Eclat", - symbol: "ECLAT", - decimals: 18, + "name": "Eclat", + "symbol": "ECLAT", + "decimals": 18 }, "167000": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "167008": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "167009": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "188710": { - name: "Bitica Coin", - symbol: "BDCC", - decimals: 18, + "name": "Bitica Coin", + "symbol": "BDCC", + "decimals": 18 }, "188881": { - name: "Condor Native Token", - symbol: "CONDOR", - decimals: 18, + "name": "Condor Native Token", + "symbol": "CONDOR", + "decimals": 18 }, "192940": { - name: "FHE", - symbol: "FHE", - decimals: 18, + "name": "FHE", + "symbol": "FHE", + "decimals": 18 }, "200000": { - name: "FAI", - symbol: "FAI", - decimals: 18, + "name": "FAI", + "symbol": "FAI", + "decimals": 18 }, "200101": { - name: "milkTAda", - symbol: "mTAda", - decimals: 18, + "name": "milkTAda", + "symbol": "mTAda", + "decimals": 18 }, "200202": { - name: "milkTAlgo", - symbol: "mTAlgo", - decimals: 18, + "name": "milkTAlgo", + "symbol": "mTAlgo", + "decimals": 18 }, "200625": { - name: "Akroma Ether", - symbol: "AKA", - decimals: 18, + "name": "Akroma Ether", + "symbol": "AKA", + "decimals": 18 }, "200810": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "200901": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "201018": { - name: "ATP", - symbol: "atp", - decimals: 18, + "name": "ATP", + "symbol": "atp", + "decimals": 18 }, "201030": { - name: "ATP", - symbol: "atp", - decimals: 18, + "name": "ATP", + "symbol": "atp", + "decimals": 18 }, "201804": { - name: "Mythos", - symbol: "MYTH", - decimals: 18, + "name": "Mythos", + "symbol": "MYTH", + "decimals": 18 }, "202020": { - name: "Decimal", - symbol: "tDEL", - decimals: 18, + "name": "Decimal", + "symbol": "tDEL", + "decimals": 18 }, "202212": { - name: "XN", - symbol: "XN", - decimals: 18, + "name": "XN", + "symbol": "XN", + "decimals": 18 }, "202401": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "202624": { - name: "Twala Coin", - symbol: "TWL", - decimals: 18, + "name": "Twala Coin", + "symbol": "TWL", + "decimals": 18 }, "204005": { - name: "XN", - symbol: "XN", - decimals: 18, + "name": "XN", + "symbol": "XN", + "decimals": 18 }, "205205": { - name: "Auroria Stratis", - symbol: "tSTRAX", - decimals: 18, + "name": "Auroria Stratis", + "symbol": "tSTRAX", + "decimals": 18 }, "210049": { - name: "GitAGI", - symbol: "tGAGI", - decimals: 18, + "name": "GitAGI", + "symbol": "tGAGI", + "decimals": 18 }, "210425": { - name: "LAT", - symbol: "lat", - decimals: 18, + "name": "LAT", + "symbol": "lat", + "decimals": 18 }, "220315": { - name: "Master Bank", - symbol: "MAS", - decimals: 18, + "name": "Master Bank", + "symbol": "MAS", + "decimals": 18 }, "221230": { - name: "Reap", - symbol: "REAP", - decimals: 18, + "name": "Reap", + "symbol": "REAP", + "decimals": 18 }, "221231": { - name: "test-Reap", - symbol: "tREAP", - decimals: 18, + "name": "test-Reap", + "symbol": "tREAP", + "decimals": 18 }, "222222": { - name: "Wrapped ETH", - symbol: "WETH", - decimals: 18, + "name": "Wrapped ETH", + "symbol": "WETH", + "decimals": 18 }, "222555": { - name: "DeepL", - symbol: "DEEPL", - decimals: 18, + "name": "DeepL", + "symbol": "DEEPL", + "decimals": 18 }, "222666": { - name: "DeepL", - symbol: "DEEPL", - decimals: 18, + "name": "DeepL", + "symbol": "DEEPL", + "decimals": 18 }, "224168": { - name: "Taf ECO Chain Mainnet", - symbol: "TAFECO", - decimals: 18, + "name": "Taf ECO Chain Mainnet", + "symbol": "TAFECO", + "decimals": 18 }, "224422": { - name: "CONET Sebolia", - symbol: "CONET", - decimals: 18, + "name": "CONET Sebolia", + "symbol": "CONET", + "decimals": 18 }, "224433": { - name: "CONET Holesky", - symbol: "CONET", - decimals: 18, + "name": "CONET Holesky", + "symbol": "CONET", + "decimals": 18 }, "230315": { - name: "HashKey Token", - symbol: "tHSK", - decimals: 18, + "name": "HashKey Token", + "symbol": "tHSK", + "decimals": 18 }, "234666": { - name: "HAYMO", - symbol: "HYM", - decimals: 18, + "name": "HAYMO", + "symbol": "HYM", + "decimals": 18 }, "240515": { - name: "BTC", - symbol: "BTC", - decimals: 18, + "name": "BTC", + "symbol": "BTC", + "decimals": 18 }, "246529": { - name: "ARTIS sigma1 Ether", - symbol: "ATS", - decimals: 18, + "name": "ARTIS sigma1 Ether", + "symbol": "ATS", + "decimals": 18 }, "246785": { - name: "ARTIS tau1 Ether", - symbol: "tATS", - decimals: 18, + "name": "ARTIS tau1 Ether", + "symbol": "tATS", + "decimals": 18 }, "247253": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "256256": { - name: "Caduceus Token", - symbol: "CMP", - decimals: 18, + "name": "Caduceus Token", + "symbol": "CMP", + "decimals": 18 }, "262371": { - name: "Eclat Testnet", - symbol: "ECLAT", - decimals: 18, + "name": "Eclat Testnet", + "symbol": "ECLAT", + "decimals": 18 }, "266256": { - name: "Gear Zero Network Native Token", - symbol: "GZN", - decimals: 18, + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 }, "271271": { - name: "EgonCoin", - symbol: "EGON", - decimals: 18, + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 }, "281121": { - name: "SoChain", - symbol: "$OC", - decimals: 18, + "name": "SoChain", + "symbol": "$OC", + "decimals": 18 }, "282828": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "309075": { - name: "OWCT", - symbol: "OWCT", - decimals: 18, + "name": "OWCT", + "symbol": "OWCT", + "decimals": 18 }, "313313": { - name: "SAHARA", - symbol: "SAH", - decimals: 18, + "name": "SAHARA", + "symbol": "SAH", + "decimals": 18 }, "314159": { - name: "testnet filecoin", - symbol: "tFIL", - decimals: 18, + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 }, "322202": { - name: "PAREX", - symbol: "PRX", - decimals: 18, + "name": "PAREX", + "symbol": "PRX", + "decimals": 18 }, "323213": { - name: "Bloom", - symbol: "BGBC", - decimals: 18, + "name": "Bloom", + "symbol": "BGBC", + "decimals": 18 }, "330844": { - name: "TTcoin", - symbol: "TC", - decimals: 18, + "name": "TTcoin", + "symbol": "TC", + "decimals": 18 }, "333313": { - name: "Bloom", - symbol: "BGBC", - decimals: 18, + "name": "Bloom", + "symbol": "BGBC", + "decimals": 18 }, "333331": { - name: "AvesT", - symbol: "AVST", - decimals: 18, + "name": "AvesT", + "symbol": "AVST", + "decimals": 18 }, "333333": { - name: "USNT", - symbol: "USNT", - decimals: 18, + "name": "USNT", + "symbol": "USNT", + "decimals": 18 }, "333666": { - name: "tOONE", - symbol: "tOONE", - decimals: 18, + "name": "tOONE", + "symbol": "tOONE", + "decimals": 18 }, "333777": { - name: "tOONE", - symbol: "tOONE", - decimals: 18, + "name": "tOONE", + "symbol": "tOONE", + "decimals": 18 }, "333888": { - name: "tPolis", - symbol: "tPOLIS", - decimals: 18, + "name": "tPolis", + "symbol": "tPOLIS", + "decimals": 18 }, "333999": { - name: "Polis", - symbol: "POLIS", - decimals: 18, + "name": "Polis", + "symbol": "POLIS", + "decimals": 18 }, "336655": { - name: "UBTC", - symbol: "UBTC", - decimals: 18, + "name": "UBTC", + "symbol": "UBTC", + "decimals": 18 }, "336666": { - name: "UBTC", - symbol: "UBTC", - decimals: 18, + "name": "UBTC", + "symbol": "UBTC", + "decimals": 18 }, "355110": { - name: "Bitfinity Token", - symbol: "BFT", - decimals: 18, + "name": "Bitfinity Token", + "symbol": "BFT", + "decimals": 18 }, "355113": { - name: "Bitfinity Token", - symbol: "BFT", - decimals: 18, + "name": "Bitfinity Token", + "symbol": "BFT", + "decimals": 18 }, "360890": { - name: "vTFUEL", - symbol: "vTFUEL", - decimals: 18, + "name": "vTFUEL", + "symbol": "vTFUEL", + "decimals": 18 }, "363636": { - name: "Digit Coin", - symbol: "DGC", - decimals: 18, + "name": "Digit Coin", + "symbol": "DGC", + "decimals": 18 }, "373737": { - name: "HAP", - symbol: "HAP", - decimals: 18, + "name": "HAP", + "symbol": "HAP", + "decimals": 18 }, "381931": { - name: "Metal", - symbol: "METAL", - decimals: 18, + "name": "Metal", + "symbol": "METAL", + "decimals": 18 }, "381932": { - name: "Metal", - symbol: "METAL", - decimals: 18, + "name": "Metal", + "symbol": "METAL", + "decimals": 18 }, "404040": { - name: "Tipboxcoin", - symbol: "TPBX", - decimals: 18, + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 }, "413413": { - name: "AIE", - symbol: "tAIE", - decimals: 18, + "name": "AIE", + "symbol": "tAIE", + "decimals": 18 }, "420420": { - name: "KEK", - symbol: "KEK", - decimals: 18, + "name": "KEK", + "symbol": "KEK", + "decimals": 18 }, "420666": { - name: "tKEK", - symbol: "tKEK", - decimals: 18, + "name": "tKEK", + "symbol": "tKEK", + "decimals": 18 }, "420692": { - name: "Alterium ETH", - symbol: "AltETH", - decimals: 18, + "name": "Alterium ETH", + "symbol": "AltETH", + "decimals": 18 }, "421611": { - name: "Arbitrum Rinkeby Ether", - symbol: "ETH", - decimals: 18, + "name": "Arbitrum Rinkeby Ether", + "symbol": "ETH", + "decimals": 18 }, "421613": { - name: "Arbitrum Goerli Ether", - symbol: "AGOR", - decimals: 18, + "name": "Arbitrum Goerli Ether", + "symbol": "AGOR", + "decimals": 18 }, "421614": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "424242": { - name: "FTN", - symbol: "FTN", - decimals: 18, + "name": "FTN", + "symbol": "FTN", + "decimals": 18 }, "431140": { - name: "Avalanche", - symbol: "AVAX", - decimals: 18, + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 }, "432201": { - name: "Dexalot", - symbol: "ALOT", - decimals: 18, + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 }, "432204": { - name: "Dexalot", - symbol: "ALOT", - decimals: 18, + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 }, "444444": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "444900": { - name: "Weelink Chain Token", - symbol: "tWLK", - decimals: 18, + "name": "Weelink Chain Token", + "symbol": "tWLK", + "decimals": 18 }, "471100": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "473861": { - name: "Ultra Pro", - symbol: "UPRO", - decimals: 18, + "name": "Ultra Pro", + "symbol": "UPRO", + "decimals": 18 }, "474142": { - name: "OpenCoin", - symbol: "OPC", - decimals: 10, + "name": "OpenCoin", + "symbol": "OPC", + "decimals": 10 }, "504441": { - name: "Playdapp", - symbol: "PDA", - decimals: 18, + "name": "Playdapp", + "symbol": "PDA", + "decimals": 18 }, "512512": { - name: "Caduceus Testnet Token", - symbol: "CMP", - decimals: 18, + "name": "Caduceus Testnet Token", + "symbol": "CMP", + "decimals": 18 }, "513100": { - name: "DisChain", - symbol: "DIS", - decimals: 18, + "name": "DisChain", + "symbol": "DIS", + "decimals": 18 }, "526916": { - name: "DO", - symbol: "DCT", - decimals: 18, + "name": "DO", + "symbol": "DCT", + "decimals": 18 }, "534351": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "534352": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "534849": { - name: "Shina Inu", - symbol: "SHI", - decimals: 18, + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 }, "535037": { - name: "BeanEco SmartChain", - symbol: "BESC", - decimals: 18, + "name": "BeanEco SmartChain", + "symbol": "BESC", + "decimals": 18 }, "552981": { - name: "OWCT", - symbol: "OWCT", - decimals: 18, + "name": "OWCT", + "symbol": "OWCT", + "decimals": 18 }, "555555": { - name: "Pentagon", - symbol: "PEN", - decimals: 18, + "name": "Pentagon", + "symbol": "PEN", + "decimals": 18 }, "555666": { - name: "Eclipse", - symbol: "ECLPS", - decimals: 18, + "name": "Eclipse", + "symbol": "ECLPS", + "decimals": 18 }, "622277": { - name: "Hypra", - symbol: "HYP", - decimals: 18, + "name": "Hypra", + "symbol": "HYP", + "decimals": 18 }, "622463": { - name: "TON", - symbol: "TON", - decimals: 18, + "name": "TON", + "symbol": "TON", + "decimals": 18 }, "641230": { - name: "Bear Network Chain Native Token", - symbol: "BRNKC", - decimals: 18, + "name": "Bear Network Chain Native Token", + "symbol": "BRNKC", + "decimals": 18 }, "651940": { - name: "ALL", - symbol: "ALL", - decimals: 18, + "name": "ALL", + "symbol": "ALL", + "decimals": 18 }, "656476": { - name: "EDU", - symbol: "EDU", - decimals: 18, + "name": "EDU", + "symbol": "EDU", + "decimals": 18 }, "660279": { - name: "Xai", - symbol: "XAI", - decimals: 18, + "name": "Xai", + "symbol": "XAI", + "decimals": 18 }, "666666": { - name: "VS", - symbol: "VS", - decimals: 18, + "name": "VS", + "symbol": "VS", + "decimals": 18 }, "666888": { - name: "Hela HLUSD", - symbol: "HLUSD", - decimals: 18, + "name": "Hela HLUSD", + "symbol": "HLUSD", + "decimals": 18 }, "686868": { - name: "Won", - symbol: "WON", - decimals: 18, + "name": "Won", + "symbol": "WON", + "decimals": 18 }, "696969": { - name: "Galadriel Devnet token", - symbol: "GAL", - decimals: 18, + "name": "Galadriel Devnet token", + "symbol": "GAL", + "decimals": 18 }, "710420": { - name: "TILT", - symbol: "TILT", - decimals: 18, + "name": "TILT", + "symbol": "TILT", + "decimals": 18 }, "713715": { - name: "Sei", - symbol: "SEI", - decimals: 18, + "name": "Sei", + "symbol": "SEI", + "decimals": 18 }, "721529": { - name: "ERAM", - symbol: "ERAM", - decimals: 18, + "name": "ERAM", + "symbol": "ERAM", + "decimals": 18 }, "743111": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "751230": { - name: "Bear Network Chain Testnet Token", - symbol: "tBRNKC", - decimals: 18, + "name": "Bear Network Chain Testnet Token", + "symbol": "tBRNKC", + "decimals": 18 }, "761412": { - name: "Miexs Coin", - symbol: "MIX", - decimals: 18, + "name": "Miexs Coin", + "symbol": "MIX", + "decimals": 18 }, "764984": { - name: "Lamina1 Test", - symbol: "L1T", - decimals: 18, + "name": "Lamina1 Test", + "symbol": "L1T", + "decimals": 18 }, "767368": { - name: "L1ID Test", - symbol: "L1IDT", - decimals: 18, + "name": "L1ID Test", + "symbol": "L1IDT", + "decimals": 18 }, "776877": { - name: "Modularium", - symbol: "MDM", - decimals: 18, + "name": "Modularium", + "symbol": "MDM", + "decimals": 18 }, "800001": { - name: "OctaSpace", - symbol: "OCTA", - decimals: 18, + "name": "OctaSpace", + "symbol": "OCTA", + "decimals": 18 }, "808080": { - name: "tBIZT", - symbol: "tBIZT", - decimals: 18, + "name": "tBIZT", + "symbol": "tBIZT", + "decimals": 18 }, "810180": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "810181": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "810182": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "820522": { - name: "TAS", - symbol: "tTAS", - decimals: 18, + "name": "TAS", + "symbol": "tTAS", + "decimals": 18 }, "827431": { - name: "Curve", - symbol: "CURVE", - decimals: 18, + "name": "Curve", + "symbol": "CURVE", + "decimals": 18 }, "839320": { - name: "Primal Network", - symbol: "PRM", - decimals: 18, + "name": "Primal Network", + "symbol": "PRM", + "decimals": 18 }, "846000": { - name: "APTA", - symbol: "APTA", - decimals: 18, + "name": "APTA", + "symbol": "APTA", + "decimals": 18 }, "855456": { - name: "Dodao", - symbol: "DODAO", - decimals: 18, + "name": "Dodao", + "symbol": "DODAO", + "decimals": 18 }, "879151": { - name: "BlocX", - symbol: "BLX", - decimals: 18, + "name": "BlocX", + "symbol": "BLX", + "decimals": 18 }, "888882": { - name: "REXX", - symbol: "REXX", - decimals: 18, + "name": "REXX", + "symbol": "REXX", + "decimals": 18 }, "888888": { - name: "VS", - symbol: "VS", - decimals: 18, + "name": "VS", + "symbol": "VS", + "decimals": 18 }, "900000": { - name: "Posichain Native Token", - symbol: "POSI", - decimals: 18, + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 }, "910000": { - name: "Posichain Native Token", - symbol: "POSI", - decimals: 18, + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 }, "912559": { - name: "RIA", - symbol: "RIA", - decimals: 18, + "name": "RIA", + "symbol": "RIA", + "decimals": 18 }, "920000": { - name: "Posichain Native Token", - symbol: "POSI", - decimals: 18, + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 }, "920001": { - name: "Posichain Native Token", - symbol: "POSI", - decimals: 18, + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 }, "923018": { - name: "FNCY", - symbol: "FNCY", - decimals: 18, + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 }, "955081": { - name: "Jono12 Token", - symbol: "JONO", - decimals: 18, + "name": "Jono12 Token", + "symbol": "JONO", + "decimals": 18 }, "955305": { - name: "ELV", - symbol: "ELV", - decimals: 18, + "name": "ELV", + "symbol": "ELV", + "decimals": 18 }, "978657": { - name: "Testnet MAGIC", - symbol: "MAGIC", - decimals: 18, + "name": "Testnet MAGIC", + "symbol": "MAGIC", + "decimals": 18 }, "984122": { - name: "TIA", - symbol: "TIA", - decimals: 18, + "name": "TIA", + "symbol": "TIA", + "decimals": 18 }, "984123": { - name: "TIA", - symbol: "TIA", - decimals: 18, + "name": "TIA", + "symbol": "TIA", + "decimals": 18 }, "988207": { - name: "ECROX COIN", - symbol: "ECROX", - decimals: 18, + "name": "ECROX COIN", + "symbol": "ECROX", + "decimals": 18 }, "998899": { - name: "CHAIN", - symbol: "CHAIN", - decimals: 18, + "name": "CHAIN", + "symbol": "CHAIN", + "decimals": 18 }, "999999": { - name: "AMC", - symbol: "AMC", - decimals: 18, + "name": "AMC", + "symbol": "AMC", + "decimals": 18 }, "1100789": { - name: "NMT", - symbol: "NMT", - decimals: 18, + "name": "NMT", + "symbol": "NMT", + "decimals": 18 }, "1127469": { - name: "Tiltyard Token", - symbol: "TILTG", - decimals: 18, + "name": "Tiltyard Token", + "symbol": "TILTG", + "decimals": 18 }, "1261120": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "1313114": { - name: "Etho Protocol", - symbol: "ETHO", - decimals: 18, + "name": "Etho Protocol", + "symbol": "ETHO", + "decimals": 18 }, "1313500": { - name: "Xerom Ether", - symbol: "XERO", - decimals: 18, + "name": "Xerom Ether", + "symbol": "XERO", + "decimals": 18 }, "1337702": { - name: "kintsugi Ethere", - symbol: "kiETH", - decimals: 18, + "name": "kintsugi Ethere", + "symbol": "kiETH", + "decimals": 18 }, "1337802": { - name: "Testnet ETH", - symbol: "ETH", - decimals: 18, + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 }, "1337803": { - name: "Testnet ETH", - symbol: "ETH", - decimals: 18, + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 }, "1398243": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1612127": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1637450": { - name: "tBNB", - symbol: "tBNB", - decimals: 18, + "name": "tBNB", + "symbol": "tBNB", + "decimals": 18 }, "1731313": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2021398": { - name: "DeBank USD", - symbol: "USD", - decimals: 18, + "name": "DeBank USD", + "symbol": "USD", + "decimals": 18 }, "2099156": { - name: "Plian Token", - symbol: "PI", - decimals: 18, + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 }, "2206132": { - name: "LAT", - symbol: "lat", - decimals: 18, + "name": "LAT", + "symbol": "lat", + "decimals": 18 }, "2611555": { - name: "DGC", - symbol: "DGC", - decimals: 18, + "name": "DGC", + "symbol": "DGC", + "decimals": 18 }, "3132023": { - name: "SAHARA", - symbol: "SAH", - decimals: 18, + "name": "SAHARA", + "symbol": "SAH", + "decimals": 18 }, "3141592": { - name: "testnet filecoin", - symbol: "tFIL", - decimals: 18, + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 }, "3397901": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "3441005": { - name: "Manta", - symbol: "MANTA", - decimals: 18, + "name": "Manta", + "symbol": "MANTA", + "decimals": 18 }, "3441006": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "4000003": { - name: "ZERO", - symbol: "ZERO", - decimals: 18, + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 }, "4281033": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "5112023": { - name: "NUMB Token", - symbol: "NUMB", - decimals: 18, + "name": "NUMB Token", + "symbol": "NUMB", + "decimals": 18 }, "5167003": { - name: "MXC Wannsee zkEVM Testnet", - symbol: "MXC", - decimals: 18, + "name": "MXC Wannsee zkEVM Testnet", + "symbol": "MXC", + "decimals": 18 }, "5167004": { - name: "Moonchain Geneva Testnet", - symbol: "MXC", - decimals: 18, + "name": "Moonchain Geneva Testnet", + "symbol": "MXC", + "decimals": 18 }, "5201420": { - name: "Electroneum", - symbol: "ETN", - decimals: 18, + "name": "Electroneum", + "symbol": "ETN", + "decimals": 18 }, "5318008": { - name: "Kopli React", - symbol: "REACT", - decimals: 18, + "name": "Kopli React", + "symbol": "REACT", + "decimals": 18 }, "5555555": { - name: "Imversed Token", - symbol: "IMV", - decimals: 18, + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 }, "5555558": { - name: "Imversed Token", - symbol: "IMV", - decimals: 18, + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 }, "6038361": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "6666665": { - name: "SAFE(AnWang)", - symbol: "SAFE", - decimals: 18, + "name": "SAFE(AnWang)", + "symbol": "SAFE", + "decimals": 18 }, "6666666": { - name: "SAFE(AnWang)", - symbol: "SAFE", - decimals: 18, + "name": "SAFE(AnWang)", + "symbol": "SAFE", + "decimals": 18 }, "7225878": { - name: "OAS", - symbol: "OAS", - decimals: 18, + "name": "OAS", + "symbol": "OAS", + "decimals": 18 }, "7355310": { - name: "Vessel ETH", - symbol: "VETH", - decimals: 18, + "name": "Vessel ETH", + "symbol": "VETH", + "decimals": 18 }, "7668378": { - name: "Shiba Predator", - symbol: "QOM", - decimals: 18, + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 }, "7762959": { - name: "Musicoin", - symbol: "MUSIC", - decimals: 18, + "name": "Musicoin", + "symbol": "MUSIC", + "decimals": 18 }, "7777777": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "8007736": { - name: "Plian Token", - symbol: "PI", - decimals: 18, + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 }, "8008135": { - name: "tFHE", - symbol: "tFHE", - decimals: 18, + "name": "tFHE", + "symbol": "tFHE", + "decimals": 18 }, "8080808": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "8601152": { - name: "WATER", - symbol: "WATER", - decimals: 18, + "name": "WATER", + "symbol": "WATER", + "decimals": 18 }, "8794598": { - name: "HAP", - symbol: "HAP", - decimals: 18, + "name": "HAP", + "symbol": "HAP", + "decimals": 18 }, "8888881": { - name: "QARE", - symbol: "QARE", - decimals: 18, + "name": "QARE", + "symbol": "QARE", + "decimals": 18 }, "8888888": { - name: "QARE", - symbol: "QARE", - decimals: 18, + "name": "QARE", + "symbol": "QARE", + "decimals": 18 }, "9322252": { - name: "Gas", - symbol: "GAS", - decimals: 18, + "name": "Gas", + "symbol": "GAS", + "decimals": 18 }, "9322253": { - name: "Gas", - symbol: "GAS", - decimals: 18, + "name": "Gas", + "symbol": "GAS", + "decimals": 18 }, "10067275": { - name: "Plian Token", - symbol: "TPI", - decimals: 18, + "name": "Plian Token", + "symbol": "TPI", + "decimals": 18 }, "10101010": { - name: "Soverun", - symbol: "SVRN", - decimals: 18, + "name": "Soverun", + "symbol": "SVRN", + "decimals": 18 }, "10241025": { - name: "Ethereum", - symbol: "ETH", - decimals: 18, + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 }, "11155111": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "11155420": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "13068200": { - name: "COTI2", - symbol: "COTI2", - decimals: 18, + "name": "COTI2", + "symbol": "COTI2", + "decimals": 18 }, "13371337": { - name: "PepChain Churchill Ether", - symbol: "TPEP", - decimals: 18, + "name": "PepChain Churchill Ether", + "symbol": "TPEP", + "decimals": 18 }, "14288640": { - name: "DAON", - symbol: "DEB", - decimals: 18, + "name": "DAON", + "symbol": "DEB", + "decimals": 18 }, "16658437": { - name: "Plian Testnet Token", - symbol: "TPI", - decimals: 18, + "name": "Plian Testnet Token", + "symbol": "TPI", + "decimals": 18 }, "17000920": { - name: "ETH", - symbol: "ETH", - decimals: 18, + "name": "ETH", + "symbol": "ETH", + "decimals": 18 }, "18289463": { - name: "IOLite Ether", - symbol: "ILT", - decimals: 18, + "name": "IOLite Ether", + "symbol": "ILT", + "decimals": 18 }, "20180427": { - name: "FREE", - symbol: "FREE", - decimals: 18, + "name": "FREE", + "symbol": "FREE", + "decimals": 18 }, "20180430": { - name: "SmartMesh Native Token", - symbol: "SMT", - decimals: 18, + "name": "SmartMesh Native Token", + "symbol": "SMT", + "decimals": 18 }, "20181205": { - name: "quarkblockchain Native Token", - symbol: "QKI", - decimals: 18, + "name": "quarkblockchain Native Token", + "symbol": "QKI", + "decimals": 18 }, "20201022": { - name: "Pego Native Token", - symbol: "PG", - decimals: 18, + "name": "Pego Native Token", + "symbol": "PG", + "decimals": 18 }, "20240324": { - name: "DeBank USD", - symbol: "USD", - decimals: 18, + "name": "DeBank USD", + "symbol": "USD", + "decimals": 18 }, "20241133": { - name: "SWANETH", - symbol: "sETH", - decimals: 18, + "name": "SWANETH", + "symbol": "sETH", + "decimals": 18 }, "20482050": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "22052002": { - name: "Excelon", - symbol: "xlon", - decimals: 18, + "name": "Excelon", + "symbol": "xlon", + "decimals": 18 }, "27082017": { - name: "TExlcoin", - symbol: "TEXL", - decimals: 18, + "name": "TExlcoin", + "symbol": "TEXL", + "decimals": 18 }, "27082022": { - name: "Exlcoin", - symbol: "EXL", - decimals: 18, + "name": "Exlcoin", + "symbol": "EXL", + "decimals": 18 }, "28122024": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "28945486": { - name: "Auxilium coin", - symbol: "AUX", - decimals: 18, + "name": "Auxilium coin", + "symbol": "AUX", + "decimals": 18 }, "29032022": { - name: "Flacoin", - symbol: "FLA", - decimals: 18, + "name": "Flacoin", + "symbol": "FLA", + "decimals": 18 }, "31415926": { - name: "testnet filecoin", - symbol: "tFIL", - decimals: 18, + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 }, "35855456": { - name: "JOYS", - symbol: "JOYS", - decimals: 18, + "name": "JOYS", + "symbol": "JOYS", + "decimals": 18 }, "37084624": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "39916801": { - name: "Kozi", - symbol: "KOZI", - decimals: 18, + "name": "Kozi", + "symbol": "KOZI", + "decimals": 18 }, "43214913": { - name: "maistestsubnet", - symbol: "MAI", - decimals: 18, + "name": "maistestsubnet", + "symbol": "MAI", + "decimals": 18 }, "61717561": { - name: "Aquachain Ether", - symbol: "AQUA", - decimals: 18, + "name": "Aquachain Ether", + "symbol": "AQUA", + "decimals": 18 }, "65010002": { - name: "Bakerloo Auton", - symbol: "ATN", - decimals: 18, + "name": "Bakerloo Auton", + "symbol": "ATN", + "decimals": 18 }, "65100002": { - name: "Piccadilly Auton", - symbol: "ATN", - decimals: 18, + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 }, "68840142": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "77787778": { - name: "0xHash", - symbol: "HETH", - decimals: 18, + "name": "0xHash", + "symbol": "HETH", + "decimals": 18 }, "88888888": { - name: "TEAM", - symbol: "$TEAM", - decimals: 18, + "name": "TEAM", + "symbol": "$TEAM", + "decimals": 18 }, "94204209": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "99415706": { - name: "TOYS", - symbol: "TOYS", - decimals: 18, + "name": "TOYS", + "symbol": "TOYS", + "decimals": 18 }, "108160679": { - name: "Oraichain Token", - symbol: "ORAI", - decimals: 18, + "name": "Oraichain Token", + "symbol": "ORAI", + "decimals": 18 }, "111557560": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "123420111": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "161221135": { - name: "Plume Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Plume Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "168587773": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "192837465": { - name: "Gather", - symbol: "GTH", - decimals: 18, + "name": "Gather", + "symbol": "GTH", + "decimals": 18 }, "222000222": { - name: "gMeld", - symbol: "gMELD", - decimals: 18, + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 }, "245022926": { - name: "Neon", - symbol: "NEON", - decimals: 18, + "name": "Neon", + "symbol": "NEON", + "decimals": 18 }, "245022934": { - name: "Neon", - symbol: "NEON", - decimals: 18, + "name": "Neon", + "symbol": "NEON", + "decimals": 18 }, "278611351": { - name: "sFuel", - symbol: "SFUEL", - decimals: 18, + "name": "sFuel", + "symbol": "SFUEL", + "decimals": 18 }, "311752642": { - name: "OLT", - symbol: "OLT", - decimals: 18, + "name": "OLT", + "symbol": "OLT", + "decimals": 18 }, "328527624": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "333000333": { - name: "gMeld", - symbol: "gMELD", - decimals: 18, + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 }, "356256156": { - name: "Gather", - symbol: "GTH", - decimals: 18, + "name": "Gather", + "symbol": "GTH", + "decimals": 18 }, "486217935": { - name: "Gather", - symbol: "GTH", - decimals: 18, + "name": "Gather", + "symbol": "GTH", + "decimals": 18 }, "666666666": { - name: "DEGEN", - symbol: "DEGEN", - decimals: 18, + "name": "DEGEN", + "symbol": "DEGEN", + "decimals": 18 }, "888888888": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "889910245": { - name: "PTCE", - symbol: "PTCE", - decimals: 18, + "name": "PTCE", + "symbol": "PTCE", + "decimals": 18 }, "889910246": { - name: "PTCE", - symbol: "PTCE", - decimals: 18, + "name": "PTCE", + "symbol": "PTCE", + "decimals": 18 }, "974399131": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "999999999": { - name: "Sepolia Ether", - symbol: "ETH", - decimals: 18, + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, "1020352220": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "1122334455": { - name: "IPOS Network Ether", - symbol: "IPOS", - decimals: 18, + "name": "IPOS Network Ether", + "symbol": "IPOS", + "decimals": 18 }, "1146703430": { - name: "Cyb", - symbol: "CYB", - decimals: 18, + "name": "Cyb", + "symbol": "CYB", + "decimals": 18 }, "1273227453": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "1313161554": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1313161555": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1313161556": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1313161560": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1350216234": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "1351057110": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "1380012617": { - name: "Ethereum", - symbol: "ETH", - decimals: 18, + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 }, "1380996178": { - name: "Raptor", - symbol: "RPTR", - decimals: 18, + "name": "Raptor", + "symbol": "RPTR", + "decimals": 18 }, "1444673419": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "1482601649": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "1564830818": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "1666600000": { - name: "ONE", - symbol: "ONE", - decimals: 18, + "name": "ONE", + "symbol": "ONE", + "decimals": 18 }, "1666600001": { - name: "ONE", - symbol: "ONE", - decimals: 18, + "name": "ONE", + "symbol": "ONE", + "decimals": 18 }, "1666700000": { - name: "ONE", - symbol: "ONE", - decimals: 18, + "name": "ONE", + "symbol": "ONE", + "decimals": 18 }, "1666700001": { - name: "ONE", - symbol: "ONE", - decimals: 18, + "name": "ONE", + "symbol": "ONE", + "decimals": 18 }, "1666900000": { - name: "ONE", - symbol: "ONE", - decimals: 18, + "name": "ONE", + "symbol": "ONE", + "decimals": 18 }, "1666900001": { - name: "ONE", - symbol: "ONE", - decimals: 18, + "name": "ONE", + "symbol": "ONE", + "decimals": 18 }, "1802203764": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "1918988905": { - name: "Ethereum", - symbol: "ETH", - decimals: 18, + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 }, "2021121117": { - name: "DataHoppers", - symbol: "HOP", - decimals: 18, + "name": "DataHoppers", + "symbol": "HOP", + "decimals": 18 }, "2046399126": { - name: "sFUEL", - symbol: "sFUEL", - decimals: 18, + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 }, "3125659152": { - name: "Pirl Ether", - symbol: "PIRL", - decimals: 18, + "name": "Pirl Ether", + "symbol": "PIRL", + "decimals": 18 }, "4216137055": { - name: "OLT", - symbol: "OLT", - decimals: 18, + "name": "OLT", + "symbol": "OLT", + "decimals": 18 }, "11297108109": { - name: "PALM", - symbol: "PALM", - decimals: 18, + "name": "PALM", + "symbol": "PALM", + "decimals": 18 }, "11297108099": { - name: "PALM", - symbol: "PALM", - decimals: 18, + "name": "PALM", + "symbol": "PALM", + "decimals": 18 }, "28872323069": { - name: "GitSwarm Ether", - symbol: "GS-ETH", - decimals: 18, + "name": "GitSwarm Ether", + "symbol": "GS-ETH", + "decimals": 18 }, "37714555429": { - name: "sXai", - symbol: "sXAI", - decimals: 18, + "name": "sXai", + "symbol": "sXAI", + "decimals": 18 }, "88153591557": { - name: "GelatoCGT", - symbol: "CGT", - decimals: 18, + "name": "GelatoCGT", + "symbol": "CGT", + "decimals": 18 }, "107107114116": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "111222333444": { - name: "ALT", - symbol: "ALT", - decimals: 18, + "name": "ALT", + "symbol": "ALT", + "decimals": 18 }, "197710212030": { - name: "Ntity", - symbol: "NTT", - decimals: 18, + "name": "Ntity", + "symbol": "NTT", + "decimals": 18 }, "197710212031": { - name: "Ntity Haradev", - symbol: "NTTH", - decimals: 18, + "name": "Ntity Haradev", + "symbol": "NTTH", + "decimals": 18 }, "202402181627": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "383414847825": { - name: "Zeniq", - symbol: "ZENIQ", - decimals: 18, + "name": "Zeniq", + "symbol": "ZENIQ", + "decimals": 18 }, "666301171999": { - name: "PDC", - symbol: "PDC", - decimals: 18, + "name": "PDC", + "symbol": "PDC", + "decimals": 18 }, "6022140761023": { - name: "Molereum Ether", - symbol: "MOLE", - decimals: 18, + "name": "Molereum Ether", + "symbol": "MOLE", + "decimals": 18 }, "2713017997578000": { - name: "Ether", - symbol: "ETH", - decimals: 18, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "2716446429837000": { - name: "Ether", - symbol: "ETH", - decimals: 18, - }, + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + } }; export const EXTRA_RPCS = { @@ -23139,2813 +21656,8505 @@ export const EXTRA_RPCS = { "https://rpc.mevblocker.io/fast", "https://rpc.mevblocker.io/noreverts", "https://rpc.mevblocker.io/fullprivacy", - "wss://eth.drpc.org", + "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" + ] +}; + +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" ], - "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", + "84532": [], + "84886": [], + "85449": [], + "88002": [ + "https://proteusfaucet.nautchain.xyz" ], - "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", + "88559": [], + "88817": [], + "88819": [], + "88882": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" ], - "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", + "88888": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" ], - "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", + "90001": [], + "90210": [ + "https://faucet.beverlyhills.ethdevops.io" ], - "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", + "90354": [ + "https://www.campnetwork.xyz/faucet" ], - "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", + "91002": [ + "https://faucet.eclipse.builders" ], - "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", + "91120": [], + "91715": [], + "92001": [ + "https://faucet.lambda.top" ], - "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", + "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" ], - "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", + "224168": [], + "224422": [], + "224433": [], + "230315": [ + "https://testnet.hashkeychain/faucet" ], - "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", + "234666": [], + "240515": [], + "246529": [], + "246785": [], + "247253": [], + "256256": [], + "262371": [ + "https://faucet.eclatscan.com" ], - "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", + "266256": [], + "271271": [ + "https://faucet.egonscan.com" ], - "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", + "281121": [], + "282828": [], + "309075": [], + "313313": [], + "314159": [ + "https://faucet.calibration.fildev.network/" ], - "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", + "322202": [], + "323213": [ + "https://faucet.bloomgenesis.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", + "330844": [ + "https://faucet.tscscan.com" ], - "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", + "333313": [], + "333331": [], + "333333": [], + "333666": [ + "https://apps-test.adigium.com/faucet" ], - "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", + "333777": [ + "https://apps-test.adigium.com/faucet" ], - "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", + "333888": [ + "https://faucet.polis.tech" ], - "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", + "333999": [ + "https://faucet.polis.tech" ], - "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", + "336655": [ + "https://faucet-testnet.uniport.network" ], - "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"], - "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", + "336666": [], + "355110": [], + "355113": [ + "https://bitfinity.network/faucet" ], - "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", + "360890": [], + "363636": [], + "373737": [], + "381931": [], + "381932": [], + "404040": [ + "https://faucet.tipboxcoin.net" ], - "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", + "413413": [], + "420420": [], + "420666": [], + "420692": [], + "421611": [ + "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" ], - "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", + "421613": [], + "421614": [], + "424242": [], + "431140": [], + "432201": [ + "https://faucet.avax.network/?subnet=dexalot" ], - "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", + "432204": [], + "444444": [], + "444900": [ + "https://faucet.weelink.gw002.oneitfarm.com" ], - "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", + "471100": [], + "473861": [], + "474142": [], + "504441": [], + "512512": [ + "https://dev.caduceus.foundation/testNetwork" ], - "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", + "513100": [], + "526916": [], + "534351": [], + "534352": [], + "534849": [ + "https://faucet.shinarium.org" ], - "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", + "535037": [], + "552981": [ + "https://faucet.oneworldchain.org" ], - "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", + "555555": [ + "https://bridge-testnet.pentagon.games" ], - "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", + "555666": [], + "622277": [], + "622463": [], + "641230": [], + "651940": [], + "656476": [], + "660279": [], + "666666": [ + "https://vpioneerfaucet.visionscan.org" ], - "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", + "666888": [ + "https://testnet-faucet.helachain.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"], - "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"], - "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"], - "1224": ["https://testnet-rpc.buildonhybrid.com"], - "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", + "686868": [ + "https://faucet.wondollars.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", + "696969": [ + "https://docs.galadriel.com/faucet" ], - "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", + "710420": [], + "713715": [ + "https://sei-faucet.nima.enterprises", + "https://sei-evm.faucetme.pro" ], - "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", + "721529": [], + "743111": [], + "751230": [ + "https://faucet.bearnetwork.net" ], - "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"], - "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", + "761412": [], + "764984": [], + "767368": [], + "776877": [], + "800001": [], + "808080": [], + "810180": [], + "810181": [], + "810182": [], + "820522": [], + "827431": [], + "839320": [ + "https://faucet.prmscan.org" ], - "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", + "846000": [], + "855456": [], + "879151": [], + "888882": [], + "888888": [], + "900000": [], + "910000": [ + "https://faucet.posichain.org/" ], - "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", + "912559": [ + "https://faucet.evm.dusk-3.devnet.astria.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", + "920000": [ + "https://faucet.posichain.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", + "920001": [ + "https://faucet.posichain.org/" ], - "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"], - "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"], - "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"], - "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", + "923018": [ + "https://faucet-testnet.fncy.world" ], - "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", + "955081": [], + "955305": [], + "978657": [ + "https://portal.treasure.lol/faucet" ], - "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", + "984122": [], + "984123": [], + "988207": [], + "998899": [ + "https://faucet.chaingames.io" ], - "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", + "999999": [], + "1100789": [], + "1127469": [], + "1261120": [], + "1313114": [], + "1313500": [], + "1337702": [ + "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", + "https://faucet.kintsugi.themerge.dev" ], - "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", + "1337802": [ + "https://faucet.kiln.themerge.dev", + "https://kiln-faucet.pk910.de", + "https://kilnfaucet.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", + "1337803": [ + "https://faucet.zhejiang.ethpandaops.io", + "https://zhejiang-faucet.pk910.de" ], - "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", + "1398243": [], + "1612127": [], + "1637450": [], + "1731313": [], + "2021398": [], + "2099156": [], + "2206132": [ + "https://devnet2faucet.platon.network/faucet" ], - "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", + "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" ], - "8882": [ - "https://rpc-opal.unique.network", - "https://us-rpc-opal.unique.network", - "https://eu-rpc-opal.unique.network", - "https://asia-rpc-opal.unique.network", + "10241025": [], + "11155111": [ + "http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}" ], - "8883": [ - "https://rpc-sapphire.unique.network", - "https://us-rpc-sapphire.unique.network", - "https://eu-rpc-sapphire.unique.network", - "https://asia-rpc-sapphire.unique.network", + "11155420": [ + "https://app.optimism.io/faucet" ], - "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", + "13068200": [ + "https://faucet.coti.io" ], - "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", + "13371337": [], + "14288640": [], + "16658437": [], + "17000920": [], + "18289463": [], + "20180427": [], + "20180430": [], + "20181205": [], + "20201022": [], + "20240324": [], + "20241133": [], + "20482050": [], + "22052002": [], + "27082017": [ + "https://faucet.exlscan.com" ], - "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", + "27082022": [], + "28122024": [], + "28945486": [], + "29032022": [], + "31415926": [], + "35855456": [], + "37084624": [ + "https://www.sfuelstation.com/" ], - "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", + "39916801": [], + "43214913": [], + "61717561": [ + "https://aquacha.in/faucet" ], - "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"], - "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", + "65010002": [ + "https://faucet.autonity.org/" ], - "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", + "65100002": [], + "68840142": [ + "https://faucet.triangleplatform.com/frame/testnet" ], - "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", + "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/" ], - "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", + "889910246": [], + "974399131": [ + "https://www.sfuelstation.com/" ], - "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", + "999999999": [], + "1020352220": [ + "https://www.sfuelstation.com/" ], - "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}", + "1122334455": [], + "1146703430": [], + "1273227453": [ + "https://dashboard.humanprotocol.org/faucet" ], - "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", + "1313161554": [], + "1313161555": [], + "1313161556": [], + "1313161560": [], + "1350216234": [ + "https://sfuel.skale.network/" ], - "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", + "1351057110": [ + "https://sfuel.skale.network/staging/chaos" ], - "80002": ["https://rpc-amoy.polygon.technology", "https://polygon-amoy-bor-rpc.publicnode.com", "wss://polygon-amoy-bor-rpc.publicnode.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", + "1380012617": [], + "1380996178": [], + "1444673419": [ + "https://www.sfuelstation.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", + "1482601649": [ + "https://sfuel.skale.network/" ], - "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", + "1564830818": [ + "https://sfuel.dirtroad.dev" ], - "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", + "1666600000": [], + "1666600001": [], + "1666700000": [ + "https://faucet.pops.one" ], - "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", + "1666700001": [ + "https://faucet.pops.one" ], - "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", + "1666900000": [], + "1666900001": [], + "1802203764": [], + "1918988905": [], + "2021121117": [], + "2046399126": [ + "https://ruby.exchange/faucet.html", + "https://sfuel.mylilius.com/" ], - "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", + "3125659152": [], + "4216137055": [ + "https://frankenstein-faucet.oneledger.network" ], - "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"], + "11297108109": [], + "11297108099": [], + "28872323069": [], + "37714555429": [], + "88153591557": [], + "107107114116": [], + "111222333444": [], + "197710212030": [], + "197710212031": [], + "202402181627": [], + "383414847825": [ + "https://faucet.zeniq.net/" + ], + "666301171999": [], + "6022140761023": [], + "2713017997578000": [], + "2716446429837000": [] }; diff --git a/types/handler.ts b/types/handler.ts index 9baf8c9..9c728ae 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -39,8 +39,8 @@ export type HandlerInterface = { }; export type HandlerConstructorConfig = { - networkId: ChainId; - networkName: ChainName | null; + networkId: NetworkId; + networkName: NetworkName | null; networkRpcs: string[] | null; autoStorage: boolean | null; cacheRefreshCycles: number | null; @@ -52,13 +52,13 @@ export type NetworkRPCs = typeof networkRpcs; export type NetworkCurrencies = typeof networkCurrencies; export type NetworkExplorers = typeof networkExplorers; -// filtered chainId union -export type ChainId = keyof typeof EXTRA_RPCS | "31337" | "1337"; +// filtered NetworkId union +export type NetworkId = keyof typeof EXTRA_RPCS | "31337" | "1337"; -// unfiltered Record +// unfiltered Record type ChainsUnfiltered = { -readonly [K in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[K]; }; -// filtered ChainName union -export type ChainName = ChainsUnfiltered[ChainId] | "anvil" | "hardhat"; +// filtered NetworkName union +export type NetworkName = ChainsUnfiltered[NetworkId] | "anvil" | "hardhat"; diff --git a/types/rpc-handler.ts b/types/rpc-handler.ts index 4fe9181..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, networkIds } from "./constants"; -import { HandlerInterface, HandlerConstructorConfig, ChainId, ChainName } from "./handler"; +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: ChainId; - private _networkName: ChainName; + private _networkId: NetworkId; + private _networkName: NetworkName; private _env: string = "node"; private _rpcTimeout: number = Number.MAX_SAFE_INTEGER; // ms diff --git a/yarn.lock b/yarn.lock index b35b07c..97ef0b0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1,9798 +1,7028 @@ -# This file is generated by running "yarn install" inside your project. -# Manual changes might be lost - proceed with caution! - -__metadata: - version: 8 - cacheKey: 10c0 - -"@ampproject/remapping@npm:^2.2.0": - version: 2.3.0 - resolution: "@ampproject/remapping@npm:2.3.0" - dependencies: - "@jridgewell/gen-mapping": "npm:^0.3.5" - "@jridgewell/trace-mapping": "npm:^0.3.24" - checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed - 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" - dependencies: - "@babel/highlight": "npm:^7.24.2" - picocolors: "npm:^1.0.0" - checksum: 10c0/d1d4cba89475ab6aab7a88242e1fd73b15ecb9f30c109b69752956434d10a26a52cbd37727c4eca104b6d45227bd1dfce39a6a6f4a14c9b2f07f871e968cf406 - 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 - 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" - 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" - 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 - 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" - dependencies: - "@babel/types": "npm:^7.24.5" - "@jridgewell/gen-mapping": "npm:^0.3.5" - "@jridgewell/trace-mapping": "npm:^0.3.25" - jsesc: "npm:^2.5.1" - checksum: 10c0/0d64f880150e7dfb92ceff2b4ac865f36aa1e295120920246492ffd0146562dabf79ba8699af1c8833f8a7954818d4d146b7b02f808df4d6024fb99f98b2f78d - 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" - dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 10c0/5a80dc364ddda26b334bbbc0f6426cab647381555ef7d0cd32eb284e35b867c012ce6ce7d52a64672ed71383099c99d32765b3d260626527bb0e3470b0f58e45 - 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" - dependencies: - "@babel/types": "npm:^7.22.15" - checksum: 10c0/2535e3824ca6337f65786bbac98e562f71699f25532cecd196f027d7698b4967a96953d64e36567956658ad1a05ccbdc62d1ba79ee751c79f4f1d2d3ecc2e01c - 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" - dependencies: - "@babel/compat-data": "npm:^7.23.5" - "@babel/helper-validator-option": "npm:^7.23.5" - browserslist: "npm:^4.22.2" - lru-cache: "npm:^5.1.1" - semver: "npm:^6.3.1" - checksum: 10c0/ba38506d11185f48b79abf439462ece271d3eead1673dd8814519c8c903c708523428806f05f2ec5efd0c56e4e278698fac967e5a4b5ee842c32415da54bc6fa - 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" - 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" - semver: "npm:^6.3.1" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/afc72e8075a249663f8024ef1760de4c0b9252bdde16419ac955fa7e15b8d4096ca1e01f796df4fa8cfdb056708886f60b631ad492242a8e47307974fc305920 - 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" - dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - regexpu-core: "npm:^5.3.1" - semver: "npm:^6.3.1" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/8eba4c1b7b94a83e7a82df5c3e504584ff0ba6ab8710a67ecc2c434a7fb841a29c2f5c94d2de51f25446119a1df538fa90b37bd570db22ddd5e7147fe98277c6 - languageName: node - linkType: hard - -"@babel/helper-define-polyfill-provider@npm:^0.6.1, @babel/helper-define-polyfill-provider@npm:^0.6.2": - version: 0.6.2 - resolution: "@babel/helper-define-polyfill-provider@npm:0.6.2" - dependencies: - "@babel/helper-compilation-targets": "npm:^7.22.6" - "@babel/helper-plugin-utils": "npm:^7.22.5" - debug: "npm:^4.1.1" - lodash.debounce: "npm:^4.0.8" - resolve: "npm:^1.14.2" - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: 10c0/f777fe0ee1e467fdaaac059c39ed203bdc94ef2465fb873316e9e1acfc511a276263724b061e3b0af2f6d7ad3ff174f2bb368fde236a860e0f650fda43d7e022 - 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 - 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" - dependencies: - "@babel/template": "npm:^7.22.15" - "@babel/types": "npm:^7.23.0" - checksum: 10c0/d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428 - 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" - dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 10c0/60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208 - 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" - dependencies: - "@babel/types": "npm:^7.24.5" - checksum: 10c0/a3c0276a1ede8648a0e6fd86ad846cd57421d05eddfa29446b8b5a013db650462022b9ec1e65ea32c747d0542d729c80866830697f94fb12d603e87c51f080a5 - 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" - dependencies: - "@babel/types": "npm:^7.24.0" - checksum: 10c0/052c188adcd100f5e8b6ff0c9643ddaabc58b6700d3bbbc26804141ad68375a9f97d9d173658d373d31853019e65f62610239e3295cdd58e573bdcb2fded188d - 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" - 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" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/6e77d72f62b7e87abaea800ea0bccd4d54cde26485750969f5f493c032eb63251eb50c3522cace557781565d51c1d0c4bcc866407d24becfb109c18fb92c978d - 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" - dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 10c0/31b41a764fc3c585196cf5b776b70cf4705c132e4ce9723f39871f215f2ddbfb2e28a62f9917610f67c8216c1080482b9b05f65dd195dae2a52cef461f2ac7b8 - 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 - 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" - 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" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/aa93aa74250b636d477e8d863fbe59d4071f8c2654841b7ac608909e480c1cf3ff7d7af5a4038568829ad09d810bb681668cbe497d9c89ba5c352793dc9edf1e - 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" - 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" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/d39a3df7892b7c3c0e307fb229646168a9bd35e26a72080c2530729322600e8cff5f738f44a14860a2358faffa741b6a6a0d6749f113387b03ddbfa0ec10e1a0 - 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" - dependencies: - "@babel/types": "npm:^7.24.5" - checksum: 10c0/d96a0ab790a400f6c2dcbd9457b9ca74b9ba6d0f67ff9cd5bcc73792c8fbbd0847322a0dddbd8987dd98610ee1637c680938c7d83d3ffce7d06d7519d823d996 - 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" - dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 10c0/ab7fa2aa709ab49bb8cd86515a1e715a3108c4bb9a616965ba76b43dc346dee66d1004ccf4d222b596b6224e43e04cbc5c3a34459501b388451f8c589fbc3691 - 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" - dependencies: - "@babel/types": "npm:^7.24.5" - checksum: 10c0/d7a812d67d031a348f3fb0e6263ce2dbe6038f81536ba7fb16db385383bcd6542b71833194303bf6d3d0e4f7b6b584c9c8fae8772122e2ce68fc9bdf07f4135d - 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 - 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 - 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 - 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" - dependencies: - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/template": "npm:^7.24.0" - "@babel/types": "npm:^7.24.5" - checksum: 10c0/242fcd32d59d26463fd8d989707b88691deec871ac2bf15e03ab2f1b185d1d4f3db2c6a8dd3c10c89d4ff63da238df1c4d318cfc3dcd8e1c1fabdcf27f28d858 - languageName: node - linkType: hard - -"@babel/helpers@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helpers@npm:7.24.5" - dependencies: - "@babel/template": "npm:^7.24.0" - "@babel/traverse": "npm:^7.24.5" - "@babel/types": "npm:^7.24.5" - checksum: 10c0/0630b0223c3a9a34027ddc05b3bac54d68d5957f84e92d2d4814b00448a76e12f9188f9c85cfce2011696d82a8ffcbd8189da097c0af0181d32eb27eca34185e - languageName: node - linkType: hard - -"@babel/highlight@npm:^7.24.2": - version: 7.24.5 - resolution: "@babel/highlight@npm:7.24.5" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.24.5" - chalk: "npm:^2.4.2" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.0.0" - checksum: 10c0/e98047d3ad24608bfa596d000c861a2cc875af897427f2833b91a4e0d4cead07301a7ec15fa26093dcd61e036e2eed2db338ae54f93016fe0dc785fadc4159db - 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" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/8333a6ad5328bad34fa0e12bcee147c3345ea9a438c0909e7c68c6cfbea43c464834ffd7eabd1cbc1c62df0a558e22ffade9f5b29440833ba7b33d96a71f88c0 - 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" - dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-plugin-utils": "npm:^7.24.5" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/b471972dcc4a3ba32821329a57725e2b563421e975d7ffec7fcabd70af0fced6a50bcc9ed2a8cbd4a9ac7c09cfbf43c7116e82f3b9064b33a22309500b632108 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/d4e592e6fc4878654243d2e7b51ea86471b868a8cb09de29e73b65d2b64159990c6c198fd7c9c2af2e38b1cddf70206243792853c47384a84f829dada152f605 - 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" - 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" - peerDependencies: - "@babel/core": ^7.13.0 - checksum: 10c0/351c36e45795a7890d610ab9041a52f4078a59429f6e74c281984aa44149a10d43e82b3a8172c703c0d5679471e165d1c02b6d2e45a677958ee301b89403f202 - 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" - dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/d7dd5a59a54635a3152895dcaa68f3370bb09d1f9906c1e72232ff759159e6be48de4a598a993c986997280a2dc29922a48aaa98020f16439f3f57ad72788354 - languageName: node - linkType: hard - -"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": - version: 7.21.0-placeholder-for-preset-env.2 - resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/e605e0070da087f6c35579499e65801179a521b6842c15181a1e305c04fded2393f11c1efd09b087be7f8b083d1b75e8f3efcbc1292b4f60d3369e14812cff63 - languageName: node - linkType: hard - -"@babel/plugin-syntax-async-generators@npm:^7.8.4": - version: 7.8.4 - resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8 - languageName: node - linkType: hard - -"@babel/plugin-syntax-bigint@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde - languageName: node - linkType: hard - -"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3": - version: 7.12.13 - resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.12.13" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120 - languageName: node - linkType: hard - -"@babel/plugin-syntax-class-static-block@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371 - languageName: node - linkType: hard - -"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/9c50927bf71adf63f60c75370e2335879402648f468d0172bc912e303c6a3876927d8eb35807331b57f415392732ed05ab9b42c68ac30a936813ab549e0246c5 - languageName: node - linkType: hard - -"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/5100d658ba563829700cd8d001ddc09f4c0187b1a13de300d729c5b3e87503f75a6d6c99c1794182f7f1a9f546ee009df4f15a0ce36376e206ed0012fa7cdc24 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/72f0340d73e037f0702c61670054e0af66ece7282c5c2f4ba8de059390fee502de282defdf15959cd9f71aa18dc5c5e4e7a0fde317799a0600c6c4e0a656d82b - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/309634e3335777aee902552b2cf244c4a8050213cc878b3fb9d70ad8cbbff325dc46ac5e5791836ff477ea373b27832238205f6ceaff81f7ea7c4c7e8fbb13bb - languageName: node - linkType: hard - -"@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": - version: 7.10.4 - resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.10.4" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee - languageName: node - linkType: hard - -"@babel/plugin-syntax-json-strings@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/6cec76fbfe6ca81c9345c2904d8d9a8a0df222f9269f0962ed6eb2eb8f3f10c2f15e993d1ef09dbaf97726bf1792b5851cf5bd9a769f966a19448df6be95d19a - languageName: node - linkType: hard - -"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": - version: 7.10.4 - resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.10.4" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b - languageName: node - linkType: hard - -"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce - languageName: node - linkType: hard - -"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": - version: 7.10.4 - resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.10.4" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9 - languageName: node - linkType: hard - -"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26 - languageName: node - linkType: hard - -"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af - languageName: node - linkType: hard - -"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81 - languageName: node - linkType: hard - -"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/69822772561706c87f0a65bc92d0772cea74d6bc0911537904a676d5ff496a6d3ac4e05a166d8125fce4a16605bace141afc3611074e170a994e66e5397787f3 - languageName: node - linkType: hard - -"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3": - version: 7.14.5 - resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/7a81e277dcfe3138847e8e5944e02a42ff3c2e864aea6f33fd9b70d1556d12b0e70f0d56cc1985d353c91bcbf8fe163e6cc17418da21129b7f7f1d8b9ac00c93 - languageName: node - linkType: hard - -"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" - dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/9144e5b02a211a4fb9a0ce91063f94fbe1004e80bde3485a0910c9f14897cf83fabd8c21267907cff25db8e224858178df0517f14333cfcf3380ad9a4139cb50 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/f44bfacf087dc21b422bab99f4e9344ee7b695b05c947dacae66de05c723ab9d91800be7edc1fa016185e8c819f3aca2b4a5f66d8a4d1e47d9bad80b8fa55b8e - 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" - 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/plugin-syntax-async-generators": "npm:^7.8.4" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/55ceed059f819dcccbfe69600bfa1c055ada466bd54eda117cfdd2cf773dd85799e2f6556e4a559b076e93b9704abcca2aef9d72aad7dc8a5d3d17886052f1d3 - 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" - 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" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/3731ba8e83cbea1ab22905031f25b3aeb0b97c6467360a2cc685352f16e7c786417d8883bc747f5a0beff32266bdb12a05b6292e7b8b75967087200a7bc012c4 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/6fbaa85f5204f34845dfc0bebf62fdd3ac5a286241c85651e59d426001e7a1785ac501f154e093e0b8ee49e1f51e3f8b06575a5ae8d4a9406d43e4816bf18c37 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/85997fc8179b7d26e8af30865aeb91789f3bc1f0cd5643ed25f25891ff9c071460ec1220599b19070b424a3b902422f682e9b02e515872540173eae2e25f760c - 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" - dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.1" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/00dff042ac9df4ae67b5ef98b1137cc72e0a24e6d911dc200540a8cb1f00b4cff367a922aeb22da17da662079f0abcd46ee1c5f4cdf37ceebf6ff1639bb9af27 - 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" - dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.4" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.12.0 - checksum: 10c0/19dfeaf4a2ac03695034f7211a8b5ad89103b224608ac3e91791055107c5fe4d7ebe5d9fbb31b4a91265694af78762260642eb270f4b239c175984ee4b253f80 - 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" - 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" - globals: "npm:^11.1.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/4affcbb7cb01fa4764c7a4b534c30fd24a4b68e680a2d6e242dd7ca8726490f0f1426c44797deff84a38a162e0629718900c68d28daffe2b12adf5b4194156a7 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/template": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/8292c508b656b7722e2c2ca0f6f31339852e3ed2b9b80f6e068a4010e961b431ca109ecd467fc906283f4b1574c1e7b1cb68d35a4dea12079d386c15ff7e0eac - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/6a37953a95f04b335bf3e2118fb93f50dd9593c658d1b2f8918a380a2ee30f1b420139eccf7ec3873c86a8208527895fcf6b7e21c0e734a6ad6e5d5042eace4d - 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" - dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/758def705ec5a87ef910280dc2df5d2fda59dc5d4771c1725c7aed0988ae5b79e29aeb48109120301a3e1c6c03dfac84700469de06f38ca92c96834e09eadf5d - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/41072f57f83a6c2b15f3ee0b6779cdca105ff3d98061efe92ac02d6c7b90fdb6e7e293b8a4d5b9c690d9ae5d3ae73e6bde4596dc4d8c66526a0e5e1abc73c88c - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/7e2834780e9b5251ef341854043a89c91473b83c335358620ca721554877e64e416aeb3288a35f03e825c4958e07d5d00ead08c4490fadc276a21fe151d812f1 - 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" - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/f0fc4c5a9add25fd6bf23dabe6752e9b7c0a2b2554933dddfd16601245a2ba332b647951079c782bf3b94c6330e3638b9b4e0227f469a7c1c707446ba0eba6c7 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/510bb23b2423d5fbffef69b356e4050929c21a7627e8194b1506dd935c7d9cbbd696c9ae9d7c3bcd7e6e7b69561b0b290c2d72d446327b40fc20ce40bbca6712 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/e4bc92b1f334246e62d4bde079938df940794db564742034f6597f2e38bd426e11ae8c5670448e15dd6e45c462f2a9ab3fa87259bddf7c08553ffd9457fc2b2c - 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" - 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" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/65c1735ec3b5e43db9b5aebf3c16171c04b3050c92396b9e22dda0d2aaf51f43fdcf147f70a40678fd9a4ee2272a5acec4826e9c21bcf968762f4c184897ad75 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/13d9b6a3c31ab4be853b3d49d8d1171f9bd8198562fd75da8f31e7de31398e1cfa6eb1d073bed93c9746e4f9c47a53b20f8f4c255ece3f88c90852ad3181dc2d - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/a27cc7d565ee57b5a2bf136fa889c5c2f5988545ae7b3b2c83a7afe5dd37dfac80dca88b1c633c65851ce6af7d2095c04c01228657ce0198f918e64b5ccd01fa - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/98a2e0843ddfe51443c1bfcf08ba40ad8856fd4f8e397b392a5390a54f257c8c1b9a99d8ffc0fc7e8c55cce45e2cd9c2795a4450303f48f501bcbd662de44554 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/2af731d02aa4c757ef80c46df42264128cbe45bfd15e1812d1a595265b690a44ad036041c406a73411733540e1c4256d8174705ae6b8cfaf757fc175613993fd - 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" - dependencies: - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/71fd04e5e7026e6e52701214b1e9f7508ba371b757e5075fbb938a79235ed66a54ce65f89bb92b59159e9f03f01b392e6c4de6d255b948bec975a90cfd6809ef - 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" - 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" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/efb3ea2047604a7eb44a9289311ebb29842fe6510ff8b66a77a60440448c65e1312a60dc48191ed98246bdbd163b5b6f3348a0669bcc0e3809e69c7c776b20fa - 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" - 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" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/38145f8abe8a4ce2b41adabe5d65eb7bd54a139dc58e2885fec975eb5cf247bd938c1dd9f09145c46dbe57d25dd0ef7f00a020e5eb0cbe8195b2065d51e2d93d - 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" - dependencies: - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/14c90c58562b54e17fe4a8ded3f627f9a993648f8378ef00cb2f6c34532032b83290d2ad54c7fff4f0c2cd49091bda780f8cc28926ec4b77a6c2141105a2e699 - 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" - dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/b0b072bef303670b5a98307bc37d1ac326cb7ad40ea162b89a03c2ffc465451be7ef05be95cb81ed28bfeb29670dc98fe911f793a67bceab18b4cb4c81ef48f3 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/c4cabe628163855f175a8799eb73d692b6f1dc347aae5022af0c253f80c92edb962e48ddccc98b691eff3d5d8e53c9a8f10894c33ba4cebc2e2f8f8fe554fb7a - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/c8532951506fb031287280cebeef10aa714f8a7cea2b62a13c805f0e0af945ba77a7c87e4bbbe4c37fe973e0e5d5e649cfac7f0374f57efc54cdf9656362a392 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/15e2b83292e586fb4f5b4b4021d4821a806ca6de2b77d5ad6c4e07aa7afa23704e31b4d683dac041afc69ac51b2461b96e8c98e46311cc1faba54c73f235044f - 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" - dependencies: - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-transform-parameters": "npm:^7.24.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/91d7303af9b5744b8f569c1b8e45c9c9322ded05e7ee94e71b9ff2327f0d2c7b5aa87e040697a6baacc2dcb5c5e5e00913087c36f24c006bdaa4f958fd5bfd2d - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-replace-supers": "npm:^7.24.1" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/d30e6b9e59a707efd7ed524fc0a8deeea046011a6990250f2e9280516683138e2d13d9c52daf41d78407bdab0378aef7478326f2a15305b773d851cb6e106157 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/68408b9ef772d9aa5dccf166c86dc4d2505990ce93e03dcfc65c73fb95c2511248e009ba9ccf5b96405fb85de1c16ad8291016b1cc5689ee4becb1e3050e0ae7 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/f4e9446ec69f58f40b7843ce7603cfc50332976e6e794d4ddbe6b24670cd50ebc7766c4e3cbaecf0fbb744e98cbfbb54146f4e966314b1d58511b8bbf3d2722b - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/e08b8c46a24b1b21dde7783cb0aeb56ffe9ef6d6f1795649ce76273657158d3bfa5370c6594200ed7d371983b599c8e194b76108dffed9ab5746fe630ef2e8f5 - 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" - dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.1" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/d8e18587d2a8b71a795da5e8841b0e64f1525a99ad73ea8b9caa331bc271d69646e2e1e749fd634321f3df9d126070208ddac22a27ccf070566b2efb74fecd99 - 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" - 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-private-property-in-object": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/de7182bfde298e56c08a5d7ee1156f83c9af8c856bbe2248438848846a4ce544e050666bd0482e16a6006195e8be4923abd14650bef51fa0edd7f82014c2efcd - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/3bf3e01f7bb8215a8b6d0081b6f86fea23e3a4543b619e059a264ede028bc58cdfb0acb2c43271271915a74917effa547bc280ac636a9901fa9f2fb45623f87e - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - regenerator-transform: "npm:^0.15.2" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/0a333585d7c0b38d31cc549d0f3cf7c396d1d50b6588a307dc58325505ddd4f5446188bc536c4779431b396251801b3f32d6d8e87db8274bc84e8c41950737f7 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/936d6e73cafb2cbb495f6817c6f8463288dbc9ab3c44684b931ebc1ece24f0d55dfabc1a75ba1de5b48843d0fef448dcfdbecb8485e4014f8f41d0d1440c536f - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/8273347621183aada3cf1f3019d8d5f29467ba13a75b72cb405bc7f23b7e05fd85f4edb1e4d9f0103153dddb61826a42dc24d466480d707f8932c1923a4c25fa - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/50a0302e344546d57e5c9f4dea575f88e084352eeac4e9a3e238c41739eef2df1daf4a7ebbb3ccb7acd3447f6a5ce9938405f98bf5f5583deceb8257f5a673c9 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/786fe2ae11ef9046b9fa95677935abe495031eebf1274ad03f2054a20adea7b9dbd00336ac0b143f7924bc562e5e09793f6e8613607674b97e067d4838ccc4a0 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/f73bcda5488eb81c6e7a876498d9e6b72be32fca5a4d9db9053491a2d1300cd27b889b463fd2558f3cd5826a85ed00f61d81b234aa55cb5a0abf1b6fa1bd5026 - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/5f0b5e33a86b84d89673829ffa2b5f175e102d3d0f45917cda121bc2b3650e1e5bb7a653f8cc1059c5b3a7b2e91e1aafd6623028b96ae752715cc5c2171c96e5 - 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" - 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" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/9c1b1234215c08b1d2a7b27a8e598dfd07fbb07fd7308ef9c184f42b41bf5a119073feef5cdedca3d649e9625a340984baf5d538bc01fafedcec561de316572b - 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" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/67a72a1ed99639de6a93aead35b1993cb3f0eb178a8991fcef48732c38c9f0279c85bbe1e2e2477b85afea873e738ff0955a35057635ce67bc149038e2d8a28e - 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" - dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/d9d9752df7d51bf9357c0bf3762fe16b8c841fca9ecf4409a16f15ccc34be06e8e71abfaee1251b7d451227e70e6b873b36f86b090efdb20f6f7de5fdb6c7a05 - 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" - dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/6046ab38e5d14ed97dbb921bd79ac1d7ad9d3286da44a48930e980b16896db2df21e093563ec3c916a630dc346639bf47c5924a33902a06fe3bbb5cdc7ef5f2f - 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" - dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/b6c1f6b90afeeddf97e5713f72575787fcb7179be7b4c961869bfbc66915f66540dc49da93e4369da15596bd44b896d1eb8a50f5e1fd907abd7a1a625901006b - 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" - "@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-meta": "npm:^7.10.4" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" - "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" - "@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/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" - babel-plugin-polyfill-regenerator: "npm:^0.6.1" - core-js-compat: "npm:^3.31.0" - semver: "npm:^6.3.1" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/2cc0edae09205d6409a75d02e53aaa1c590e89adbb7b389019c7b75e4c47b6b63eeb1a816df5c42b672ce410747e7ddc23b6747e8e41a6c95d6fa00c665509e2 - languageName: node - linkType: hard - -"@babel/preset-modules@npm:0.1.6-no-external-plugins": - version: 0.1.6-no-external-plugins - resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.0.0" - "@babel/types": "npm:^7.4.4" - esutils: "npm:^2.0.2" - peerDependencies: - "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 - checksum: 10c0/9d02f70d7052446c5f3a4fb39e6b632695fb6801e46d31d7f7c5001f7c18d31d1ea8369212331ca7ad4e7877b73231f470b0d559162624128f1b80fe591409e6 - languageName: node - 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" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/0033dc6fbc898ed0d8017c83a2dd5e095c82909e2f83e48cf9f305e3e9287148758c179ad90f27912cf98ca68bfec3643c57c70c0ca34d3a6c50dc8243aef406 - languageName: node - linkType: hard - -"@babel/regjsgen@npm:^0.8.0": - version: 0.8.0 - resolution: "@babel/regjsgen@npm:0.8.0" - checksum: 10c0/4f3ddd8c7c96d447e05c8304c1d5ba3a83fcabd8a716bc1091c2f31595cdd43a3a055fff7cb5d3042b8cb7d402d78820fcb4e05d896c605a7d8bcf30f2424c4a - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.8.4": - version: 7.24.5 - resolution: "@babel/runtime@npm:7.24.5" - dependencies: - regenerator-runtime: "npm:^0.14.0" - checksum: 10c0/05730e43e8ba6550eae9fd4fb5e7d9d3cb91140379425abcb2a1ff9cebad518a280d82c4c4b0f57ada26a863106ac54a748d90c775790c0e2cd0ddd85ccdf346 - 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" - dependencies: - "@babel/code-frame": "npm:^7.23.5" - "@babel/parser": "npm:^7.24.0" - "@babel/types": "npm:^7.24.0" - checksum: 10c0/9d3dd8d22fe1c36bc3bdef6118af1f4b030aaf6d7d2619f5da203efa818a2185d717523486c111de8d99a8649ddf4bbf6b2a7a64962d8411cf6a8fa89f010e54 - languageName: node - linkType: hard - -"@babel/traverse@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/traverse@npm:7.24.5" - 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" - debug: "npm:^4.3.1" - globals: "npm:^11.1.0" - checksum: 10c0/3f22534bc2b2ed9208e55ef48af3b32939032b23cb9dc4037447cb108640df70bbb0b9fea86e9c58648949fdc2cb14e89aa79ffa3c62a5dd43459a52fe8c01d1 - 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" - dependencies: - "@babel/helper-string-parser": "npm:^7.24.1" - "@babel/helper-validator-identifier": "npm:^7.24.5" - to-fast-properties: "npm:^2.0.0" - checksum: 10c0/e1284eb046c5e0451b80220d1200e2327e0a8544a2fe45bb62c952e5fdef7099c603d2336b17b6eac3cc046b7a69bfbce67fe56e1c0ea48cd37c65cb88638f2a - languageName: node - linkType: hard - -"@bcoe/v8-coverage@npm:^0.2.3": - version: 0.2.3 - resolution: "@bcoe/v8-coverage@npm:0.2.3" - checksum: 10c0/6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52 - languageName: node - linkType: hard - -"@commitlint/cli@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/cli@npm:18.6.1" - dependencies: - "@commitlint/format": "npm:^18.6.1" - "@commitlint/lint": "npm:^18.6.1" - "@commitlint/load": "npm:^18.6.1" - "@commitlint/read": "npm:^18.6.1" - "@commitlint/types": "npm:^18.6.1" - execa: "npm:^5.0.0" - lodash.isfunction: "npm:^3.0.9" - resolve-from: "npm:5.0.0" - resolve-global: "npm:1.0.0" - yargs: "npm:^17.0.0" - bin: - commitlint: cli.js - checksum: 10c0/4ec3eec2919170aece1295253c70656d48b8f0fcb2a1f2e48819b1913effa1e92a2416a422f1cfa4b90c4b33b7a8b07184b40851bc906ac6b027b11a8927de50 - languageName: node - linkType: hard - -"@commitlint/config-conventional@npm:^18.6.2": - version: 18.6.3 - resolution: "@commitlint/config-conventional@npm:18.6.3" - dependencies: - "@commitlint/types": "npm:^18.6.1" - conventional-changelog-conventionalcommits: "npm:^7.0.2" - checksum: 10c0/047f84598f80f7f793bdb0ffc9cf9059c199da6c5bc12ab87084fa933faee08c9290e3331f6f0d7e07c4f0ffb0b5c678e5036025aeabb8e74af296b9146c6354 - languageName: node - linkType: hard - -"@commitlint/config-validator@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/config-validator@npm:18.6.1" - dependencies: - "@commitlint/types": "npm:^18.6.1" - ajv: "npm:^8.11.0" - checksum: 10c0/611dec17774e261189b041db180068c7951f6d85d12895497b5fe2408f77eccba32f8cec2bb656a165e99c2b038e806aa2d42e59e68eb0e090eb98b5b3f4e854 - languageName: node - linkType: hard - -"@commitlint/ensure@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/ensure@npm:18.6.1" - dependencies: - "@commitlint/types": "npm:^18.6.1" - lodash.camelcase: "npm:^4.3.0" - lodash.kebabcase: "npm:^4.1.1" - lodash.snakecase: "npm:^4.1.1" - lodash.startcase: "npm:^4.4.0" - lodash.upperfirst: "npm:^4.3.1" - checksum: 10c0/b7fbc70dbf1c3010f47ab76b1115c28be24b11fe0d01d47e2d64666dee801c8e98961076777f10116c3cbfeed676979d702c98934c342feafc4cdce2ef48f62c - languageName: node - linkType: hard - -"@commitlint/execute-rule@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/execute-rule@npm:18.6.1" - checksum: 10c0/cdbf397f533ddaf2d90e457d7917ad16e6d8b78fdc79aff583618c42c758159eaaec33bd92e7f5dfefd0d5c6652c5d36d511b5e73cf5a2de12eb018b1e6be5f0 - languageName: node - linkType: hard - -"@commitlint/format@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/format@npm:18.6.1" - dependencies: - "@commitlint/types": "npm:^18.6.1" - chalk: "npm:^4.1.0" - checksum: 10c0/b72d6d75e34e32c7e1db8e46ff4cf27ba0880d7a72d6371a32faa5461a7f993dd14f006a5c6d66e6d0ccb571339fbaa96aa679d7ce332cdf81e2b4762b714ea2 - languageName: node - linkType: hard - -"@commitlint/is-ignored@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/is-ignored@npm:18.6.1" - dependencies: - "@commitlint/types": "npm:^18.6.1" - semver: "npm:7.6.0" - checksum: 10c0/9be99142a2e24db8fa67776351d2ab5d4e0ead013a3317e6e011eaf24a030605c312b8fb404092c38563823a21abf213294bf322bf42a0b60ddaaa4fd791e78c - languageName: node - linkType: hard - -"@commitlint/lint@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/lint@npm:18.6.1" - dependencies: - "@commitlint/is-ignored": "npm:^18.6.1" - "@commitlint/parse": "npm:^18.6.1" - "@commitlint/rules": "npm:^18.6.1" - "@commitlint/types": "npm:^18.6.1" - checksum: 10c0/a1e1648ee04875c0fdc82adbdcded89cbc645649d817ba069b3b0144ff74090d6ac43c2cf86e46615d1268c33cad7019d967ca769fc7c1e4ebd193b1c2363ee6 - languageName: node - linkType: hard - -"@commitlint/load@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/load@npm:18.6.1" - dependencies: - "@commitlint/config-validator": "npm:^18.6.1" - "@commitlint/execute-rule": "npm:^18.6.1" - "@commitlint/resolve-extends": "npm:^18.6.1" - "@commitlint/types": "npm:^18.6.1" - chalk: "npm:^4.1.0" - cosmiconfig: "npm:^8.3.6" - cosmiconfig-typescript-loader: "npm:^5.0.0" - lodash.isplainobject: "npm:^4.0.6" - lodash.merge: "npm:^4.6.2" - lodash.uniq: "npm:^4.5.0" - resolve-from: "npm:^5.0.0" - checksum: 10c0/da4f90c92015016b97bff65b446011185b2701383929ba8f4a6e1307be919cb2c94e3b62906f460edded76c530f0185d13bee8fe20c4a78995bf8f6aae65ae30 - languageName: node - linkType: hard - -"@commitlint/message@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/message@npm:18.6.1" - checksum: 10c0/46a81835961e474a924b219aee93754f80c8e1b3ad7e358667f831e67e8631612eed8227a0065486c32c10be8cacaa78f1dedb45e67aa2e31b677d11d1648cbd - languageName: node - linkType: hard - -"@commitlint/parse@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/parse@npm:18.6.1" - dependencies: - "@commitlint/types": "npm:^18.6.1" - conventional-changelog-angular: "npm:^7.0.0" - conventional-commits-parser: "npm:^5.0.0" - checksum: 10c0/286bf092436f73730ecd474737b4e53c3c268ade1f01c019a628c54654b3bf3387a151fcb0510dee49dd8d2e4b5ac6f69c62da2183198c0088ee67a06f8ad247 - languageName: node - linkType: hard - -"@commitlint/read@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/read@npm:18.6.1" - dependencies: - "@commitlint/top-level": "npm:^18.6.1" - "@commitlint/types": "npm:^18.6.1" - git-raw-commits: "npm:^2.0.11" - minimist: "npm:^1.2.6" - checksum: 10c0/92a88348b95ad058a6572484da5593f2471335a784965fed03bec36c786b99a467782aba231127d96c23f03a030d9aed17be197e5392a5f8636b818c3c2907ac - languageName: node - linkType: hard - -"@commitlint/resolve-extends@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/resolve-extends@npm:18.6.1" - dependencies: - "@commitlint/config-validator": "npm:^18.6.1" - "@commitlint/types": "npm:^18.6.1" - import-fresh: "npm:^3.0.0" - lodash.mergewith: "npm:^4.6.2" - resolve-from: "npm:^5.0.0" - resolve-global: "npm:^1.0.0" - checksum: 10c0/05fbf6742c2b3e719d40c112d37efd3b395aa17daeb1d23913f6a72f1cc2ec3c5ec7f3ba683eef12fe698c7002aa186b05c2fe0d0cefe16ef8e967d10d7c1397 - languageName: node - linkType: hard - -"@commitlint/rules@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/rules@npm:18.6.1" - dependencies: - "@commitlint/ensure": "npm:^18.6.1" - "@commitlint/message": "npm:^18.6.1" - "@commitlint/to-lines": "npm:^18.6.1" - "@commitlint/types": "npm:^18.6.1" - execa: "npm:^5.0.0" - checksum: 10c0/6ba0a70295a3bc46304c4ca4212755751c774dc0e16aea25552e632495a585d595993c308e73710bba14d6908dd72de0a5a267f3604710c61746d6c3c7397c83 - languageName: node - linkType: hard - -"@commitlint/to-lines@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/to-lines@npm:18.6.1" - checksum: 10c0/93c23ed056fb657618ac77b671d40fd6a90c5ecc3e850adb1715b4e4072b7a41575877e890d4c017c9f215f753ee2fd1189914fc2374d5383a4af4c5123a9f57 - languageName: node - linkType: hard - -"@commitlint/top-level@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/top-level@npm:18.6.1" - dependencies: - find-up: "npm:^5.0.0" - checksum: 10c0/b3fc8ae12267f9c98e19f254e5eed26861c8805937883266e64397d23ef957bbd5826e53fb9c23bde55e3ae73d2963450dfa99c75425d58fec3f151f8f650cbc - languageName: node - linkType: hard - -"@commitlint/types@npm:^18.6.1": - version: 18.6.1 - resolution: "@commitlint/types@npm:18.6.1" - dependencies: - chalk: "npm:^4.1.0" - checksum: 10c0/5728f5cb62bcaad5158dd8982ab5d44c1ea1aee9ac251026cd91b9a4795bb912505c904f75cbd3ae0d1bb7b4dd1e5d84990b76093230018166af8e111b658685 - 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" - dependencies: - "@cspell/dict-ada": "npm:^4.0.2" - "@cspell/dict-aws": "npm:^4.0.1" - "@cspell/dict-bash": "npm:^4.1.3" - "@cspell/dict-companies": "npm:^3.0.31" - "@cspell/dict-cpp": "npm:^5.1.3" - "@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-elixir": "npm:^4.0.3" - "@cspell/dict-en-common-misspellings": "npm:^2.0.0" - "@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-fonts": "npm:^4.0.0" - "@cspell/dict-fsharp": "npm:^1.0.1" - "@cspell/dict-fullstack": "npm:^3.1.5" - "@cspell/dict-gaming-terms": "npm:^1.0.5" - "@cspell/dict-git": "npm:^3.0.0" - "@cspell/dict-golang": "npm:^6.0.5" - "@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-julia": "npm:^1.0.1" - "@cspell/dict-k8s": "npm:^1.0.2" - "@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-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-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-vue": "npm:^3.0.0" - checksum: 10c0/1cdbd2abc9ae7000a5dd5463237c0d6a87d540646b0f9d3a885eafb3c59c4cc217707bf8e3bc05d230bd6c005c5938f1116543aee62caacacb5e18a1d1981e5e - 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" - dependencies: - "@cspell/cspell-types": "npm:8.8.1" - checksum: 10c0/3b23a37f91f9647af3b18ae1b9699334c78567f0e180eebe20098fae33399fbc11110be3c5c55cdf4c1d24dc2333157d066e46ca99dbc45a09ac71d3f382110d - 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 - languageName: node - linkType: hard - -"@cspell/cspell-resolver@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/cspell-resolver@npm:8.8.1" - dependencies: - global-directory: "npm:^4.0.1" - checksum: 10c0/b38f4dfe240d9954982e5144bc60dcceb334733d75074e13a727c8d4396b16996d7339d12c90307da55776d9c50de3fd64d87161ab59aec427e1aecf42bd8803 - 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 - 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 - languageName: node - linkType: hard - -"@cspell/dict-ada@npm:^4.0.2": - version: 4.0.2 - resolution: "@cspell/dict-ada@npm:4.0.2" - checksum: 10c0/ef2e34ddfc635a398522a04b0193e2130051a644dffa52f31faa59e864f88d1624b50b53115ed16cc4508f36b43ba8819f504635f437f34ee7d451d3bb441a71 - 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 - languageName: node - linkType: hard - -"@cspell/dict-bash@npm:^4.1.3": - version: 4.1.3 - resolution: "@cspell/dict-bash@npm:4.1.3" - checksum: 10c0/b91920a38d7db74cdf1da7677ddfa1853643175dacba90b65a9d58343cacb0280f86a3927288c673c9ccc0587b200bc8447b210fdd89e8ea2f66956207d55024 - 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 - 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 - languageName: node - linkType: hard - -"@cspell/dict-cryptocurrencies@npm:^5.0.0": - version: 5.0.0 - resolution: "@cspell/dict-cryptocurrencies@npm:5.0.0" - checksum: 10c0/d5b124eb5d037103ffa2b282779dda8a01ec6622c5498282e05b58f92ce262dae9ac8995748e47a89578e9d658ffd963aa430e85699618c8428166fbe741370d - languageName: node - linkType: hard - -"@cspell/dict-csharp@npm:^4.0.2": - version: 4.0.2 - resolution: "@cspell/dict-csharp@npm:4.0.2" - checksum: 10c0/146b7edeb8aa1acf6b0ccb283a2a5e0e8f2612e6fc67cca9b26e0fabe954a92042d314860bb5418522d6db265bd5933b6c68004d2b8225ad89498bf795b51f89 - languageName: node - linkType: hard - -"@cspell/dict-css@npm:^4.0.12": - version: 4.0.12 - resolution: "@cspell/dict-css@npm:4.0.12" - checksum: 10c0/aba5755408d3184d3fe3bc61db112caf8f9360944da4a777d7ef823198768e9b019c1338993f36af00c33f475434476d8dc2351c439a7cb898dc02dd5acd13e9 - languageName: node - linkType: hard - -"@cspell/dict-dart@npm:^2.0.3": - version: 2.0.3 - resolution: "@cspell/dict-dart@npm:2.0.3" - checksum: 10c0/640b432ced4888c4a6dbdeb2006ed778b59cab7eeb1445e85a66320c1eefe42e905da7c4c89003c42eca97f785380038d603200b8e1f3bea9bc39b81cfadabf7 - 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 - languageName: node - linkType: hard - -"@cspell/dict-django@npm:^4.1.0": - version: 4.1.0 - resolution: "@cspell/dict-django@npm:4.1.0" - checksum: 10c0/85b7f58d772f169f7471f2c1bcb8a0207cdff7c32677bf470bcbcc74ce6498269623cfcc7910730eeac7f052633f8d4c63574367c1afe5f46a2917748ed397ca - languageName: node - linkType: hard - -"@cspell/dict-docker@npm:^1.1.7": - version: 1.1.7 - resolution: "@cspell/dict-docker@npm:1.1.7" - checksum: 10c0/e34428f3e18d3ebb94854e4034746a8a0ef81354994f09d289254f75b9ce11fee53f64c706e1e598d5131fbe50d536401c4e5b854e44b965e6e193d454fa87b7 - languageName: node - linkType: hard - -"@cspell/dict-dotnet@npm:^5.0.0": - version: 5.0.2 - resolution: "@cspell/dict-dotnet@npm:5.0.2" - checksum: 10c0/c5a1a7cbef0b8d0f917e783ff0e7880d2516be72adaa05664e0f9bfa0cfd622812e23146150b4fff0257784e48db1b9d72126f1a4518ae0c4a8c4a97e803a65a - languageName: node - linkType: hard - -"@cspell/dict-elixir@npm:^4.0.3": - version: 4.0.3 - resolution: "@cspell/dict-elixir@npm:4.0.3" - checksum: 10c0/c24b742b0615f310c89a05ded6648a63ee8e0a9d63326fd155846ce4acba2337a1cef3f58d653b9d8f4b6636d466dfeac2bf7122f374ae39a4d539894ebc5523 - 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 - languageName: node - linkType: hard - -"@cspell/dict-en-gb@npm:1.1.33": - version: 1.1.33 - resolution: "@cspell/dict-en-gb@npm:1.1.33" - checksum: 10c0/09563d1016f652dc8164a5f692be49beb78a847a54d5e470d406ae4db125bf8021db75d3db63f7a0c1d1b7a5dfbec4b709fb2ff3520447dcad690adb98d74130 - 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 - languageName: node - linkType: hard - -"@cspell/dict-filetypes@npm:^3.0.3": - version: 3.0.4 - resolution: "@cspell/dict-filetypes@npm:3.0.4" - checksum: 10c0/8400748182c641d3308acd827b126380fd4b9b428a1bedc6bed53f7e21ee011e8acc99c5b177b75d1bafe1bf7ae6b1a6bf45406bccdd346ef62d64089ad0285e - languageName: node - linkType: hard - -"@cspell/dict-fonts@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-fonts@npm:4.0.0" - checksum: 10c0/d7b62691ebb34cf5538f65e18e4188716a87e3fcd56cabde090040b5c81676bc0004304bda47bc14c58417ac710b4627b3513a5bbeb99be1fae6d9b5f291bd2c - languageName: node - linkType: hard - -"@cspell/dict-fsharp@npm:^1.0.1": - version: 1.0.1 - resolution: "@cspell/dict-fsharp@npm:1.0.1" - checksum: 10c0/bc1a83f35eab65e4704889cbfa4625dbbf07219987c2535f0c469f741f047ee8d14ea2fb65d32b669fd27b63a79a119b65e587d28ec9608e064a6f49d2274ca6 - 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 - languageName: node - linkType: hard - -"@cspell/dict-gaming-terms@npm:^1.0.5": - version: 1.0.5 - resolution: "@cspell/dict-gaming-terms@npm:1.0.5" - checksum: 10c0/2017d228104dcf1642fce087e1e1aae76927d0d05f229bd44d0652acfdf93c17e287079920b885f7d78bd9154434ace674d986e94425b9187e4984d54b410597 - languageName: node - linkType: hard - -"@cspell/dict-git@npm:^3.0.0": - version: 3.0.0 - resolution: "@cspell/dict-git@npm:3.0.0" - checksum: 10c0/baf9de7896f4da603600c735fe861c8ce3db8f8533ac6f52b0541096090ae8efcdcde33aab19b69e8bd6d72af45d664b1f2cfda6fbb157a81608bc6d0d39ce6d - 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 - languageName: node - linkType: hard - -"@cspell/dict-haskell@npm:^4.0.1": - version: 4.0.1 - resolution: "@cspell/dict-haskell@npm:4.0.1" - checksum: 10c0/7693a06b74a393aec35b67304ae56dad1ce3509951bec64053d992011e0309e9c420edd13a073ab3e500c0ac53e15dd92472097d689f7602c6d9ad10a2ee0dab - languageName: node - linkType: hard - -"@cspell/dict-html-symbol-entities@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-html-symbol-entities@npm:4.0.0" - checksum: 10c0/35d3223f02f0d091ac6a93424d4c31a075ece530bee00853ee1f5827e5ed25d08407a522a3c747cbfbaa891333df3aa9cf6107a21f2a030667f74228655c9081 - languageName: node - linkType: hard - -"@cspell/dict-html@npm:^4.0.5": - version: 4.0.5 - resolution: "@cspell/dict-html@npm:4.0.5" - checksum: 10c0/6e1b9262bba042a951a6020dfd99efb5fb3a29a5ad8bbdc96a1dd197dc1d89384448afd3b6ff7227a48f2439a90bd3b297566b35c94dcc032f8b473ac147c16a - 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 - languageName: node - linkType: hard - -"@cspell/dict-julia@npm:^1.0.1": - version: 1.0.1 - resolution: "@cspell/dict-julia@npm:1.0.1" - checksum: 10c0/7c8fbe4f1e6df956f9ad87b05fa6c21f19607951b1eaadda3823e43a533aa52bec54bf2887cb59308167d9bd9bf7252b0fffeb2ac50a1cc0d46bcfb0f561ac10 - 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 - languageName: node - linkType: hard - -"@cspell/dict-latex@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-latex@npm:4.0.0" - checksum: 10c0/d96392866378e680d2fe29770bb8f38b1abad8c2b5b29e003bdbfe7aee79de1841fe699b6e357629e7b94dbaf882fd33e5e316d066be7fc02f0cea6caa8dcde4 - languageName: node - linkType: hard - -"@cspell/dict-lorem-ipsum@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-lorem-ipsum@npm:4.0.0" - checksum: 10c0/9f518643664f4ccc8b3e4126abf78385d9ea4abd1d9fc4d5e89f3a140175c62e2d5f729a97845d912f899e908dd8a9ebbc3a0debd2a41f15cee7a2f15d44b04b - languageName: node - linkType: hard - -"@cspell/dict-lua@npm:^4.0.3": - version: 4.0.3 - resolution: "@cspell/dict-lua@npm:4.0.3" - checksum: 10c0/3c6bf9942f3194071d293c0024e3be1b203cdd953222cc4140e97572f1991697c3cc7b6be0c828788eaefb72e7013c8b41937e9b1c14188f79c38b45786fcca5 - languageName: node - linkType: hard - -"@cspell/dict-makefile@npm:^1.0.0": - version: 1.0.0 - resolution: "@cspell/dict-makefile@npm:1.0.0" - checksum: 10c0/b0618d71cfae52c8cbe023d316195ff7fc80b29504ed983e4994df6109b62ef1e3af00500cf60ad9489b9ca9ca85b33aeb8a56f6dfff4bf8e1ac08b25a38e823 - languageName: node - linkType: hard - -"@cspell/dict-monkeyc@npm:^1.0.6": - version: 1.0.6 - resolution: "@cspell/dict-monkeyc@npm:1.0.6" - checksum: 10c0/8d0889be1fda98825172b34330dfdf0b3da73fb0167cf4018771428e80ec91e205bc655538a9959ed5e7ebcc1f6842916485d037a726a098e725874b19c0ac9e - languageName: node - linkType: hard - -"@cspell/dict-node@npm:^4.0.3": - version: 4.0.3 - resolution: "@cspell/dict-node@npm:4.0.3" - checksum: 10c0/334ce75e5d3ad97dda48e33192ae2ce37d604b86e7f9d97dda1fe1468030735c6719257962d0e5a7413c63d194100e1348b86d05b5b724599175e75b0b3d29b2 - languageName: node - linkType: hard - -"@cspell/dict-node@npm:^5.0.1": - version: 5.0.1 - resolution: "@cspell/dict-node@npm:5.0.1" - checksum: 10c0/ef1d5fb11a4591dde96cc65425aff8f856a39d922c04b796e7cf4e4f6693a01ca32d24be3258334e9629a57b7213a5bd53d21189b1861e2f21b5113510980374 - languageName: node - linkType: hard - -"@cspell/dict-npm@npm:^5.0.15": - 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 - 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 - 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 - languageName: node - linkType: hard - -"@cspell/dict-python@npm:^4.1.11": - version: 4.1.11 - resolution: "@cspell/dict-python@npm:4.1.11" - dependencies: - "@cspell/dict-data-science": "npm:^1.0.11" - checksum: 10c0/a8f93e0d0d840cf2b62c8f5946aa67b2bfb07a42351228dc7b9275c68b69b0a658e4f3e8ed3fa89d8215950bbe7985cb1798856ba737412a455f6bf3f306593d - languageName: node - linkType: hard - -"@cspell/dict-r@npm:^2.0.1": - version: 2.0.1 - resolution: "@cspell/dict-r@npm:2.0.1" - checksum: 10c0/c8eead19fed04ff748c8ac75c55c4cf32b0383b0b9d05a23299e7e5d2d6f0c33fe94ff4c73080fdbd5b7e2fcdeaf726373a993122ec35e3a8f2b61f202c4a837 - languageName: node - linkType: hard - -"@cspell/dict-ruby@npm:^5.0.2": - version: 5.0.2 - resolution: "@cspell/dict-ruby@npm:5.0.2" - checksum: 10c0/d966f7cef9065d93671e82605bd30639ff3846b2cc3c89029a6b01898b0cc6575cf88d95e5854f9bc26fe5c02c4cefa7ff35ace4be401607cc4839ed26a116d1 - 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 - languageName: node - linkType: hard - -"@cspell/dict-scala@npm:^5.0.0": - 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 - languageName: node - linkType: hard - -"@cspell/dict-sql@npm:^2.1.3": - version: 2.1.3 - resolution: "@cspell/dict-sql@npm:2.1.3" - checksum: 10c0/2b9037e51cc471a9bd6a1a79a6cdbd109646a170b5926d5174b29bdfce0a3fd096bc2ab0b9e6d49d5114760429cfce3bf424c3a1e6a15288a361b35860797400 - languageName: node - linkType: hard - -"@cspell/dict-svelte@npm:^1.0.2": - version: 1.0.2 - resolution: "@cspell/dict-svelte@npm:1.0.2" - checksum: 10c0/bd650fd25d2ea83808a69eb2a6cb7a5b82295c3dde1c334fc54ff439287c5bf13e3293397e2c45e8b2d1b69fd133e17f4eb920b64df2571c5a399ac1e206f551 - languageName: node - linkType: hard - -"@cspell/dict-swift@npm:^2.0.1": - version: 2.0.1 - resolution: "@cspell/dict-swift@npm:2.0.1" - checksum: 10c0/e29ffc8379d50ef9397018c25b1be05177d4ecb1e18d3b97834f9edf0306af349b5593d7d93a7f2624616c1beeb35eb1e56560d351f459b776c3dd6b2c0ac601 - languageName: node - linkType: hard - -"@cspell/dict-terraform@npm:^1.0.0": - version: 1.0.0 - resolution: "@cspell/dict-terraform@npm:1.0.0" - checksum: 10c0/ea6905b0ac588ec0dc5482dc85cd174e76ca7027a95da4ed7c9478608ab74848b0805e20df225761dc60ffa2c739696ddfe1bb194fc4204ccbdd81ac85e22fb5 - 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 - languageName: node - linkType: hard - -"@cspell/dict-vue@npm:^3.0.0": - version: 3.0.0 - resolution: "@cspell/dict-vue@npm:3.0.0" - checksum: 10c0/2995b912e26cf88cb6ec9728a9adc5b24a0243c001887d425b14a61ef2be22aca38fa99a84d7698d8982aef65c8db4abf583c3d916c2166b9e8d99cec80800cd - languageName: node - linkType: hard - -"@cspell/dynamic-import@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/dynamic-import@npm:8.8.1" - dependencies: - import-meta-resolve: "npm:^4.1.0" - checksum: 10c0/a4b5ddcddf2981e6ab63ffa0b234a72c7ec50084e6ff34369e7ee1cb2460b88314d9e0e3fa2510740dd24b5c9c6eba84acf9dc4cbe68ef9d8270df69b3b80552 - 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 - languageName: node - linkType: hard - -"@cspotcode/source-map-support@npm:^0.8.0": - version: 0.8.1 - resolution: "@cspotcode/source-map-support@npm:0.8.1" - dependencies: - "@jridgewell/trace-mapping": "npm:0.3.9" - checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6 - languageName: node - linkType: hard - -"@ericcornelissen/bash-parser@npm:0.5.2": - version: 0.5.2 - resolution: "@ericcornelissen/bash-parser@npm:0.5.2" - 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" - is-iterable: "npm:^1.1.0" - iterable-lookahead: "npm:^1.0.0" - lodash.curry: "npm:^4.1.1" - magic-string: "npm:^0.16.0" - map-obj: "npm:^2.0.0" - object-pairs: "npm:^0.1.0" - object-values: "npm:^1.0.0" - reverse-arguments: "npm:^1.0.0" - shell-quote-word: "npm:^1.0.1" - to-pascal-case: "npm:^1.0.0" - unescape-js: "npm:^1.0.5" - checksum: 10c0/0640a9203c903561ed15da4e1760d05cbb6b3c5be33864ac8596bfccddf5c974ffdd85851feff0a6bbfb475c6f17705f308ffa8a94c02c6664be22cfeaac781c - languageName: node - linkType: hard - -"@esbuild/aix-ppc64@npm:0.20.2": - version: 0.20.2 - resolution: "@esbuild/aix-ppc64@npm:0.20.2" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - 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" - dependencies: - eslint-visitor-keys: "npm:^3.3.0" - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e - languageName: node - 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 - languageName: node - linkType: hard - -"@eslint/eslintrc@npm:^2.1.4": - version: 2.1.4 - resolution: "@eslint/eslintrc@npm:2.1.4" - dependencies: - ajv: "npm:^6.12.4" - debug: "npm:^4.3.2" - espree: "npm:^9.6.0" - globals: "npm:^13.19.0" - ignore: "npm:^5.2.0" - import-fresh: "npm:^3.2.1" - js-yaml: "npm:^4.1.0" - minimatch: "npm:^3.1.2" - strip-json-comments: "npm:^3.1.1" - checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573 - languageName: node - linkType: hard - -"@eslint/js@npm:8.57.0": - version: 8.57.0 - resolution: "@eslint/js@npm:8.57.0" - checksum: 10c0/9a518bb8625ba3350613903a6d8c622352ab0c6557a59fe6ff6178bf882bf57123f9d92aa826ee8ac3ee74b9c6203fe630e9ee00efb03d753962dcf65ee4bd94 - languageName: node - linkType: hard - -"@ethersproject/abstract-provider@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/abstract-provider@npm:5.7.0" - dependencies: - "@ethersproject/bignumber": "npm:^5.7.0" - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - "@ethersproject/networks": "npm:^5.7.0" - "@ethersproject/properties": "npm:^5.7.0" - "@ethersproject/transactions": "npm:^5.7.0" - "@ethersproject/web": "npm:^5.7.0" - checksum: 10c0/a5708e2811b90ddc53d9318ce152511a32dd4771aa2fb59dbe9e90468bb75ca6e695d958bf44d13da684dc3b6aab03f63d425ff7591332cb5d7ddaf68dff7224 - languageName: node - linkType: hard - -"@ethersproject/abstract-signer@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/abstract-signer@npm:5.7.0" - dependencies: - "@ethersproject/abstract-provider": "npm:^5.7.0" - "@ethersproject/bignumber": "npm:^5.7.0" - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - "@ethersproject/properties": "npm:^5.7.0" - checksum: 10c0/e174966b3be17269a5974a3ae5eef6d15ac62ee8c300ceace26767f218f6bbf3de66f29d9a9c9ca300fa8551aab4c92e28d2cc772f5475fdeaa78d9b5be0e745 - languageName: node - linkType: hard - -"@ethersproject/address@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/address@npm:5.7.0" - dependencies: - "@ethersproject/bignumber": "npm:^5.7.0" - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/keccak256": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - "@ethersproject/rlp": "npm:^5.7.0" - checksum: 10c0/db5da50abeaae8f6cf17678323e8d01cad697f9a184b0593c62b71b0faa8d7e5c2ba14da78a998d691773ed6a8eb06701f65757218e0eaaeb134e5c5f3e5a908 - languageName: node - linkType: hard - -"@ethersproject/base64@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/base64@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - checksum: 10c0/4f748cd82af60ff1866db699fbf2bf057feff774ea0a30d1f03ea26426f53293ea10cc8265cda1695301da61093bedb8cc0d38887f43ed9dad96b78f19d7337e - languageName: node - linkType: hard - -"@ethersproject/basex@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/basex@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/properties": "npm:^5.7.0" - checksum: 10c0/02304de77477506ad798eb5c68077efd2531624380d770ef4a823e631a288fb680107a0f9dc4a6339b2a0b0f5b06ee77f53429afdad8f950cde0f3e40d30167d - languageName: node - linkType: hard - -"@ethersproject/bignumber@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/bignumber@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - bn.js: "npm:^5.2.1" - checksum: 10c0/14263cdc91a7884b141d9300f018f76f69839c47e95718ef7161b11d2c7563163096fee69724c5fa8ef6f536d3e60f1c605819edbc478383a2b98abcde3d37b2 - languageName: node - linkType: hard - -"@ethersproject/bytes@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/bytes@npm:5.7.0" - dependencies: - "@ethersproject/logger": "npm:^5.7.0" - checksum: 10c0/07dd1f0341b3de584ef26c8696674ff2bb032f4e99073856fc9cd7b4c54d1d846cabe149e864be267934658c3ce799e5ea26babe01f83af0e1f06c51e5ac791f - languageName: node - linkType: hard - -"@ethersproject/constants@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/constants@npm:5.7.0" - dependencies: - "@ethersproject/bignumber": "npm:^5.7.0" - checksum: 10c0/6df63ab753e152726b84595250ea722165a5744c046e317df40a6401f38556385a37c84dadf5b11ca651c4fb60f967046125369c57ac84829f6b30e69a096273 - languageName: node - linkType: hard - -"@ethersproject/hash@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/hash@npm:5.7.0" - dependencies: - "@ethersproject/abstract-signer": "npm:^5.7.0" - "@ethersproject/address": "npm:^5.7.0" - "@ethersproject/base64": "npm:^5.7.0" - "@ethersproject/bignumber": "npm:^5.7.0" - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/keccak256": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - "@ethersproject/properties": "npm:^5.7.0" - "@ethersproject/strings": "npm:^5.7.0" - checksum: 10c0/1a631dae34c4cf340dde21d6940dd1715fc7ae483d576f7b8ef9e8cb1d0e30bd7e8d30d4a7d8dc531c14164602323af2c3d51eb2204af18b2e15167e70c9a5ef - languageName: node - linkType: hard - -"@ethersproject/keccak256@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/keccak256@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - js-sha3: "npm:0.8.0" - checksum: 10c0/3b1a91706ff11f5ab5496840b9c36cedca27db443186d28b94847149fd16baecdc13f6fc5efb8359506392f2aba559d07e7f9c1e17a63f9d5de9f8053cfcb033 - languageName: node - linkType: hard - -"@ethersproject/logger@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/logger@npm:5.7.0" - checksum: 10c0/d03d460fb2d4a5e71c627b7986fb9e50e1b59a6f55e8b42a545b8b92398b961e7fd294bd9c3d8f92b35d0f6ff9d15aa14c95eab378f8ea194e943c8ace343501 - languageName: node - linkType: hard - -"@ethersproject/networks@npm:^5.7.0": - version: 5.7.1 - resolution: "@ethersproject/networks@npm:5.7.1" - dependencies: - "@ethersproject/logger": "npm:^5.7.0" - checksum: 10c0/9efcdce27f150459e85d74af3f72d5c32898823a99f5410e26bf26cca2d21fb14e403377314a93aea248e57fb2964e19cee2c3f7bfc586ceba4c803a8f1b75c0 - languageName: node - linkType: hard - -"@ethersproject/properties@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/properties@npm:5.7.0" - dependencies: - "@ethersproject/logger": "npm:^5.7.0" - checksum: 10c0/4fe5d36e5550b8e23a305aa236a93e8f04d891d8198eecdc8273914c761b0e198fd6f757877406ee3eb05033ec271132a3e5998c7bd7b9a187964fb4f67b1373 - languageName: node - linkType: hard - -"@ethersproject/providers@npm:5.7.2": - version: 5.7.2 - resolution: "@ethersproject/providers@npm:5.7.2" - dependencies: - "@ethersproject/abstract-provider": "npm:^5.7.0" - "@ethersproject/abstract-signer": "npm:^5.7.0" - "@ethersproject/address": "npm:^5.7.0" - "@ethersproject/base64": "npm:^5.7.0" - "@ethersproject/basex": "npm:^5.7.0" - "@ethersproject/bignumber": "npm:^5.7.0" - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/constants": "npm:^5.7.0" - "@ethersproject/hash": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - "@ethersproject/networks": "npm:^5.7.0" - "@ethersproject/properties": "npm:^5.7.0" - "@ethersproject/random": "npm:^5.7.0" - "@ethersproject/rlp": "npm:^5.7.0" - "@ethersproject/sha2": "npm:^5.7.0" - "@ethersproject/strings": "npm:^5.7.0" - "@ethersproject/transactions": "npm:^5.7.0" - "@ethersproject/web": "npm:^5.7.0" - bech32: "npm:1.1.4" - ws: "npm:7.4.6" - checksum: 10c0/4c8d19e6b31f769c24042fb2d02e483a4ee60dcbfca9e3291f0a029b24337c47d1ea719a390be856f8fd02997125819e834415e77da4fb2023369712348dae4c - languageName: node - linkType: hard - -"@ethersproject/random@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/random@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - checksum: 10c0/23e572fc55372653c22062f6a153a68c2e2d3200db734cd0d39621fbfd0ca999585bed2d5682e3ac65d87a2893048375682e49d1473d9965631ff56d2808580b - languageName: node - linkType: hard - -"@ethersproject/rlp@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/rlp@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - checksum: 10c0/bc863d21dcf7adf6a99ae75c41c4a3fb99698cfdcfc6d5d82021530f3d3551c6305bc7b6f0475ad6de6f69e91802b7e872bee48c0596d98969aefcf121c2a044 - languageName: node - linkType: hard - -"@ethersproject/sha2@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/sha2@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - hash.js: "npm:1.1.7" - checksum: 10c0/0e7f9ce6b1640817b921b9c6dd9dab8d5bf5a0ce7634d6a7d129b7366a576c2f90dcf4bcb15a0aa9310dde67028f3a44e4fcc2f26b565abcd2a0f465116ff3b1 - languageName: node - linkType: hard - -"@ethersproject/signing-key@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/signing-key@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - "@ethersproject/properties": "npm:^5.7.0" - bn.js: "npm:^5.2.1" - elliptic: "npm:6.5.4" - hash.js: "npm:1.1.7" - checksum: 10c0/fe2ca55bcdb6e370d81372191d4e04671234a2da872af20b03c34e6e26b97dc07c1ee67e91b673680fb13344c9d5d7eae52f1fa6117733a3d68652b778843e09 - languageName: node - linkType: hard - -"@ethersproject/strings@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/strings@npm:5.7.0" - dependencies: - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/constants": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - checksum: 10c0/570d87040ccc7d94de9861f76fc2fba6c0b84c5d6104a99a5c60b8a2401df2e4f24bf9c30afa536163b10a564a109a96f02e6290b80e8f0c610426f56ad704d1 - languageName: node - linkType: hard - -"@ethersproject/transactions@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/transactions@npm:5.7.0" - dependencies: - "@ethersproject/address": "npm:^5.7.0" - "@ethersproject/bignumber": "npm:^5.7.0" - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/constants": "npm:^5.7.0" - "@ethersproject/keccak256": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - "@ethersproject/properties": "npm:^5.7.0" - "@ethersproject/rlp": "npm:^5.7.0" - "@ethersproject/signing-key": "npm:^5.7.0" - checksum: 10c0/aa4d51379caab35b9c468ed1692a23ae47ce0de121890b4f7093c982ee57e30bd2df0c743faed0f44936d7e59c55fffd80479f2c28ec6777b8de06bfb638c239 - languageName: node - linkType: hard - -"@ethersproject/web@npm:^5.7.0": - version: 5.7.1 - resolution: "@ethersproject/web@npm:5.7.1" - dependencies: - "@ethersproject/base64": "npm:^5.7.0" - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/logger": "npm:^5.7.0" - "@ethersproject/properties": "npm:^5.7.0" - "@ethersproject/strings": "npm:^5.7.0" - checksum: 10c0/c82d6745c7f133980e8dab203955260e07da22fa544ccafdd0f21c79fae127bd6ef30957319e37b1cc80cddeb04d6bfb60f291bb14a97c9093d81ce50672f453 - languageName: node - linkType: hard - -"@humanwhocodes/config-array@npm:^0.11.14": - version: 0.11.14 - resolution: "@humanwhocodes/config-array@npm:0.11.14" - dependencies: - "@humanwhocodes/object-schema": "npm:^2.0.2" - debug: "npm:^4.3.1" - minimatch: "npm:^3.0.5" - checksum: 10c0/66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541 - languageName: node - linkType: hard - -"@humanwhocodes/module-importer@npm:^1.0.1": - version: 1.0.1 - resolution: "@humanwhocodes/module-importer@npm:1.0.1" - checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529 - languageName: node - linkType: hard - -"@humanwhocodes/object-schema@npm:^2.0.2": - version: 2.0.3 - resolution: "@humanwhocodes/object-schema@npm:2.0.3" - checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c - languageName: node - linkType: hard - -"@isaacs/cliui@npm:^8.0.2": - version: 8.0.2 - resolution: "@isaacs/cliui@npm:8.0.2" - dependencies: - string-width: "npm:^5.1.2" - string-width-cjs: "npm:string-width@^4.2.0" - strip-ansi: "npm:^7.0.1" - strip-ansi-cjs: "npm:strip-ansi@^6.0.1" - wrap-ansi: "npm:^8.1.0" - wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" - checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e - languageName: node - linkType: hard - -"@istanbuljs/load-nyc-config@npm:^1.0.0": - version: 1.1.0 - resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" - dependencies: - camelcase: "npm:^5.3.1" - find-up: "npm:^4.1.0" - get-package-type: "npm:^0.1.0" - js-yaml: "npm:^3.13.1" - resolve-from: "npm:^5.0.0" - checksum: 10c0/dd2a8b094887da5a1a2339543a4933d06db2e63cbbc2e288eb6431bd832065df0c099d091b6a67436e71b7d6bf85f01ce7c15f9253b4cbebcc3b9a496165ba42 - languageName: node - linkType: hard - -"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": - version: 0.1.3 - resolution: "@istanbuljs/schema@npm:0.1.3" - checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a - languageName: node - linkType: hard - -"@jest/console@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/console@npm:29.7.0" - dependencies: - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - jest-message-util: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - slash: "npm:^3.0.0" - checksum: 10c0/7be408781d0a6f657e969cbec13b540c329671819c2f57acfad0dae9dbfe2c9be859f38fe99b35dba9ff1536937dc6ddc69fdcd2794812fa3c647a1619797f6c - languageName: node - linkType: hard - -"@jest/core@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/core@npm:29.7.0" - dependencies: - "@jest/console": "npm:^29.7.0" - "@jest/reporters": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - ansi-escapes: "npm:^4.2.1" - chalk: "npm:^4.0.0" - ci-info: "npm:^3.2.0" - exit: "npm:^0.1.2" - graceful-fs: "npm:^4.2.9" - jest-changed-files: "npm:^29.7.0" - jest-config: "npm:^29.7.0" - jest-haste-map: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-regex-util: "npm:^29.6.3" - jest-resolve: "npm:^29.7.0" - jest-resolve-dependencies: "npm:^29.7.0" - jest-runner: "npm:^29.7.0" - jest-runtime: "npm:^29.7.0" - jest-snapshot: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-validate: "npm:^29.7.0" - jest-watcher: "npm:^29.7.0" - micromatch: "npm:^4.0.4" - pretty-format: "npm:^29.7.0" - slash: "npm:^3.0.0" - strip-ansi: "npm:^6.0.0" - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - checksum: 10c0/934f7bf73190f029ac0f96662c85cd276ec460d407baf6b0dbaec2872e157db4d55a7ee0b1c43b18874602f662b37cb973dda469a4e6d88b4e4845b521adeeb2 - languageName: node - linkType: hard - -"@jest/environment@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/environment@npm:29.7.0" - dependencies: - "@jest/fake-timers": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - jest-mock: "npm:^29.7.0" - checksum: 10c0/c7b1b40c618f8baf4d00609022d2afa086d9c6acc706f303a70bb4b67275868f620ad2e1a9efc5edd418906157337cce50589a627a6400bbdf117d351b91ef86 - languageName: node - linkType: hard - -"@jest/expect-utils@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/expect-utils@npm:29.7.0" - dependencies: - jest-get-type: "npm:^29.6.3" - checksum: 10c0/60b79d23a5358dc50d9510d726443316253ecda3a7fb8072e1526b3e0d3b14f066ee112db95699b7a43ad3f0b61b750c72e28a5a1cac361d7a2bb34747fa938a - languageName: node - linkType: hard - -"@jest/expect@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/expect@npm:29.7.0" - dependencies: - expect: "npm:^29.7.0" - jest-snapshot: "npm:^29.7.0" - checksum: 10c0/b41f193fb697d3ced134349250aed6ccea075e48c4f803159db102b826a4e473397c68c31118259868fd69a5cba70e97e1c26d2c2ff716ca39dc73a2ccec037e - languageName: node - linkType: hard - -"@jest/fake-timers@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/fake-timers@npm:29.7.0" - dependencies: - "@jest/types": "npm:^29.6.3" - "@sinonjs/fake-timers": "npm:^10.0.2" - "@types/node": "npm:*" - jest-message-util: "npm:^29.7.0" - jest-mock: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - checksum: 10c0/cf0a8bcda801b28dc2e2b2ba36302200ee8104a45ad7a21e6c234148932f826cb3bc57c8df3b7b815aeea0861d7b6ca6f0d4778f93b9219398ef28749e03595c - languageName: node - linkType: hard - -"@jest/globals@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/globals@npm:29.7.0" - dependencies: - "@jest/environment": "npm:^29.7.0" - "@jest/expect": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - jest-mock: "npm:^29.7.0" - checksum: 10c0/a385c99396878fe6e4460c43bd7bb0a5cc52befb462cc6e7f2a3810f9e7bcce7cdeb51908fd530391ee452dc856c98baa2c5f5fa8a5b30b071d31ef7f6955cea - languageName: node - linkType: hard - -"@jest/reporters@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/reporters@npm:29.7.0" - dependencies: - "@bcoe/v8-coverage": "npm:^0.2.3" - "@jest/console": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@jridgewell/trace-mapping": "npm:^0.3.18" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - collect-v8-coverage: "npm:^1.0.0" - exit: "npm:^0.1.2" - glob: "npm:^7.1.3" - graceful-fs: "npm:^4.2.9" - istanbul-lib-coverage: "npm:^3.0.0" - istanbul-lib-instrument: "npm:^6.0.0" - istanbul-lib-report: "npm:^3.0.0" - istanbul-lib-source-maps: "npm:^4.0.0" - istanbul-reports: "npm:^3.1.3" - jest-message-util: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-worker: "npm:^29.7.0" - slash: "npm:^3.0.0" - string-length: "npm:^4.0.1" - strip-ansi: "npm:^6.0.0" - v8-to-istanbul: "npm:^9.0.1" - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - checksum: 10c0/a754402a799541c6e5aff2c8160562525e2a47e7d568f01ebfc4da66522de39cbb809bbb0a841c7052e4270d79214e70aec3c169e4eae42a03bc1a8a20cb9fa2 - languageName: node - linkType: hard - -"@jest/schemas@npm:^29.6.3": - version: 29.6.3 - resolution: "@jest/schemas@npm:29.6.3" - dependencies: - "@sinclair/typebox": "npm:^0.27.8" - checksum: 10c0/b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be - languageName: node - linkType: hard - -"@jest/source-map@npm:^29.6.3": - version: 29.6.3 - resolution: "@jest/source-map@npm:29.6.3" - dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.18" - callsites: "npm:^3.0.0" - graceful-fs: "npm:^4.2.9" - checksum: 10c0/a2f177081830a2e8ad3f2e29e20b63bd40bade294880b595acf2fc09ec74b6a9dd98f126a2baa2bf4941acd89b13a4ade5351b3885c224107083a0059b60a219 - languageName: node - linkType: hard - -"@jest/test-result@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/test-result@npm:29.7.0" - dependencies: - "@jest/console": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/istanbul-lib-coverage": "npm:^2.0.0" - collect-v8-coverage: "npm:^1.0.0" - checksum: 10c0/7de54090e54a674ca173470b55dc1afdee994f2d70d185c80236003efd3fa2b753fff51ffcdda8e2890244c411fd2267529d42c4a50a8303755041ee493e6a04 - languageName: node - linkType: hard - -"@jest/test-sequencer@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/test-sequencer@npm:29.7.0" - dependencies: - "@jest/test-result": "npm:^29.7.0" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.7.0" - slash: "npm:^3.0.0" - checksum: 10c0/593a8c4272797bb5628984486080cbf57aed09c7cfdc0a634e8c06c38c6bef329c46c0016e84555ee55d1cd1f381518cf1890990ff845524c1123720c8c1481b - languageName: node - linkType: hard - -"@jest/transform@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/transform@npm:29.7.0" - dependencies: - "@babel/core": "npm:^7.11.6" - "@jest/types": "npm:^29.6.3" - "@jridgewell/trace-mapping": "npm:^0.3.18" - babel-plugin-istanbul: "npm:^6.1.1" - chalk: "npm:^4.0.0" - convert-source-map: "npm:^2.0.0" - fast-json-stable-stringify: "npm:^2.1.0" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.7.0" - jest-regex-util: "npm:^29.6.3" - jest-util: "npm:^29.7.0" - micromatch: "npm:^4.0.4" - pirates: "npm:^4.0.4" - slash: "npm:^3.0.0" - write-file-atomic: "npm:^4.0.2" - checksum: 10c0/7f4a7f73dcf45dfdf280c7aa283cbac7b6e5a904813c3a93ead7e55873761fc20d5c4f0191d2019004fac6f55f061c82eb3249c2901164ad80e362e7a7ede5a6 - languageName: node - linkType: hard - -"@jest/types@npm:^29.6.3": - version: 29.6.3 - resolution: "@jest/types@npm:29.6.3" - dependencies: - "@jest/schemas": "npm:^29.6.3" - "@types/istanbul-lib-coverage": "npm:^2.0.0" - "@types/istanbul-reports": "npm:^3.0.0" - "@types/node": "npm:*" - "@types/yargs": "npm:^17.0.8" - chalk: "npm:^4.0.0" - checksum: 10c0/ea4e493dd3fb47933b8ccab201ae573dcc451f951dc44ed2a86123cd8541b82aa9d2b1031caf9b1080d6673c517e2dcc25a44b2dc4f3fbc37bfc965d444888c0 - languageName: node - linkType: hard - -"@jridgewell/gen-mapping@npm:^0.3.5": - version: 0.3.5 - resolution: "@jridgewell/gen-mapping@npm:0.3.5" - dependencies: - "@jridgewell/set-array": "npm:^1.2.1" - "@jridgewell/sourcemap-codec": "npm:^1.4.10" - "@jridgewell/trace-mapping": "npm:^0.3.24" - checksum: 10c0/1be4fd4a6b0f41337c4f5fdf4afc3bd19e39c3691924817108b82ffcb9c9e609c273f936932b9fba4b3a298ce2eb06d9bff4eb1cc3bd81c4f4ee1b4917e25feb - languageName: node - linkType: hard - -"@jridgewell/resolve-uri@npm:^3.0.3, @jridgewell/resolve-uri@npm:^3.1.0": - version: 3.1.2 - resolution: "@jridgewell/resolve-uri@npm:3.1.2" - checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e - languageName: node - linkType: hard - -"@jridgewell/set-array@npm:^1.2.1": - version: 1.2.1 - resolution: "@jridgewell/set-array@npm:1.2.1" - checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": - version: 1.4.15 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" - checksum: 10c0/0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5 - languageName: node - linkType: hard - -"@jridgewell/trace-mapping@npm:0.3.9": - version: 0.3.9 - resolution: "@jridgewell/trace-mapping@npm:0.3.9" - dependencies: - "@jridgewell/resolve-uri": "npm:^3.0.3" - "@jridgewell/sourcemap-codec": "npm:^1.4.10" - checksum: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b - languageName: node - linkType: hard - -"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": - version: 0.3.25 - resolution: "@jridgewell/trace-mapping@npm:0.3.25" - dependencies: - "@jridgewell/resolve-uri": "npm:^3.1.0" - "@jridgewell/sourcemap-codec": "npm:^1.4.14" - checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4 - languageName: node - linkType: hard - -"@nodelib/fs.scandir@npm:2.1.5": - version: 2.1.5 - resolution: "@nodelib/fs.scandir@npm:2.1.5" - dependencies: - "@nodelib/fs.stat": "npm:2.0.5" - run-parallel: "npm:^1.1.9" - checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb - languageName: node - linkType: hard - -"@nodelib/fs.scandir@npm:3.0.0": - version: 3.0.0 - resolution: "@nodelib/fs.scandir@npm:3.0.0" - dependencies: - "@nodelib/fs.stat": "npm:3.0.0" - run-parallel: "npm:^1.2.0" - checksum: 10c0/ff557a1d4dc779e41dd1108f92690a03bc3f0debd26a2c4d890fa3fe606646c2e6d958a9ccb3e59f2fd4751eed405151b7f1ab18947b5909ad67b64e155bc760 - languageName: node - linkType: hard - -"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": - version: 2.0.5 - resolution: "@nodelib/fs.stat@npm:2.0.5" - checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d - languageName: node - linkType: hard - -"@nodelib/fs.stat@npm:3.0.0": - version: 3.0.0 - resolution: "@nodelib/fs.stat@npm:3.0.0" - checksum: 10c0/c798b6b07a3d93e29a98699dbda3380d28fe05194b2396b2d02670249691fe2758e0a7a32f1f760dabcbde05f3e0b2822c4b94e40c6c27b2db914c806e162687 - languageName: node - linkType: hard - -"@nodelib/fs.walk@npm:2.0.0": - version: 2.0.0 - resolution: "@nodelib/fs.walk@npm:2.0.0" - dependencies: - "@nodelib/fs.scandir": "npm:3.0.0" - fastq: "npm:^1.15.0" - checksum: 10c0/e490143c4596c89797f7c375104aeb0409a68492cd92c9344fcf2408a5a876580b56282b3d960d7f7d1346a41fd29cbb588707ac8dcc0b8d048ab38e1d2709cf - languageName: node - linkType: hard - -"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": - version: 1.2.8 - resolution: "@nodelib/fs.walk@npm:1.2.8" - dependencies: - "@nodelib/fs.scandir": "npm:2.1.5" - fastq: "npm:^1.6.0" - checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1 - languageName: node - linkType: hard - -"@npmcli/agent@npm:^2.0.0": - version: 2.2.2 - resolution: "@npmcli/agent@npm:2.2.2" - dependencies: - agent-base: "npm:^7.1.0" - http-proxy-agent: "npm:^7.0.0" - https-proxy-agent: "npm:^7.0.1" - lru-cache: "npm:^10.0.1" - socks-proxy-agent: "npm:^8.0.3" - checksum: 10c0/325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae - languageName: node - linkType: hard - -"@npmcli/fs@npm:^3.1.0": - version: 3.1.1 - resolution: "@npmcli/fs@npm:3.1.1" - dependencies: - semver: "npm:^7.3.5" - checksum: 10c0/c37a5b4842bfdece3d14dfdb054f73fe15ed2d3da61b34ff76629fb5b1731647c49166fd2a8bf8b56fcfa51200382385ea8909a3cbecdad612310c114d3f6c99 - languageName: node - linkType: hard - -"@pkgjs/parseargs@npm:^0.11.0": - version: 0.11.0 - resolution: "@pkgjs/parseargs@npm:0.11.0" - checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd - languageName: node - linkType: hard - -"@pkgr/core@npm:^0.1.0": - version: 0.1.1 - resolution: "@pkgr/core@npm:0.1.1" - checksum: 10c0/3f7536bc7f57320ab2cf96f8973664bef624710c403357429fbf680a5c3b4843c1dbd389bb43daa6b1f6f1f007bb082f5abcb76bb2b5dc9f421647743b71d3d8 - languageName: node - linkType: hard - -"@sinclair/typebox@npm:^0.27.8": - version: 0.27.8 - resolution: "@sinclair/typebox@npm:0.27.8" - checksum: 10c0/ef6351ae073c45c2ac89494dbb3e1f87cc60a93ce4cde797b782812b6f97da0d620ae81973f104b43c9b7eaa789ad20ba4f6a1359f1cc62f63729a55a7d22d4e - languageName: node - linkType: hard - -"@sinonjs/commons@npm:^3.0.0": - version: 3.0.1 - resolution: "@sinonjs/commons@npm:3.0.1" - dependencies: - type-detect: "npm:4.0.8" - checksum: 10c0/1227a7b5bd6c6f9584274db996d7f8cee2c8c350534b9d0141fc662eaf1f292ea0ae3ed19e5e5271c8fd390d27e492ca2803acd31a1978be2cdc6be0da711403 - languageName: node - linkType: hard - -"@sinonjs/fake-timers@npm:^10.0.2": - version: 10.3.0 - resolution: "@sinonjs/fake-timers@npm:10.3.0" - dependencies: - "@sinonjs/commons": "npm:^3.0.0" - checksum: 10c0/2e2fb6cc57f227912814085b7b01fede050cd4746ea8d49a1e44d5a0e56a804663b0340ae2f11af7559ea9bf4d087a11f2f646197a660ea3cb04e19efc04aa63 - languageName: node - linkType: hard - -"@snyk/github-codeowners@npm:1.1.0": - version: 1.1.0 - resolution: "@snyk/github-codeowners@npm:1.1.0" - dependencies: - commander: "npm:^4.1.1" - ignore: "npm:^5.1.8" - p-map: "npm:^4.0.0" - bin: - github-codeowners: dist/cli.js - checksum: 10c0/92d860a904a1e67f8563d4ac4d540cc613f71193f7968933b4a4b1526e80a97f536f52d27762c158e3e39d48c2f3db4906ec78846309351c741abb1a28653af9 - languageName: node - linkType: hard - -"@tsconfig/node10@npm:^1.0.7": - version: 1.0.11 - resolution: "@tsconfig/node10@npm:1.0.11" - checksum: 10c0/28a0710e5d039e0de484bdf85fee883bfd3f6a8980601f4d44066b0a6bcd821d31c4e231d1117731c4e24268bd4cf2a788a6787c12fc7f8d11014c07d582783c - languageName: node - linkType: hard - -"@tsconfig/node12@npm:^1.0.7": - version: 1.0.11 - resolution: "@tsconfig/node12@npm:1.0.11" - checksum: 10c0/dddca2b553e2bee1308a056705103fc8304e42bb2d2cbd797b84403a223b25c78f2c683ec3e24a095e82cd435387c877239bffcb15a590ba817cd3f6b9a99fd9 - languageName: node - linkType: hard - -"@tsconfig/node14@npm:^1.0.0": - version: 1.0.3 - resolution: "@tsconfig/node14@npm:1.0.3" - checksum: 10c0/67c1316d065fdaa32525bc9449ff82c197c4c19092b9663b23213c8cbbf8d88b6ed6a17898e0cbc2711950fbfaf40388938c1c748a2ee89f7234fc9e7fe2bf44 - languageName: node - linkType: hard - -"@tsconfig/node16@npm:^1.0.2": - version: 1.0.4 - resolution: "@tsconfig/node16@npm:1.0.4" - checksum: 10c0/05f8f2734e266fb1839eb1d57290df1664fe2aa3b0fdd685a9035806daa635f7519bf6d5d9b33f6e69dd545b8c46bd6e2b5c79acb2b1f146e885f7f11a42a5bb - languageName: node - linkType: hard - -"@types/babel__core@npm:^7.1.14": - version: 7.20.5 - resolution: "@types/babel__core@npm:7.20.5" - dependencies: - "@babel/parser": "npm:^7.20.7" - "@babel/types": "npm:^7.20.7" - "@types/babel__generator": "npm:*" - "@types/babel__template": "npm:*" - "@types/babel__traverse": "npm:*" - checksum: 10c0/bdee3bb69951e833a4b811b8ee9356b69a61ed5b7a23e1a081ec9249769117fa83aaaf023bb06562a038eb5845155ff663e2d5c75dd95c1d5ccc91db012868ff - languageName: node - linkType: hard - -"@types/babel__generator@npm:*": - version: 7.6.8 - resolution: "@types/babel__generator@npm:7.6.8" - dependencies: - "@babel/types": "npm:^7.0.0" - checksum: 10c0/f0ba105e7d2296bf367d6e055bb22996886c114261e2cb70bf9359556d0076c7a57239d019dee42bb063f565bade5ccb46009bce2044b2952d964bf9a454d6d2 - languageName: node - linkType: hard - -"@types/babel__template@npm:*": - version: 7.4.4 - resolution: "@types/babel__template@npm:7.4.4" - dependencies: - "@babel/parser": "npm:^7.1.0" - "@babel/types": "npm:^7.0.0" - checksum: 10c0/cc84f6c6ab1eab1427e90dd2b76ccee65ce940b778a9a67be2c8c39e1994e6f5bbc8efa309f6cea8dc6754994524cd4d2896558df76d92e7a1f46ecffee7112b - languageName: node - 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" - dependencies: - "@babel/types": "npm:^7.20.7" - checksum: 10c0/033abcb2f4c084ad33e30c3efaad82161240f351e3c71b6154ed289946b33b363696c0fbd42502b68e4582a87413c418321f40eb1ea863e34fe525641345e05b - languageName: node - linkType: hard - -"@types/graceful-fs@npm:^4.1.3": - version: 4.1.9 - resolution: "@types/graceful-fs@npm:4.1.9" - dependencies: - "@types/node": "npm:*" - checksum: 10c0/235d2fc69741448e853333b7c3d1180a966dd2b8972c8cbcd6b2a0c6cd7f8d582ab2b8e58219dbc62cce8f1b40aa317ff78ea2201cdd8249da5025adebed6f0b - languageName: node - linkType: hard - -"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0, @types/istanbul-lib-coverage@npm:^2.0.1": - version: 2.0.6 - resolution: "@types/istanbul-lib-coverage@npm:2.0.6" - checksum: 10c0/3948088654f3eeb45363f1db158354fb013b362dba2a5c2c18c559484d5eb9f6fd85b23d66c0a7c2fcfab7308d0a585b14dadaca6cc8bf89ebfdc7f8f5102fb7 - languageName: node - linkType: hard - -"@types/istanbul-lib-report@npm:*": - version: 3.0.3 - resolution: "@types/istanbul-lib-report@npm:3.0.3" - dependencies: - "@types/istanbul-lib-coverage": "npm:*" - checksum: 10c0/247e477bbc1a77248f3c6de5dadaae85ff86ac2d76c5fc6ab1776f54512a745ff2a5f791d22b942e3990ddbd40f3ef5289317c4fca5741bedfaa4f01df89051c - languageName: node - linkType: hard - -"@types/istanbul-reports@npm:^3.0.0": - version: 3.0.4 - resolution: "@types/istanbul-reports@npm:3.0.4" - dependencies: - "@types/istanbul-lib-report": "npm:*" - checksum: 10c0/1647fd402aced5b6edac87274af14ebd6b3a85447ef9ad11853a70fd92a98d35f81a5d3ea9fcb5dbb5834e800c6e35b64475e33fcae6bfa9acc70d61497c54ee - languageName: node - linkType: hard - -"@types/jest@npm:^29.5.12": - version: 29.5.12 - resolution: "@types/jest@npm:29.5.12" - dependencies: - expect: "npm:^29.0.0" - pretty-format: "npm:^29.0.0" - checksum: 10c0/25fc8e4c611fa6c4421e631432e9f0a6865a8cb07c9815ec9ac90d630271cad773b2ee5fe08066f7b95bebd18bb967f8ce05d018ee9ab0430f9dfd1d84665b6f - languageName: node - linkType: hard - -"@types/minimist@npm:^1.2.0": - version: 1.2.5 - resolution: "@types/minimist@npm:1.2.5" - checksum: 10c0/3f791258d8e99a1d7d0ca2bda1ca6ea5a94e5e7b8fc6cde84dd79b0552da6fb68ade750f0e17718f6587783c24254bbca0357648dd59dc3812c150305cabdc46 - languageName: node - linkType: hard - -"@types/node-fetch@npm:^2.6.11": - version: 2.6.11 - resolution: "@types/node-fetch@npm:2.6.11" - dependencies: - "@types/node": "npm:*" - form-data: "npm:^4.0.0" - checksum: 10c0/5283d4e0bcc37a5b6d8e629aee880a4ffcfb33e089f4b903b2981b19c623972d1e64af7c3f9540ab990f0f5c89b9b5dda19c5bcb37a8e177079e93683bfd2f49 - languageName: node - linkType: hard - -"@types/node@npm:*, @types/node@npm:^20.11.19": - version: 20.12.12 - resolution: "@types/node@npm:20.12.12" - dependencies: - undici-types: "npm:~5.26.4" - checksum: 10c0/f374b763c744e8f16e4f38cf6e2c0eef31781ec9228c9e43a6f267880fea420fab0a238b59f10a7cb3444e49547c5e3785787e371fc242307310995b21988812 - languageName: node - linkType: hard - -"@types/normalize-package-data@npm:^2.4.0": - version: 2.4.4 - resolution: "@types/normalize-package-data@npm:2.4.4" - checksum: 10c0/aef7bb9b015883d6f4119c423dd28c4bdc17b0e8a0ccf112c78b4fe0e91fbc4af7c6204b04bba0e199a57d2f3fbbd5b4a14bf8739bf9d2a39b2a0aad545e0f86 - languageName: node - linkType: hard - -"@types/stack-utils@npm:^2.0.0": - version: 2.0.3 - resolution: "@types/stack-utils@npm:2.0.3" - checksum: 10c0/1f4658385ae936330581bcb8aa3a066df03867d90281cdf89cc356d404bd6579be0f11902304e1f775d92df22c6dd761d4451c804b0a4fba973e06211e9bd77c - languageName: node - linkType: hard - -"@types/yargs-parser@npm:*": - version: 21.0.3 - resolution: "@types/yargs-parser@npm:21.0.3" - checksum: 10c0/e71c3bd9d0b73ca82e10bee2064c384ab70f61034bbfb78e74f5206283fc16a6d85267b606b5c22cb2a3338373586786fed595b2009825d6a9115afba36560a0 - languageName: node - linkType: hard - -"@types/yargs@npm:^17.0.8": - version: 17.0.32 - resolution: "@types/yargs@npm:17.0.32" - dependencies: - "@types/yargs-parser": "npm:*" - checksum: 10c0/2095e8aad8a4e66b86147415364266b8d607a3b95b4239623423efd7e29df93ba81bb862784a6e08664f645cc1981b25fd598f532019174cd3e5e1e689e1cccf - languageName: node - linkType: hard - -"@typescript-eslint/eslint-plugin@npm:^7.0.1": - version: 7.10.0 - resolution: "@typescript-eslint/eslint-plugin@npm:7.10.0" - 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" - graphemer: "npm:^1.4.0" - ignore: "npm:^5.3.1" - natural-compare: "npm:^1.4.0" - ts-api-utils: "npm:^1.3.0" - peerDependencies: - "@typescript-eslint/parser": ^7.0.0 - eslint: ^8.56.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/bf3f0118ea5961c3eb01894678246458a329d82dda9ac7c2f5bfe77896410d05a08a4655e533bcb1ed2a3132ba6421981ec8c2ed0a3545779d9603ea231947ae - languageName: node - linkType: hard - -"@typescript-eslint/parser@npm:^7.0.1": - version: 7.10.0 - resolution: "@typescript-eslint/parser@npm:7.10.0" - 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" - debug: "npm:^4.3.4" - peerDependencies: - eslint: ^8.56.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/4c4fbf43b5b05d75b766acb803d3dd078c6e080641a77f9e48ba005713466738ea4a71f0564fa3ce520988d65158d14c8c952ba01ccbc431ab4a05935db5ce6d - 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" - dependencies: - "@typescript-eslint/types": "npm:7.10.0" - "@typescript-eslint/visitor-keys": "npm:7.10.0" - checksum: 10c0/1d4f7ee137b95bd423b5a1b0d03251202dfc19bd8b6adfa5ff5df25fd5aa30e2d8ca50ab0d8d2e92441670ecbc2a82b3c2dbe39a4f268ec1ee1c1e267f7fd1d1 - 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" - dependencies: - "@typescript-eslint/typescript-estree": "npm:7.10.0" - "@typescript-eslint/utils": "npm:7.10.0" - debug: "npm:^4.3.4" - ts-api-utils: "npm:^1.3.0" - peerDependencies: - eslint: ^8.56.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/55e9a6690f9cedb79d30abb1990b161affaa2684dac246b743223353812c9c1e3fd2d923c67b193c6a3624a07e1c82c900ce7bf5b6b9891c846f04cb480ebd9f - 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 - 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" - dependencies: - "@typescript-eslint/types": "npm:7.10.0" - "@typescript-eslint/visitor-keys": "npm:7.10.0" - debug: "npm:^4.3.4" - globby: "npm:^11.1.0" - is-glob: "npm:^4.0.3" - minimatch: "npm:^9.0.4" - semver: "npm:^7.6.0" - ts-api-utils: "npm:^1.3.0" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/6200695834c566e52e2fa7331f1a05019f7815969d8c1e1e237b85a99664d36f41ccc16384eff3f8582a0ecb75f1cc315b56ee9283b818da37f24fa4d42f1d7a - languageName: node - linkType: hard - -"@typescript-eslint/utils@npm:7.10.0": - version: 7.10.0 - resolution: "@typescript-eslint/utils@npm:7.10.0" - 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" - peerDependencies: - eslint: ^8.56.0 - checksum: 10c0/6724471f94f2788f59748f7efa2a3a53ea910099993bee2fa5746ab5acacecdc9fcb110c568b18099ddc946ea44919ed394bff2bd055ba81fc69f5e6297b73bf - 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" - dependencies: - "@typescript-eslint/types": "npm:7.10.0" - eslint-visitor-keys: "npm:^3.4.3" - checksum: 10c0/049e812bcd28869059d04c7bf3543bb55f5205f468b777439c4f120417fb856fb6024cb1d25291aa12556bd08e84f043a96d754ffb2cde37abb604d6f3c51634 - languageName: node - linkType: hard - -"@ubiquity-dao/rpc-handler@workspace:.": - version: 0.0.0-use.local - resolution: "@ubiquity-dao/rpc-handler@workspace:." - dependencies: - "@babel/core": "npm:^7.24.0" - "@babel/preset-env": "npm:^7.24.0" - "@babel/preset-typescript": "npm:^7.23.3" - "@commitlint/cli": "npm:^18.6.1" - "@commitlint/config-conventional": "npm:^18.6.2" - "@cspell/dict-node": "npm:^4.0.3" - "@cspell/dict-software-terms": "npm:^3.3.18" - "@cspell/dict-typescript": "npm:^3.1.2" - "@ethersproject/providers": "npm:5.7.2" - "@types/jest": "npm:^29.5.12" - "@types/node": "npm:^20.11.19" - "@types/node-fetch": "npm:^2.6.11" - "@typescript-eslint/eslint-plugin": "npm:^7.0.1" - "@typescript-eslint/parser": "npm:^7.0.1" - axios: "npm:^1.7.1" - cspell: "npm:^8.4.0" - esbuild: "npm:^0.20.1" - eslint: "npm:^8.56.0" - eslint-config-prettier: "npm:^9.1.0" - eslint-plugin-prettier: "npm:^5.1.3" - eslint-plugin-sonarjs: "npm:^0.24.0" - husky: "npm:^9.0.11" - jest: "npm:^29.7.0" - jest-junit: "npm:16.0.0" - knip: "npm:^5.0.1" - lint-staged: "npm:^15.2.2" - node-fetch: "npm:^3.3.2" - npm-run-all: "npm:^4.1.5" - prettier: "npm:^3.2.5" - ts-jest: "npm:^29.1.2" - ts-node: "npm:10.9.2" - tsx: "npm:^4.7.1" - typescript: "npm:^5.3.3" - languageName: unknown - linkType: soft - -"@ungap/structured-clone@npm:^1.2.0": - version: 1.2.0 - resolution: "@ungap/structured-clone@npm:1.2.0" - checksum: 10c0/8209c937cb39119f44eb63cf90c0b73e7c754209a6411c707be08e50e29ee81356dca1a848a405c8bdeebfe2f5e4f831ad310ae1689eeef65e7445c090c6657d - languageName: node - linkType: hard - -"JSONStream@npm:^1.3.5": - version: 1.3.5 - resolution: "JSONStream@npm:1.3.5" - dependencies: - jsonparse: "npm:^1.2.0" - through: "npm:>=2.2.7 <3" - bin: - JSONStream: ./bin.js - checksum: 10c0/0f54694da32224d57b715385d4a6b668d2117379d1f3223dc758459246cca58fdc4c628b83e8a8883334e454a0a30aa198ede77c788b55537c1844f686a751f2 - languageName: node - linkType: hard - -"abbrev@npm:^2.0.0": - version: 2.0.0 - resolution: "abbrev@npm:2.0.0" - checksum: 10c0/f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372 - languageName: node - linkType: hard - -"acorn-jsx@npm:^5.3.2": - version: 5.3.2 - resolution: "acorn-jsx@npm:5.3.2" - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 10c0/4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1 - languageName: node - linkType: hard - -"acorn-walk@npm:^8.1.1": - version: 8.3.2 - resolution: "acorn-walk@npm:8.3.2" - checksum: 10c0/7e2a8dad5480df7f872569b9dccff2f3da7e65f5353686b1d6032ab9f4ddf6e3a2cb83a9b52cf50b1497fd522154dda92f0abf7153290cc79cd14721ff121e52 - languageName: node - linkType: hard - -"acorn@npm:^8.4.1, acorn@npm:^8.9.0": - version: 8.11.3 - resolution: "acorn@npm:8.11.3" - bin: - acorn: bin/acorn - checksum: 10c0/3ff155f8812e4a746fee8ecff1f227d527c4c45655bb1fad6347c3cb58e46190598217551b1500f18542d2bbe5c87120cb6927f5a074a59166fbdd9468f0a299 - languageName: node - linkType: hard - -"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0, agent-base@npm:^7.1.1": - version: 7.1.1 - resolution: "agent-base@npm:7.1.1" - dependencies: - debug: "npm:^4.3.4" - checksum: 10c0/e59ce7bed9c63bf071a30cc471f2933862044c97fd9958967bfe22521d7a0f601ce4ed5a8c011799d0c726ca70312142ae193bbebb60f576b52be19d4a363b50 - languageName: node - linkType: hard - -"aggregate-error@npm:^3.0.0": - version: 3.1.0 - resolution: "aggregate-error@npm:3.1.0" - dependencies: - clean-stack: "npm:^2.0.0" - indent-string: "npm:^4.0.0" - checksum: 10c0/a42f67faa79e3e6687a4923050e7c9807db3848a037076f791d10e092677d65c1d2d863b7848560699f40fc0502c19f40963fb1cd1fb3d338a7423df8e45e039 - languageName: node - linkType: hard - -"ajv@npm:^6.12.4": - version: 6.12.6 - resolution: "ajv@npm:6.12.6" - dependencies: - fast-deep-equal: "npm:^3.1.1" - fast-json-stable-stringify: "npm:^2.0.0" - json-schema-traverse: "npm:^0.4.1" - uri-js: "npm:^4.2.2" - checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 - languageName: node - linkType: hard - -"ajv@npm:^8.11.0": - version: 8.13.0 - resolution: "ajv@npm:8.13.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 - languageName: node - linkType: hard - -"ansi-escapes@npm:^4.2.1": - version: 4.3.2 - resolution: "ansi-escapes@npm:4.3.2" - dependencies: - type-fest: "npm:^0.21.3" - checksum: 10c0/da917be01871525a3dfcf925ae2977bc59e8c513d4423368645634bf5d4ceba5401574eb705c1e92b79f7292af5a656f78c5725a4b0e1cec97c4b413705c1d50 - languageName: node - linkType: hard - -"ansi-escapes@npm:^6.2.0": - version: 6.2.1 - resolution: "ansi-escapes@npm:6.2.1" - checksum: 10c0/a2c6f58b044be5f69662ee17073229b492daa2425a7fd99a665db6c22eab6e4ab42752807def7281c1c7acfed48f87f2362dda892f08c2c437f1b39c6b033103 - languageName: node - linkType: hard - -"ansi-regex@npm:^5.0.1": - version: 5.0.1 - resolution: "ansi-regex@npm:5.0.1" - checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 - languageName: node - linkType: hard - -"ansi-regex@npm:^6.0.1": - version: 6.0.1 - resolution: "ansi-regex@npm:6.0.1" - checksum: 10c0/cbe16dbd2c6b2735d1df7976a7070dd277326434f0212f43abf6d87674095d247968209babdaad31bb00882fa68807256ba9be340eec2f1004de14ca75f52a08 - languageName: node - linkType: hard - -"ansi-styles@npm:^3.2.1": - version: 3.2.1 - resolution: "ansi-styles@npm:3.2.1" - dependencies: - color-convert: "npm:^1.9.0" - checksum: 10c0/ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b - languageName: node - linkType: hard - -"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": - version: 4.3.0 - resolution: "ansi-styles@npm:4.3.0" - dependencies: - color-convert: "npm:^2.0.1" - checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 - languageName: node - linkType: hard - -"ansi-styles@npm:^5.0.0": - version: 5.2.0 - resolution: "ansi-styles@npm:5.2.0" - checksum: 10c0/9c4ca80eb3c2fb7b33841c210d2f20807f40865d27008d7c3f707b7f95cab7d67462a565e2388ac3285b71cb3d9bb2173de8da37c57692a362885ec34d6e27df - languageName: node - linkType: hard - -"ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c - languageName: node - linkType: hard - -"anymatch@npm:^3.0.3": - version: 3.1.3 - resolution: "anymatch@npm:3.1.3" - dependencies: - normalize-path: "npm:^3.0.0" - picomatch: "npm:^2.0.4" - checksum: 10c0/57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac - languageName: node - linkType: hard - -"arg@npm:^4.1.0": - version: 4.1.3 - resolution: "arg@npm:4.1.3" - checksum: 10c0/070ff801a9d236a6caa647507bdcc7034530604844d64408149a26b9e87c2f97650055c0f049abd1efc024b334635c01f29e0b632b371ac3f26130f4cf65997a - languageName: node - linkType: hard - -"argparse@npm:^1.0.7": - version: 1.0.10 - resolution: "argparse@npm:1.0.10" - dependencies: - sprintf-js: "npm:~1.0.2" - checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de - languageName: node - linkType: hard - -"argparse@npm:^2.0.1": - version: 2.0.1 - resolution: "argparse@npm:2.0.1" - checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e - languageName: node - linkType: hard - -"arity-n@npm:^1.0.4": - version: 1.0.4 - resolution: "arity-n@npm:1.0.4" - checksum: 10c0/31c390104bf3b9275574c9d59df67b8a2684981b93ca728a99c4f92241b71b8089b1e99b732f889891e78087887b49a59c885167e2185303449bece83e8d7f9c - languageName: node - linkType: hard - -"array-buffer-byte-length@npm:^1.0.1": - version: 1.0.1 - resolution: "array-buffer-byte-length@npm:1.0.1" - dependencies: - call-bind: "npm:^1.0.5" - is-array-buffer: "npm:^3.0.4" - checksum: 10c0/f5cdf54527cd18a3d2852ddf73df79efec03829e7373a8322ef5df2b4ef546fb365c19c71d6b42d641cb6bfe0f1a2f19bc0ece5b533295f86d7c3d522f228917 - languageName: node - linkType: hard - -"array-ify@npm:^1.0.0": - version: 1.0.0 - resolution: "array-ify@npm:1.0.0" - checksum: 10c0/75c9c072faac47bd61779c0c595e912fe660d338504ac70d10e39e1b8a4a0c9c87658703d619b9d1b70d324177ae29dc8d07dda0d0a15d005597bc4c5a59c70c - languageName: node - linkType: hard - -"array-last@npm:^1.1.1": - version: 1.3.0 - resolution: "array-last@npm:1.3.0" - dependencies: - is-number: "npm:^4.0.0" - checksum: 10c0/bb620e744fab80b104a5eddfa828eb915451ffc23b737e76b2ecfbbef42e1a9557ca85d280cde10c5d12b4627d15857e7312a2f20d9ecc45f1e52d745a591438 - languageName: node - linkType: hard - -"array-timsort@npm:^1.0.3": - version: 1.0.3 - resolution: "array-timsort@npm:1.0.3" - checksum: 10c0/bd3a1707b621947265c89867e67c9102b9b9f4c50f5b3974220112290d8b60d26ce60595edec5deed3325207b759d70b758bed3cd310b5ddadb835657ffb6d12 - languageName: node - linkType: hard - -"array-union@npm:^2.1.0": - version: 2.1.0 - resolution: "array-union@npm:2.1.0" - checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962 - languageName: node - linkType: hard - -"arraybuffer.prototype.slice@npm:^1.0.3": - version: 1.0.3 - resolution: "arraybuffer.prototype.slice@npm:1.0.3" - dependencies: - array-buffer-byte-length: "npm:^1.0.1" - call-bind: "npm:^1.0.5" - define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.22.3" - es-errors: "npm:^1.2.1" - get-intrinsic: "npm:^1.2.3" - is-array-buffer: "npm:^3.0.4" - is-shared-array-buffer: "npm:^1.0.2" - checksum: 10c0/d32754045bcb2294ade881d45140a5e52bda2321b9e98fa514797b7f0d252c4c5ab0d1edb34112652c62fa6a9398def568da63a4d7544672229afea283358c36 - languageName: node - linkType: hard - -"arrify@npm:^1.0.1": - version: 1.0.1 - resolution: "arrify@npm:1.0.1" - checksum: 10c0/c35c8d1a81bcd5474c0c57fe3f4bad1a4d46a5fa353cedcff7a54da315df60db71829e69104b859dff96c5d68af46bd2be259fe5e50dc6aa9df3b36bea0383ab - languageName: node - linkType: hard - -"asynckit@npm:^0.4.0": - version: 0.4.0 - resolution: "asynckit@npm:0.4.0" - checksum: 10c0/d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d - languageName: node - linkType: hard - -"available-typed-arrays@npm:^1.0.7": - version: 1.0.7 - resolution: "available-typed-arrays@npm:1.0.7" - dependencies: - possible-typed-array-names: "npm:^1.0.0" - checksum: 10c0/d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2 - languageName: node - linkType: hard - -"axios@npm:^1.7.1": - version: 1.7.1 - resolution: "axios@npm:1.7.1" - dependencies: - follow-redirects: "npm:^1.15.6" - form-data: "npm:^4.0.0" - proxy-from-env: "npm:^1.1.0" - checksum: 10c0/554395472f18f4ddb43b4be2900473bc1a4d589464a8ab16f6954c53d9cace4317d5c9e009d5bb05f098d9565b2fa45f152a5d4cecb87536c8f0c370c25a7770 - languageName: node - linkType: hard - -"babel-jest@npm:^29.7.0": - version: 29.7.0 - resolution: "babel-jest@npm:29.7.0" - dependencies: - "@jest/transform": "npm:^29.7.0" - "@types/babel__core": "npm:^7.1.14" - babel-plugin-istanbul: "npm:^6.1.1" - babel-preset-jest: "npm:^29.6.3" - chalk: "npm:^4.0.0" - graceful-fs: "npm:^4.2.9" - slash: "npm:^3.0.0" - peerDependencies: - "@babel/core": ^7.8.0 - checksum: 10c0/2eda9c1391e51936ca573dd1aedfee07b14c59b33dbe16ef347873ddd777bcf6e2fc739681e9e9661ab54ef84a3109a03725be2ac32cd2124c07ea4401cbe8c1 - languageName: node - linkType: hard - -"babel-plugin-istanbul@npm:^6.1.1": - version: 6.1.1 - resolution: "babel-plugin-istanbul@npm:6.1.1" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.0.0" - "@istanbuljs/load-nyc-config": "npm:^1.0.0" - "@istanbuljs/schema": "npm:^0.1.2" - istanbul-lib-instrument: "npm:^5.0.4" - test-exclude: "npm:^6.0.0" - checksum: 10c0/1075657feb705e00fd9463b329921856d3775d9867c5054b449317d39153f8fbcebd3e02ebf00432824e647faff3683a9ca0a941325ef1afe9b3c4dd51b24beb - languageName: node - linkType: hard - -"babel-plugin-jest-hoist@npm:^29.6.3": - version: 29.6.3 - resolution: "babel-plugin-jest-hoist@npm:29.6.3" - dependencies: - "@babel/template": "npm:^7.3.3" - "@babel/types": "npm:^7.3.3" - "@types/babel__core": "npm:^7.1.14" - "@types/babel__traverse": "npm:^7.0.6" - checksum: 10c0/7e6451caaf7dce33d010b8aafb970e62f1b0c0b57f4978c37b0d457bbcf0874d75a395a102daf0bae0bd14eafb9f6e9a165ee5e899c0a4f1f3bb2e07b304ed2e - languageName: node - linkType: hard - -"babel-plugin-polyfill-corejs2@npm:^0.4.10": - version: 0.4.11 - resolution: "babel-plugin-polyfill-corejs2@npm:0.4.11" - dependencies: - "@babel/compat-data": "npm:^7.22.6" - "@babel/helper-define-polyfill-provider": "npm:^0.6.2" - semver: "npm:^6.3.1" - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: 10c0/b2217bc8d5976cf8142453ed44daabf0b2e0e75518f24eac83b54a8892e87a88f1bd9089daa92fd25df979ecd0acfd29b6bc28c4182c1c46344cee15ef9bce84 - languageName: node - linkType: hard - -"babel-plugin-polyfill-corejs3@npm:^0.10.4": - version: 0.10.4 - resolution: "babel-plugin-polyfill-corejs3@npm:0.10.4" - dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.6.1" - core-js-compat: "npm:^3.36.1" - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: 10c0/31b92cd3dfb5b417da8dfcf0deaa4b8b032b476d7bb31ca51c66127cf25d41e89260e89d17bc004b2520faa38aa9515fafabf81d89f9d4976e9dc1163e4a7c41 - languageName: node - linkType: hard - -"babel-plugin-polyfill-regenerator@npm:^0.6.1": - version: 0.6.2 - resolution: "babel-plugin-polyfill-regenerator@npm:0.6.2" - dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.6.2" - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: 10c0/bc541037cf7620bc84ddb75a1c0ce3288f90e7d2799c070a53f8a495c8c8ae0316447becb06f958dd25dcce2a2fce855d318ecfa48036a1ddb218d55aa38a744 - languageName: node - linkType: hard - -"babel-preset-current-node-syntax@npm:^1.0.0": - version: 1.0.1 - resolution: "babel-preset-current-node-syntax@npm:1.0.1" - dependencies: - "@babel/plugin-syntax-async-generators": "npm:^7.8.4" - "@babel/plugin-syntax-bigint": "npm:^7.8.3" - "@babel/plugin-syntax-class-properties": "npm:^7.8.3" - "@babel/plugin-syntax-import-meta": "npm:^7.8.3" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" - "@babel/plugin-syntax-numeric-separator": "npm:^7.8.3" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" - "@babel/plugin-syntax-top-level-await": "npm:^7.8.3" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/5ba39a3a0e6c37d25e56a4fb843be632dac98d54706d8a0933f9bcb1a07987a96d55c2b5a6c11788a74063fb2534fe68c1f1dbb6c93626850c785e0938495627 - languageName: node - linkType: hard - -"babel-preset-jest@npm:^29.6.3": - version: 29.6.3 - resolution: "babel-preset-jest@npm:29.6.3" - dependencies: - babel-plugin-jest-hoist: "npm:^29.6.3" - babel-preset-current-node-syntax: "npm:^1.0.0" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/ec5fd0276b5630b05f0c14bb97cc3815c6b31600c683ebb51372e54dcb776cff790bdeeabd5b8d01ede375a040337ccbf6a3ccd68d3a34219125945e167ad943 - languageName: node - linkType: hard - -"babylon@npm:^6.9.1": - version: 6.18.0 - resolution: "babylon@npm:6.18.0" - bin: - babylon: ./bin/babylon.js - checksum: 10c0/9b1bf946e16782deadb1f5414c1269efa6044eb1e97a3de2051f09a3f2a54e97be3542d4242b28d23de0ef67816f519d38ce1ec3ddb7be306131c39a60e5a667 - languageName: node - linkType: hard - -"balanced-match@npm:^1.0.0": - version: 1.0.2 - resolution: "balanced-match@npm:1.0.2" - checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee - languageName: node - linkType: hard - -"bech32@npm:1.1.4": - version: 1.1.4 - resolution: "bech32@npm:1.1.4" - checksum: 10c0/5f62ca47b8df99ace9c0e0d8deb36a919d91bf40066700aaa9920a45f86bb10eb56d537d559416fd8703aa0fb60dddb642e58f049701e7291df678b2033e5ee5 - languageName: node - linkType: hard - -"bn.js@npm:^4.11.9": - version: 4.12.0 - resolution: "bn.js@npm:4.12.0" - checksum: 10c0/9736aaa317421b6b3ed038ff3d4491935a01419ac2d83ddcfebc5717385295fcfcf0c57311d90fe49926d0abbd7a9dbefdd8861e6129939177f7e67ebc645b21 - languageName: node - linkType: hard - -"bn.js@npm:^5.2.1": - version: 5.2.1 - resolution: "bn.js@npm:5.2.1" - checksum: 10c0/bed3d8bd34ec89dbcf9f20f88bd7d4a49c160fda3b561c7bb227501f974d3e435a48fb9b61bc3de304acab9215a3bda0803f7017ffb4d0016a0c3a740a283caa - languageName: node - linkType: hard - -"brace-expansion@npm:^1.1.7": - version: 1.1.11 - resolution: "brace-expansion@npm:1.1.11" - dependencies: - balanced-match: "npm:^1.0.0" - concat-map: "npm:0.0.1" - checksum: 10c0/695a56cd058096a7cb71fb09d9d6a7070113c7be516699ed361317aca2ec169f618e28b8af352e02ab4233fb54eb0168460a40dc320bab0034b36ab59aaad668 - languageName: node - linkType: hard - -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" - dependencies: - balanced-match: "npm:^1.0.0" - checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f - languageName: node - linkType: hard - -"braces@npm:^3.0.2, braces@npm:^3.0.3": - version: 3.0.3 - resolution: "braces@npm:3.0.3" - dependencies: - fill-range: "npm:^7.1.1" - checksum: 10c0/7c6dfd30c338d2997ba77500539227b9d1f85e388a5f43220865201e407e076783d0881f2d297b9f80951b4c957fcf0b51c1d2d24227631643c3f7c284b0aa04 - languageName: node - linkType: hard - -"brorand@npm:^1.1.0": - version: 1.1.0 - resolution: "brorand@npm:1.1.0" - checksum: 10c0/6f366d7c4990f82c366e3878492ba9a372a73163c09871e80d82fb4ae0d23f9f8924cb8a662330308206e6b3b76ba1d528b4601c9ef73c2166b440b2ea3b7571 - languageName: node - linkType: hard - -"browserslist@npm:^4.22.2, browserslist@npm:^4.23.0": - version: 4.23.0 - resolution: "browserslist@npm:4.23.0" - dependencies: - caniuse-lite: "npm:^1.0.30001587" - electron-to-chromium: "npm:^1.4.668" - node-releases: "npm:^2.0.14" - update-browserslist-db: "npm:^1.0.13" - bin: - browserslist: cli.js - checksum: 10c0/8e9cc154529062128d02a7af4d8adeead83ca1df8cd9ee65a88e2161039f3d68a4d40fea7353cab6bae4c16182dec2fdd9a1cf7dc2a2935498cee1af0e998943 - languageName: node - linkType: hard - -"bs-logger@npm:0.x": - version: 0.2.6 - resolution: "bs-logger@npm:0.2.6" - dependencies: - fast-json-stable-stringify: "npm:2.x" - checksum: 10c0/80e89aaaed4b68e3374ce936f2eb097456a0dddbf11f75238dbd53140b1e39259f0d248a5089ed456f1158984f22191c3658d54a713982f676709fbe1a6fa5a0 - languageName: node - linkType: hard - -"bser@npm:2.1.1": - version: 2.1.1 - resolution: "bser@npm:2.1.1" - dependencies: - node-int64: "npm:^0.4.0" - checksum: 10c0/24d8dfb7b6d457d73f32744e678a60cc553e4ec0e9e1a01cf614b44d85c3c87e188d3cc78ef0442ce5032ee6818de20a0162ba1074725c0d08908f62ea979227 - languageName: node - linkType: hard - -"buffer-from@npm:^1.0.0": - version: 1.1.2 - resolution: "buffer-from@npm:1.1.2" - checksum: 10c0/124fff9d66d691a86d3b062eff4663fe437a9d9ee4b47b1b9e97f5a5d14f6d5399345db80f796827be7c95e70a8e765dd404b7c3ff3b3324f98e9b0c8826cc34 - languageName: node - linkType: hard - -"cacache@npm:^18.0.0": - version: 18.0.3 - resolution: "cacache@npm:18.0.3" - dependencies: - "@npmcli/fs": "npm:^3.1.0" - fs-minipass: "npm:^3.0.0" - glob: "npm:^10.2.2" - lru-cache: "npm:^10.0.1" - minipass: "npm:^7.0.3" - minipass-collect: "npm:^2.0.1" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - p-map: "npm:^4.0.0" - ssri: "npm:^10.0.0" - tar: "npm:^6.1.11" - unique-filename: "npm:^3.0.0" - checksum: 10c0/dfda92840bb371fb66b88c087c61a74544363b37a265023223a99965b16a16bbb87661fe4948718d79df6e0cc04e85e62784fbcf1832b2a5e54ff4c46fbb45b7 - languageName: node - linkType: hard - -"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.6, call-bind@npm:^1.0.7": - version: 1.0.7 - resolution: "call-bind@npm:1.0.7" - dependencies: - es-define-property: "npm:^1.0.0" - es-errors: "npm:^1.3.0" - function-bind: "npm:^1.1.2" - get-intrinsic: "npm:^1.2.4" - set-function-length: "npm:^1.2.1" - checksum: 10c0/a3ded2e423b8e2a265983dba81c27e125b48eefb2655e7dfab6be597088da3d47c47976c24bc51b8fd9af1061f8f87b4ab78a314f3c77784b2ae2ba535ad8b8d - languageName: node - linkType: hard - -"callsites@npm:^3.0.0, callsites@npm:^3.1.0": - version: 3.1.0 - resolution: "callsites@npm:3.1.0" - checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301 - languageName: node - linkType: hard - -"camelcase-keys@npm:^6.2.2": - version: 6.2.2 - resolution: "camelcase-keys@npm:6.2.2" - dependencies: - camelcase: "npm:^5.3.1" - map-obj: "npm:^4.0.0" - quick-lru: "npm:^4.0.1" - checksum: 10c0/bf1a28348c0f285c6c6f68fb98a9d088d3c0269fed0cdff3ea680d5a42df8a067b4de374e7a33e619eb9d5266a448fe66c2dd1f8e0c9209ebc348632882a3526 - languageName: node - linkType: hard - -"camelcase@npm:^5.3.1": - version: 5.3.1 - resolution: "camelcase@npm:5.3.1" - checksum: 10c0/92ff9b443bfe8abb15f2b1513ca182d16126359ad4f955ebc83dc4ddcc4ef3fdd2c078bc223f2673dc223488e75c99b16cc4d056624374b799e6a1555cf61b23 - languageName: node - linkType: hard - -"camelcase@npm:^6.2.0": - version: 6.3.0 - resolution: "camelcase@npm:6.3.0" - checksum: 10c0/0d701658219bd3116d12da3eab31acddb3f9440790c0792e0d398f0a520a6a4058018e546862b6fba89d7ae990efaeb97da71e1913e9ebf5a8b5621a3d55c710 - languageName: node - linkType: hard - -"caniuse-lite@npm:^1.0.30001587": - version: 1.0.30001620 - resolution: "caniuse-lite@npm:1.0.30001620" - checksum: 10c0/3783117143fbdc98c1b91a579d0f2a7bcee7008f322ba7a2bf56a6c3d105400772c7ed8026840b4ea909ec7bf254bcc36532f2ce1b1a1240b00d0335da39b7ec - languageName: node - linkType: hard - -"chalk-template@npm:^1.1.0": - version: 1.1.0 - resolution: "chalk-template@npm:1.1.0" - dependencies: - chalk: "npm:^5.2.0" - checksum: 10c0/bb6eda6115a33d06828caf8c44f786c26e0d392c74c2bd6bb0f7526588b15664e3e7c0305858531cdd9b266fc54a31fe71fe3844afcd47a3e67445313f149437 - 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" - dependencies: - ansi-styles: "npm:^3.2.1" - escape-string-regexp: "npm:^1.0.5" - supports-color: "npm:^5.3.0" - checksum: 10c0/e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073 - languageName: node - linkType: hard - -"chalk@npm:^4.0.0, chalk@npm:^4.1.0": - version: 4.1.2 - resolution: "chalk@npm:4.1.2" - dependencies: - ansi-styles: "npm:^4.1.0" - supports-color: "npm:^7.1.0" - checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 - languageName: node - linkType: hard - -"char-regex@npm:^1.0.2": - version: 1.0.2 - resolution: "char-regex@npm:1.0.2" - checksum: 10c0/57a09a86371331e0be35d9083ba429e86c4f4648ecbe27455dbfb343037c16ee6fdc7f6b61f433a57cc5ded5561d71c56a150e018f40c2ffb7bc93a26dae341e - languageName: node - linkType: hard - -"chownr@npm:^2.0.0": - version: 2.0.0 - resolution: "chownr@npm:2.0.0" - checksum: 10c0/594754e1303672171cc04e50f6c398ae16128eb134a88f801bf5354fd96f205320f23536a045d9abd8b51024a149696e51231565891d4efdab8846021ecf88e6 - languageName: node - linkType: hard - -"ci-info@npm:^3.2.0": - version: 3.9.0 - resolution: "ci-info@npm:3.9.0" - checksum: 10c0/6f0109e36e111684291d46123d491bc4e7b7a1934c3a20dea28cba89f1d4a03acd892f5f6a81ed3855c38647e285a150e3c9ba062e38943bef57fee6c1554c3a - languageName: node - linkType: hard - -"cjs-module-lexer@npm:^1.0.0": - version: 1.3.1 - resolution: "cjs-module-lexer@npm:1.3.1" - checksum: 10c0/cd98fbf3c7f4272fb0ebf71d08d0c54bc75ce0e30b9d186114e15b4ba791f3d310af65a339eea2a0318599af2818cdd8886d353b43dfab94468f72987397ad16 - languageName: node - linkType: hard - -"clean-stack@npm:^2.0.0": - version: 2.2.0 - resolution: "clean-stack@npm:2.2.0" - checksum: 10c0/1f90262d5f6230a17e27d0c190b09d47ebe7efdd76a03b5a1127863f7b3c9aec4c3e6c8bb3a7bbf81d553d56a1fd35728f5a8ef4c63f867ac8d690109742a8c1 - languageName: node - linkType: hard - -"clear-module@npm:^4.1.2": - version: 4.1.2 - resolution: "clear-module@npm:4.1.2" - dependencies: - parent-module: "npm:^2.0.0" - resolve-from: "npm:^5.0.0" - checksum: 10c0/73207f06af256e3c8901ceaa74f7e4468a777aa68dedc7f745db4116861a7f8e69c558e16dbdf7b3d2295675d5896f916ba55b5dc737dda81792dbeee1488127 - languageName: node - linkType: hard - -"cli-cursor@npm:^4.0.0": - version: 4.0.0 - resolution: "cli-cursor@npm:4.0.0" - dependencies: - restore-cursor: "npm:^4.0.0" - checksum: 10c0/e776e8c3c6727300d0539b0d25160b2bb56aed1a63942753ba1826b012f337a6f4b7ace3548402e4f2f13b5e16bfd751be672c44b203205e7eca8be94afec42c - languageName: node - linkType: hard - -"cli-truncate@npm:^4.0.0": - version: 4.0.0 - resolution: "cli-truncate@npm:4.0.0" - dependencies: - slice-ansi: "npm:^5.0.0" - string-width: "npm:^7.0.0" - checksum: 10c0/d7f0b73e3d9b88cb496e6c086df7410b541b56a43d18ade6a573c9c18bd001b1c3fba1ad578f741a4218fdc794d042385f8ac02c25e1c295a2d8b9f3cb86eb4c - languageName: node - linkType: hard - -"cliui@npm:^8.0.1": - version: 8.0.1 - resolution: "cliui@npm:8.0.1" - dependencies: - string-width: "npm:^4.2.0" - strip-ansi: "npm:^6.0.1" - wrap-ansi: "npm:^7.0.0" - checksum: 10c0/4bda0f09c340cbb6dfdc1ed508b3ca080f12992c18d68c6be4d9cf51756033d5266e61ec57529e610dacbf4da1c634423b0c1b11037709cc6b09045cbd815df5 - languageName: node - linkType: hard - -"clone@npm:^1.0.2": - version: 1.0.4 - resolution: "clone@npm:1.0.4" - checksum: 10c0/2176952b3649293473999a95d7bebfc9dc96410f6cbd3d2595cf12fd401f63a4bf41a7adbfd3ab2ff09ed60cb9870c58c6acdd18b87767366fabfc163700f13b - languageName: node - linkType: hard - -"co@npm:^4.6.0": - version: 4.6.0 - resolution: "co@npm:4.6.0" - checksum: 10c0/c0e85ea0ca8bf0a50cbdca82efc5af0301240ca88ebe3644a6ffb8ffe911f34d40f8fbcf8f1d52c5ddd66706abd4d3bfcd64259f1e8e2371d4f47573b0dc8c28 - languageName: node - linkType: hard - -"collect-v8-coverage@npm:^1.0.0": - version: 1.0.2 - resolution: "collect-v8-coverage@npm:1.0.2" - checksum: 10c0/ed7008e2e8b6852c5483b444a3ae6e976e088d4335a85aa0a9db2861c5f1d31bd2d7ff97a60469b3388deeba661a619753afbe201279fb159b4b9548ab8269a1 - languageName: node - linkType: hard - -"color-convert@npm:^1.9.0": - version: 1.9.3 - resolution: "color-convert@npm:1.9.3" - dependencies: - color-name: "npm:1.1.3" - checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c - languageName: node - linkType: hard - -"color-convert@npm:^2.0.1": - version: 2.0.1 - resolution: "color-convert@npm:2.0.1" - dependencies: - color-name: "npm:~1.1.4" - checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 - languageName: node - linkType: hard - -"color-name@npm:1.1.3": - version: 1.1.3 - resolution: "color-name@npm:1.1.3" - checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6 - languageName: node - linkType: hard - -"color-name@npm:~1.1.4": - version: 1.1.4 - resolution: "color-name@npm:1.1.4" - checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 - languageName: node - linkType: hard - -"colorette@npm:^2.0.20": - version: 2.0.20 - resolution: "colorette@npm:2.0.20" - checksum: 10c0/e94116ff33b0ff56f3b83b9ace895e5bf87c2a7a47b3401b8c3f3226e050d5ef76cf4072fb3325f9dc24d1698f9b730baf4e05eeaf861d74a1883073f4c98a40 - languageName: node - linkType: hard - -"combined-stream@npm:^1.0.8": - version: 1.0.8 - resolution: "combined-stream@npm:1.0.8" - dependencies: - delayed-stream: "npm:~1.0.0" - checksum: 10c0/0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5 - 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": - version: 12.1.0 - resolution: "commander@npm:12.1.0" - checksum: 10c0/6e1996680c083b3b897bfc1cfe1c58dfbcd9842fd43e1aaf8a795fbc237f65efcc860a3ef457b318e73f29a4f4a28f6403c3d653d021d960e4632dd45bde54a9 - languageName: node - linkType: hard - -"commander@npm:^4.1.1": - version: 4.1.1 - resolution: "commander@npm:4.1.1" - checksum: 10c0/84a76c08fe6cc08c9c93f62ac573d2907d8e79138999312c92d4155bc2325d487d64d13f669b2000c9f8caf70493c1be2dac74fec3c51d5a04f8bc3ae1830bab - languageName: node - linkType: hard - -"comment-json@npm:^4.2.3": - version: 4.2.3 - resolution: "comment-json@npm:4.2.3" - dependencies: - array-timsort: "npm:^1.0.3" - core-util-is: "npm:^1.0.3" - esprima: "npm:^4.0.1" - has-own-prop: "npm:^2.0.0" - repeat-string: "npm:^1.6.1" - checksum: 10c0/e8a0d3a6d75d92551f9a7e6fefa31f3d831dc33117b0b9432f061f45a571c85c16143e4110693d450f6eca20841db43f5429ac0d801673bcf03e9973ab1c31af - languageName: node - linkType: hard - -"compare-func@npm:^2.0.0": - version: 2.0.0 - resolution: "compare-func@npm:2.0.0" - dependencies: - array-ify: "npm:^1.0.0" - dot-prop: "npm:^5.1.0" - checksum: 10c0/78bd4dd4ed311a79bd264c9e13c36ed564cde657f1390e699e0f04b8eee1fc06ffb8698ce2dfb5fbe7342d509579c82d4e248f08915b708f77f7b72234086cc3 - languageName: node - linkType: hard - -"compose-function@npm:^3.0.3": - version: 3.0.3 - resolution: "compose-function@npm:3.0.3" - dependencies: - arity-n: "npm:^1.0.4" - checksum: 10c0/2b3b8a785e4d5431c0be2ab04e9de29451f3721136bef27ce6973c1971193ed9d7887ec82175b3d3e1fc00c8af6040a5841532c763a63e1ea8aeeeb128ad26fa - languageName: node - linkType: hard - -"concat-map@npm:0.0.1": - version: 0.0.1 - resolution: "concat-map@npm:0.0.1" - checksum: 10c0/c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f - languageName: node - linkType: hard - -"conventional-changelog-angular@npm:^7.0.0": - version: 7.0.0 - resolution: "conventional-changelog-angular@npm:7.0.0" - dependencies: - compare-func: "npm:^2.0.0" - checksum: 10c0/90e73e25e224059b02951b6703b5f8742dc2a82c1fea62163978e6735fd3ab04350897a8fc6f443ec6b672d6b66e28a0820e833e544a0101f38879e5e6289b7e - languageName: node - linkType: hard - -"conventional-changelog-conventionalcommits@npm:^7.0.2": - version: 7.0.2 - resolution: "conventional-changelog-conventionalcommits@npm:7.0.2" - dependencies: - compare-func: "npm:^2.0.0" - checksum: 10c0/3cb1eab35e37fc973cfb3aed0e159f54414e49b222988da1c2aa86cc8a87fe7531491bbb7657fe5fc4dc0e25f5b50e2065ba8ac71cc4c08eed9189102a2b81bd - languageName: node - linkType: hard - -"conventional-commits-parser@npm:^5.0.0": - version: 5.0.0 - resolution: "conventional-commits-parser@npm:5.0.0" - dependencies: - JSONStream: "npm:^1.3.5" - is-text-path: "npm:^2.0.0" - meow: "npm:^12.0.1" - split2: "npm:^4.0.0" - bin: - conventional-commits-parser: cli.mjs - checksum: 10c0/c9e542f4884119a96a6bf3311ff62cdee55762d8547f4c745ae3ebdc50afe4ba7691e165e34827d5cf63283cbd93ab69917afd7922423075b123d5d9a7a82ed2 - languageName: node - linkType: hard - -"convert-source-map@npm:^2.0.0": - version: 2.0.0 - resolution: "convert-source-map@npm:2.0.0" - checksum: 10c0/8f2f7a27a1a011cc6cc88cc4da2d7d0cfa5ee0369508baae3d98c260bb3ac520691464e5bbe4ae7cdf09860c1d69ecc6f70c63c6e7c7f7e3f18ec08484dc7d9b - languageName: node - linkType: hard - -"core-js-compat@npm:^3.31.0, core-js-compat@npm:^3.36.1": - version: 3.37.1 - resolution: "core-js-compat@npm:3.37.1" - dependencies: - browserslist: "npm:^4.23.0" - checksum: 10c0/4e2da9c900f2951a57947af7aeef4d16f2c75d7f7e966c0d0b62953f65225003ade5e84d3ae98847f65b24c109c606821d9dc925db8ca418fb761e7c81963c2a - languageName: node - linkType: hard - -"core-util-is@npm:^1.0.3": - version: 1.0.3 - resolution: "core-util-is@npm:1.0.3" - checksum: 10c0/90a0e40abbddfd7618f8ccd63a74d88deea94e77d0e8dbbea059fa7ebebb8fbb4e2909667fe26f3a467073de1a542ebe6ae4c73a73745ac5833786759cd906c9 - languageName: node - linkType: hard - -"cosmiconfig-typescript-loader@npm:^5.0.0": - version: 5.0.0 - resolution: "cosmiconfig-typescript-loader@npm:5.0.0" - dependencies: - jiti: "npm:^1.19.1" - peerDependencies: - "@types/node": "*" - cosmiconfig: ">=8.2" - typescript: ">=4" - checksum: 10c0/0eb1a767a589cf092e68729e184d5917ae0b167b6f5d908bc58cee221d66b937430fc58df64029795ef98bb8e85c575da6e3819c5f9679c721de7bdbb4bde719 - languageName: node - linkType: hard - -"cosmiconfig@npm:^8.3.6": - version: 8.3.6 - resolution: "cosmiconfig@npm:8.3.6" - dependencies: - import-fresh: "npm:^3.3.0" - js-yaml: "npm:^4.1.0" - parse-json: "npm:^5.2.0" - path-type: "npm:^4.0.0" - peerDependencies: - typescript: ">=4.9.5" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/0382a9ed13208f8bfc22ca2f62b364855207dffdb73dc26e150ade78c3093f1cf56172df2dd460c8caf2afa91c0ed4ec8a88c62f8f9cd1cf423d26506aa8797a - languageName: node - linkType: hard - -"create-jest@npm:^29.7.0": - version: 29.7.0 - resolution: "create-jest@npm:29.7.0" - dependencies: - "@jest/types": "npm:^29.6.3" - chalk: "npm:^4.0.0" - exit: "npm:^0.1.2" - graceful-fs: "npm:^4.2.9" - jest-config: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - prompts: "npm:^2.0.1" - bin: - create-jest: bin/create-jest.js - checksum: 10c0/e7e54c280692470d3398f62a6238fd396327e01c6a0757002833f06d00afc62dd7bfe04ff2b9cd145264460e6b4d1eb8386f2925b7e567f97939843b7b0e812f - languageName: node - linkType: hard - -"create-require@npm:^1.1.0": - version: 1.1.1 - resolution: "create-require@npm:1.1.1" - checksum: 10c0/157cbc59b2430ae9a90034a5f3a1b398b6738bf510f713edc4d4e45e169bc514d3d99dd34d8d01ca7ae7830b5b8b537e46ae8f3c8f932371b0875c0151d7ec91 - languageName: node - linkType: hard - -"cross-spawn@npm:^6.0.5": - version: 6.0.5 - resolution: "cross-spawn@npm:6.0.5" - dependencies: - nice-try: "npm:^1.0.4" - path-key: "npm:^2.0.1" - semver: "npm:^5.5.0" - shebang-command: "npm:^1.2.0" - which: "npm:^1.2.9" - checksum: 10c0/e05544722e9d7189b4292c66e42b7abeb21db0d07c91b785f4ae5fefceb1f89e626da2703744657b287e86dcd4af57b54567cef75159957ff7a8a761d9055012 - languageName: node - linkType: hard - -"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": - version: 7.0.3 - resolution: "cross-spawn@npm:7.0.3" - dependencies: - path-key: "npm:^3.1.0" - shebang-command: "npm:^2.0.0" - which: "npm:^2.0.1" - checksum: 10c0/5738c312387081c98d69c98e105b6327b069197f864a60593245d64c8089c8a0a744e16349281210d56835bb9274130d825a78b2ad6853ca13cfbeffc0c31750 - languageName: node - linkType: hard - -"cspell-config-lib@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-config-lib@npm:8.8.1" - dependencies: - "@cspell/cspell-types": "npm:8.8.1" - comment-json: "npm:^4.2.3" - yaml: "npm:^2.4.2" - checksum: 10c0/58771324d30015975b9a1516405f8e94e18cd6bf8de32563cbc790866d1c0ffecfe28e436773e92ab6974ce9fa28cc2df824ed31f23a735f49a71501296f7f1f - languageName: node - linkType: hard - -"cspell-dictionary@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-dictionary@npm:8.8.1" - dependencies: - "@cspell/cspell-pipe": "npm:8.8.1" - "@cspell/cspell-types": "npm:8.8.1" - cspell-trie-lib: "npm:8.8.1" - fast-equals: "npm:^5.0.1" - gensequence: "npm:^7.0.0" - checksum: 10c0/8131efee72b36aa037a0e086f3cd8977d3c9f4cc65fcc0874c0d716829168554c85afec3f29803910329fc07492b1786786473a565d239339dd64c409e2d9f6d - languageName: node - linkType: hard - -"cspell-gitignore@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-gitignore@npm:8.8.1" - dependencies: - cspell-glob: "npm:8.8.1" - find-up-simple: "npm:^1.0.0" - bin: - cspell-gitignore: bin.mjs - checksum: 10c0/707446af5f2d4051f3b6c9e24ab6a3dfbe6b52a809af82b0dbbb2e47b0b0e5db976af4e88b7bd9b6493bf55569247d11801098f92be6e47311df855fbc8db4b7 - languageName: node - linkType: hard - -"cspell-glob@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-glob@npm:8.8.1" - dependencies: - micromatch: "npm:^4.0.5" - checksum: 10c0/acb4df4e43e2f0dcfd52086bde04d1187b56693add59ba9d42bd3728a09b759f401e4ca149eb247dc079ef7abe179d06ce669cd02e41b8c03bbee798afddd4da - languageName: node - linkType: hard - -"cspell-grammar@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-grammar@npm:8.8.1" - dependencies: - "@cspell/cspell-pipe": "npm:8.8.1" - "@cspell/cspell-types": "npm:8.8.1" - bin: - cspell-grammar: bin.mjs - checksum: 10c0/22b85fcde0244ccfe7ea84eeac99da1b589bea80d7216631c9945d8cd63597a129462395e9e708970208ffd35cb34595aa2f866a4e4fa65d0f615dc3fad891c7 - languageName: node - linkType: hard - -"cspell-io@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-io@npm:8.8.1" - dependencies: - "@cspell/cspell-service-bus": "npm:8.8.1" - checksum: 10c0/19f2850edf04b1b39c4301a150a384a8e6e4ee8a5bdbde57c89c6550eb26d0a9524a62999e429070db9075f7e58909ce3150bd5d6eacdd62763e33a89734056c - languageName: node - linkType: hard - -"cspell-lib@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-lib@npm:8.8.1" - 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" - 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" - env-paths: "npm:^3.0.0" - fast-equals: "npm:^5.0.1" - gensequence: "npm:^7.0.0" - import-fresh: "npm:^3.3.0" - resolve-from: "npm:^5.0.0" - vscode-languageserver-textdocument: "npm:^1.0.11" - vscode-uri: "npm:^3.0.8" - xdg-basedir: "npm:^5.1.0" - checksum: 10c0/e88683122f8a2fc62791a5af49b0da8e46e82ed9f37e756607950d1d4b9bd24895e103c1dc1edb3efea3b8da4a6474a9768c5713262ffdb4f4285726ea2d21af - languageName: node - linkType: hard - -"cspell-trie-lib@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-trie-lib@npm:8.8.1" - dependencies: - "@cspell/cspell-pipe": "npm:8.8.1" - "@cspell/cspell-types": "npm:8.8.1" - gensequence: "npm:^7.0.0" - checksum: 10c0/6dedd016cbf14342e8223904f7f0fd70c6c19ca9e2524dc82761aca0764e8c8ebaa944b959ca7489d7c1de962bb90969ff1532504fb064590a34c856f79fa2b8 - languageName: node - linkType: hard - -"cspell@npm:^8.4.0": - version: 8.8.1 - resolution: "cspell@npm:8.8.1" - 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" - 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" - 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" - strip-ansi: "npm:^7.1.0" - vscode-uri: "npm:^3.0.8" - bin: - cspell: bin.mjs - cspell-esm: bin.mjs - checksum: 10c0/193eaa98631bf4ea939df9957f03de34890eea75ad2647776cfd928af00b8c80c21b08a6bf170d6e7ff664c71bf0828c1c060be9eac008949e742f6b400efee0 - languageName: node - linkType: hard - -"dargs@npm:^7.0.0": - version: 7.0.0 - resolution: "dargs@npm:7.0.0" - checksum: 10c0/ec7f6a8315a8fa2f8b12d39207615bdf62b4d01f631b96fbe536c8ad5469ab9ed710d55811e564d0d5c1d548fc8cb6cc70bf0939f2415790159f5a75e0f96c92 - languageName: node - linkType: hard - -"data-uri-to-buffer@npm:^4.0.0": - version: 4.0.1 - resolution: "data-uri-to-buffer@npm:4.0.1" - checksum: 10c0/20a6b93107597530d71d4cb285acee17f66bcdfc03fd81040921a81252f19db27588d87fc8fc69e1950c55cfb0bf8ae40d0e5e21d907230813eb5d5a7f9eb45b - languageName: node - linkType: hard - -"data-view-buffer@npm:^1.0.1": - version: 1.0.1 - resolution: "data-view-buffer@npm:1.0.1" - dependencies: - call-bind: "npm:^1.0.6" - es-errors: "npm:^1.3.0" - is-data-view: "npm:^1.0.1" - checksum: 10c0/8984119e59dbed906a11fcfb417d7d861936f16697a0e7216fe2c6c810f6b5e8f4a5281e73f2c28e8e9259027190ac4a33e2a65fdd7fa86ac06b76e838918583 - languageName: node - linkType: hard - -"data-view-byte-length@npm:^1.0.1": - version: 1.0.1 - resolution: "data-view-byte-length@npm:1.0.1" - dependencies: - call-bind: "npm:^1.0.7" - es-errors: "npm:^1.3.0" - is-data-view: "npm:^1.0.1" - checksum: 10c0/b7d9e48a0cf5aefed9ab7d123559917b2d7e0d65531f43b2fd95b9d3a6b46042dd3fca597c42bba384e66b70d7ad66ff23932f8367b241f53d93af42cfe04ec2 - languageName: node - linkType: hard - -"data-view-byte-offset@npm:^1.0.0": - version: 1.0.0 - resolution: "data-view-byte-offset@npm:1.0.0" - dependencies: - call-bind: "npm:^1.0.6" - es-errors: "npm:^1.3.0" - is-data-view: "npm:^1.0.1" - checksum: 10c0/21b0d2e53fd6e20cc4257c873bf6d36d77bd6185624b84076c0a1ddaa757b49aaf076254006341d35568e89f52eecd1ccb1a502cfb620f2beca04f48a6a62a8f - 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" - dependencies: - ms: "npm:2.1.2" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/cedbec45298dd5c501d01b92b119cd3faebe5438c3917ff11ae1bff86a6c722930ac9c8659792824013168ba6db7c4668225d845c633fbdafbbf902a6389f736 - languageName: node - linkType: hard - -"decamelize-keys@npm:^1.1.0": - version: 1.1.1 - resolution: "decamelize-keys@npm:1.1.1" - dependencies: - decamelize: "npm:^1.1.0" - map-obj: "npm:^1.0.0" - checksum: 10c0/4ca385933127437658338c65fb9aead5f21b28d3dd3ccd7956eb29aab0953b5d3c047fbc207111672220c71ecf7a4d34f36c92851b7bbde6fca1a02c541bdd7d - languageName: node - linkType: hard - -"decamelize@npm:^1.1.0": - version: 1.2.0 - resolution: "decamelize@npm:1.2.0" - checksum: 10c0/85c39fe8fbf0482d4a1e224ef0119db5c1897f8503bcef8b826adff7a1b11414972f6fef2d7dec2ee0b4be3863cf64ac1439137ae9e6af23a3d8dcbe26a5b4b2 - languageName: node - linkType: hard - -"dedent@npm:^1.0.0": - version: 1.5.3 - resolution: "dedent@npm:1.5.3" - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true - checksum: 10c0/d94bde6e6f780be4da4fd760288fcf755ec368872f4ac5218197200d86430aeb8d90a003a840bff1c20221188e3f23adced0119cb811c6873c70d0ac66d12832 - 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" - checksum: 10c0/7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c - languageName: node - linkType: hard - -"deepmerge@npm:^4.2.2": - version: 4.3.1 - resolution: "deepmerge@npm:4.3.1" - checksum: 10c0/e53481aaf1aa2c4082b5342be6b6d8ad9dfe387bc92ce197a66dea08bd4265904a087e75e464f14d1347cf2ac8afe1e4c16b266e0561cc5df29382d3c5f80044 - languageName: node - linkType: hard - -"defaults@npm:^1.0.3": - version: 1.0.4 - resolution: "defaults@npm:1.0.4" - dependencies: - clone: "npm:^1.0.2" - checksum: 10c0/9cfbe498f5c8ed733775db62dfd585780387d93c17477949e1670bfcfb9346e0281ce8c4bf9f4ac1fc0f9b851113bd6dc9e41182ea1644ccd97de639fa13c35a - languageName: node - linkType: hard - -"define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.4": - version: 1.1.4 - resolution: "define-data-property@npm:1.1.4" - dependencies: - es-define-property: "npm:^1.0.0" - es-errors: "npm:^1.3.0" - gopd: "npm:^1.0.1" - checksum: 10c0/dea0606d1483eb9db8d930d4eac62ca0fa16738b0b3e07046cddfacf7d8c868bbe13fa0cb263eb91c7d0d527960dc3f2f2471a69ed7816210307f6744fe62e37 - languageName: node - linkType: hard - -"define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": - version: 1.2.1 - resolution: "define-properties@npm:1.2.1" - dependencies: - define-data-property: "npm:^1.0.1" - has-property-descriptors: "npm:^1.0.0" - object-keys: "npm:^1.1.1" - checksum: 10c0/88a152319ffe1396ccc6ded510a3896e77efac7a1bfbaa174a7b00414a1747377e0bb525d303794a47cf30e805c2ec84e575758512c6e44a993076d29fd4e6c3 - languageName: node - linkType: hard - -"delayed-stream@npm:~1.0.0": - version: 1.0.0 - resolution: "delayed-stream@npm:1.0.0" - checksum: 10c0/d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19 - languageName: node - linkType: hard - -"detect-newline@npm:^3.0.0": - version: 3.1.0 - resolution: "detect-newline@npm:3.1.0" - checksum: 10c0/c38cfc8eeb9fda09febb44bcd85e467c970d4e3bf526095394e5a4f18bc26dd0cf6b22c69c1fa9969261521c593836db335c2795218f6d781a512aea2fb8209d - languageName: node - linkType: hard - -"diff-sequences@npm:^29.6.3": - version: 29.6.3 - resolution: "diff-sequences@npm:29.6.3" - checksum: 10c0/32e27ac7dbffdf2fb0eb5a84efd98a9ad084fbabd5ac9abb8757c6770d5320d2acd172830b28c4add29bb873d59420601dfc805ac4064330ce59b1adfd0593b2 - languageName: node - linkType: hard - -"diff@npm:^4.0.1": - version: 4.0.2 - resolution: "diff@npm:4.0.2" - checksum: 10c0/81b91f9d39c4eaca068eb0c1eb0e4afbdc5bb2941d197f513dd596b820b956fef43485876226d65d497bebc15666aa2aa82c679e84f65d5f2bfbf14ee46e32c1 - languageName: node - linkType: hard - -"dir-glob@npm:^3.0.1": - version: 3.0.1 - resolution: "dir-glob@npm:3.0.1" - dependencies: - path-type: "npm:^4.0.0" - checksum: 10c0/dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c - languageName: node - linkType: hard - -"doctrine@npm:^3.0.0": - version: 3.0.0 - resolution: "doctrine@npm:3.0.0" - dependencies: - esutils: "npm:^2.0.2" - checksum: 10c0/c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 - languageName: node - linkType: hard - -"dot-prop@npm:^5.1.0": - version: 5.3.0 - resolution: "dot-prop@npm:5.3.0" - dependencies: - is-obj: "npm:^2.0.0" - checksum: 10c0/93f0d343ef87fe8869320e62f2459f7e70f49c6098d948cc47e060f4a3f827d0ad61e83cb82f2bd90cd5b9571b8d334289978a43c0f98fea4f0e99ee8faa0599 - languageName: node - linkType: hard - -"eastasianwidth@npm:^0.2.0": - version: 0.2.0 - resolution: "eastasianwidth@npm:0.2.0" - checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 - languageName: node - linkType: hard - -"easy-table@npm:1.2.0": - version: 1.2.0 - resolution: "easy-table@npm:1.2.0" - dependencies: - ansi-regex: "npm:^5.0.1" - wcwidth: "npm:^1.0.1" - dependenciesMeta: - wcwidth: - optional: true - checksum: 10c0/2d37937cd608586ba02e1ec479f90ccec581d366b3b0d1bb26b99ee6005f8d724e32a07a873759893461ca45b99e2d08c30326529d967ce9eedc1e9b68d4aa63 - 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 - languageName: node - linkType: hard - -"elliptic@npm:6.5.4": - version: 6.5.4 - resolution: "elliptic@npm:6.5.4" - dependencies: - bn.js: "npm:^4.11.9" - brorand: "npm:^1.1.0" - hash.js: "npm:^1.0.0" - hmac-drbg: "npm:^1.0.1" - inherits: "npm:^2.0.4" - minimalistic-assert: "npm:^1.0.1" - minimalistic-crypto-utils: "npm:^1.0.1" - checksum: 10c0/5f361270292c3b27cf0843e84526d11dec31652f03c2763c6c2b8178548175ff5eba95341dd62baff92b2265d1af076526915d8af6cc9cb7559c44a62f8ca6e2 - languageName: node - linkType: hard - -"emittery@npm:^0.13.1": - version: 0.13.1 - resolution: "emittery@npm:0.13.1" - checksum: 10c0/1573d0ae29ab34661b6c63251ff8f5facd24ccf6a823f19417ae8ba8c88ea450325788c67f16c99edec8de4b52ce93a10fe441ece389fd156e88ee7dab9bfa35 - languageName: node - linkType: hard - -"emoji-regex@npm:^10.3.0": - version: 10.3.0 - resolution: "emoji-regex@npm:10.3.0" - checksum: 10c0/b4838e8dcdceb44cf47f59abe352c25ff4fe7857acaf5fb51097c427f6f75b44d052eb907a7a3b86f86bc4eae3a93f5c2b7460abe79c407307e6212d65c91163 - languageName: node - linkType: hard - -"emoji-regex@npm:^8.0.0": - version: 8.0.0 - resolution: "emoji-regex@npm:8.0.0" - checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 - languageName: node - linkType: hard - -"emoji-regex@npm:^9.2.2": - version: 9.2.2 - resolution: "emoji-regex@npm:9.2.2" - checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 - languageName: node - linkType: hard - -"encoding@npm:^0.1.13": - version: 0.1.13 - resolution: "encoding@npm:0.1.13" - dependencies: - iconv-lite: "npm:^0.6.2" - checksum: 10c0/36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039 - languageName: node - linkType: hard - -"env-paths@npm:^2.2.0": - version: 2.2.1 - resolution: "env-paths@npm:2.2.1" - checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 - languageName: node - linkType: hard - -"env-paths@npm:^3.0.0": - version: 3.0.0 - resolution: "env-paths@npm:3.0.0" - checksum: 10c0/76dec878cee47f841103bacd7fae03283af16f0702dad65102ef0a556f310b98a377885e0f32943831eb08b5ab37842a323d02529f3dfd5d0a40ca71b01b435f - languageName: node - linkType: hard - -"err-code@npm:^2.0.2": - version: 2.0.3 - resolution: "err-code@npm:2.0.3" - checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66 - languageName: node - linkType: hard - -"error-ex@npm:^1.3.1": - version: 1.3.2 - resolution: "error-ex@npm:1.3.2" - dependencies: - is-arrayish: "npm:^0.2.1" - checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce - languageName: node - linkType: hard - -"es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.2": - version: 1.23.3 - resolution: "es-abstract@npm:1.23.3" - dependencies: - array-buffer-byte-length: "npm:^1.0.1" - arraybuffer.prototype.slice: "npm:^1.0.3" - available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.7" - data-view-buffer: "npm:^1.0.1" - data-view-byte-length: "npm:^1.0.1" - data-view-byte-offset: "npm:^1.0.0" - es-define-property: "npm:^1.0.0" - es-errors: "npm:^1.3.0" - es-object-atoms: "npm:^1.0.0" - es-set-tostringtag: "npm:^2.0.3" - es-to-primitive: "npm:^1.2.1" - function.prototype.name: "npm:^1.1.6" - get-intrinsic: "npm:^1.2.4" - get-symbol-description: "npm:^1.0.2" - globalthis: "npm:^1.0.3" - gopd: "npm:^1.0.1" - has-property-descriptors: "npm:^1.0.2" - has-proto: "npm:^1.0.3" - has-symbols: "npm:^1.0.3" - hasown: "npm:^2.0.2" - internal-slot: "npm:^1.0.7" - is-array-buffer: "npm:^3.0.4" - is-callable: "npm:^1.2.7" - is-data-view: "npm:^1.0.1" - is-negative-zero: "npm:^2.0.3" - is-regex: "npm:^1.1.4" - is-shared-array-buffer: "npm:^1.0.3" - is-string: "npm:^1.0.7" - is-typed-array: "npm:^1.1.13" - is-weakref: "npm:^1.0.2" - object-inspect: "npm:^1.13.1" - object-keys: "npm:^1.1.1" - object.assign: "npm:^4.1.5" - regexp.prototype.flags: "npm:^1.5.2" - safe-array-concat: "npm:^1.1.2" - safe-regex-test: "npm:^1.0.3" - string.prototype.trim: "npm:^1.2.9" - string.prototype.trimend: "npm:^1.0.8" - string.prototype.trimstart: "npm:^1.0.8" - typed-array-buffer: "npm:^1.0.2" - typed-array-byte-length: "npm:^1.0.1" - typed-array-byte-offset: "npm:^1.0.2" - typed-array-length: "npm:^1.0.6" - unbox-primitive: "npm:^1.0.2" - which-typed-array: "npm:^1.1.15" - checksum: 10c0/d27e9afafb225c6924bee9971a7f25f20c314f2d6cb93a63cada4ac11dcf42040896a6c22e5fb8f2a10767055ed4ddf400be3b1eb12297d281726de470b75666 - languageName: node - linkType: hard - -"es-define-property@npm:^1.0.0": - version: 1.0.0 - resolution: "es-define-property@npm:1.0.0" - dependencies: - get-intrinsic: "npm:^1.2.4" - checksum: 10c0/6bf3191feb7ea2ebda48b577f69bdfac7a2b3c9bcf97307f55fd6ef1bbca0b49f0c219a935aca506c993d8c5d8bddd937766cb760cd5e5a1071351f2df9f9aa4 - languageName: node - linkType: hard - -"es-errors@npm:^1.2.1, es-errors@npm:^1.3.0": - version: 1.3.0 - resolution: "es-errors@npm:1.3.0" - checksum: 10c0/0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85 - languageName: node - linkType: hard - -"es-object-atoms@npm:^1.0.0": - version: 1.0.0 - resolution: "es-object-atoms@npm:1.0.0" - dependencies: - es-errors: "npm:^1.3.0" - checksum: 10c0/1fed3d102eb27ab8d983337bb7c8b159dd2a1e63ff833ec54eea1311c96d5b08223b433060ba240541ca8adba9eee6b0a60cdbf2f80634b784febc9cc8b687b4 - languageName: node - linkType: hard - -"es-set-tostringtag@npm:^2.0.3": - version: 2.0.3 - resolution: "es-set-tostringtag@npm:2.0.3" - dependencies: - get-intrinsic: "npm:^1.2.4" - has-tostringtag: "npm:^1.0.2" - hasown: "npm:^2.0.1" - checksum: 10c0/f22aff1585eb33569c326323f0b0d175844a1f11618b86e193b386f8be0ea9474cfbe46df39c45d959f7aa8f6c06985dc51dd6bce5401645ec5a74c4ceaa836a - languageName: node - linkType: hard - -"es-to-primitive@npm:^1.2.1": - version: 1.2.1 - resolution: "es-to-primitive@npm:1.2.1" - dependencies: - is-callable: "npm:^1.1.4" - is-date-object: "npm:^1.0.1" - is-symbol: "npm:^1.0.2" - checksum: 10c0/0886572b8dc075cb10e50c0af62a03d03a68e1e69c388bd4f10c0649ee41b1fbb24840a1b7e590b393011b5cdbe0144b776da316762653685432df37d6de60f1 - languageName: node - linkType: hard - -"esbuild@npm:^0.20.1, esbuild@npm:~0.20.2": - version: 0.20.2 - resolution: "esbuild@npm:0.20.2" - dependencies: - "@esbuild/aix-ppc64": "npm:0.20.2" - "@esbuild/android-arm": "npm:0.20.2" - "@esbuild/android-arm64": "npm:0.20.2" - "@esbuild/android-x64": "npm:0.20.2" - "@esbuild/darwin-arm64": "npm:0.20.2" - "@esbuild/darwin-x64": "npm:0.20.2" - "@esbuild/freebsd-arm64": "npm:0.20.2" - "@esbuild/freebsd-x64": "npm:0.20.2" - "@esbuild/linux-arm": "npm:0.20.2" - "@esbuild/linux-arm64": "npm:0.20.2" - "@esbuild/linux-ia32": "npm:0.20.2" - "@esbuild/linux-loong64": "npm:0.20.2" - "@esbuild/linux-mips64el": "npm:0.20.2" - "@esbuild/linux-ppc64": "npm:0.20.2" - "@esbuild/linux-riscv64": "npm:0.20.2" - "@esbuild/linux-s390x": "npm:0.20.2" - "@esbuild/linux-x64": "npm:0.20.2" - "@esbuild/netbsd-x64": "npm:0.20.2" - "@esbuild/openbsd-x64": "npm:0.20.2" - "@esbuild/sunos-x64": "npm:0.20.2" - "@esbuild/win32-arm64": "npm:0.20.2" - "@esbuild/win32-ia32": "npm:0.20.2" - "@esbuild/win32-x64": "npm:0.20.2" - 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/66398f9fb2c65e456a3e649747b39af8a001e47963b25e86d9c09d2a48d61aa641b27da0ce5cad63df95ad246105e1d83e7fee0e1e22a0663def73b1c5101112 - languageName: node - linkType: hard - -"escalade@npm:^3.1.1, escalade@npm:^3.1.2": - version: 3.1.2 - resolution: "escalade@npm:3.1.2" - checksum: 10c0/6b4adafecd0682f3aa1cd1106b8fff30e492c7015b178bc81b2d2f75106dabea6c6d6e8508fc491bd58e597c74abb0e8e2368f943ecb9393d4162e3c2f3cf287 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^1.0.5": - version: 1.0.5 - resolution: "escape-string-regexp@npm:1.0.5" - checksum: 10c0/a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^2.0.0": - version: 2.0.0 - resolution: "escape-string-regexp@npm:2.0.0" - checksum: 10c0/2530479fe8db57eace5e8646c9c2a9c80fa279614986d16dcc6bcaceb63ae77f05a851ba6c43756d816c61d7f4534baf56e3c705e3e0d884818a46808811c507 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^4.0.0": - version: 4.0.0 - resolution: "escape-string-regexp@npm:4.0.0" - checksum: 10c0/9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9 - languageName: node - linkType: hard - -"eslint-config-prettier@npm:^9.1.0": - version: 9.1.0 - resolution: "eslint-config-prettier@npm:9.1.0" - peerDependencies: - eslint: ">=7.0.0" - bin: - eslint-config-prettier: bin/cli.js - checksum: 10c0/6d332694b36bc9ac6fdb18d3ca2f6ac42afa2ad61f0493e89226950a7091e38981b66bac2b47ba39d15b73fff2cd32c78b850a9cf9eed9ca9a96bfb2f3a2f10d - languageName: node - linkType: hard - -"eslint-plugin-prettier@npm:^5.1.3": - version: 5.1.3 - resolution: "eslint-plugin-prettier@npm:5.1.3" - dependencies: - prettier-linter-helpers: "npm:^1.0.0" - synckit: "npm:^0.8.6" - peerDependencies: - "@types/eslint": ">=8.0.0" - eslint: ">=8.0.0" - eslint-config-prettier: "*" - prettier: ">=3.0.0" - peerDependenciesMeta: - "@types/eslint": - optional: true - eslint-config-prettier: - optional: true - checksum: 10c0/f45d5fc1fcfec6b0cf038a7a65ddd10a25df4fe3f9e1f6b7f0d5100e66f046a26a2492e69ee765dddf461b93c114cf2e1eb18d4970aafa6f385448985c136e09 - languageName: node - linkType: hard - -"eslint-plugin-sonarjs@npm:^0.24.0": - version: 0.24.0 - resolution: "eslint-plugin-sonarjs@npm:0.24.0" - peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 10c0/b27f45ec33af8e3962309106e5564eaae45ea83873fbf2796175dd85b675b8042bef0c35535efb5778f598d8ca91a1d5683ca22b36599481e3b827c621ba8a50 - languageName: node - linkType: hard - -"eslint-scope@npm:^7.2.2": - version: 7.2.2 - resolution: "eslint-scope@npm:7.2.2" - dependencies: - esrecurse: "npm:^4.3.0" - estraverse: "npm:^5.2.0" - checksum: 10c0/613c267aea34b5a6d6c00514e8545ef1f1433108097e857225fed40d397dd6b1809dffd11c2fde23b37ca53d7bf935fe04d2a18e6fc932b31837b6ad67e1c116 - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": - version: 3.4.3 - resolution: "eslint-visitor-keys@npm:3.4.3" - checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 - languageName: node - linkType: hard - -"eslint@npm:^8.56.0": - version: 8.57.0 - resolution: "eslint@npm:8.57.0" - dependencies: - "@eslint-community/eslint-utils": "npm:^4.2.0" - "@eslint-community/regexpp": "npm:^4.6.1" - "@eslint/eslintrc": "npm:^2.1.4" - "@eslint/js": "npm:8.57.0" - "@humanwhocodes/config-array": "npm:^0.11.14" - "@humanwhocodes/module-importer": "npm:^1.0.1" - "@nodelib/fs.walk": "npm:^1.2.8" - "@ungap/structured-clone": "npm:^1.2.0" - ajv: "npm:^6.12.4" - chalk: "npm:^4.0.0" - cross-spawn: "npm:^7.0.2" - debug: "npm:^4.3.2" - doctrine: "npm:^3.0.0" - escape-string-regexp: "npm:^4.0.0" - eslint-scope: "npm:^7.2.2" - eslint-visitor-keys: "npm:^3.4.3" - espree: "npm:^9.6.1" - esquery: "npm:^1.4.2" - esutils: "npm:^2.0.2" - fast-deep-equal: "npm:^3.1.3" - file-entry-cache: "npm:^6.0.1" - find-up: "npm:^5.0.0" - glob-parent: "npm:^6.0.2" - globals: "npm:^13.19.0" - graphemer: "npm:^1.4.0" - ignore: "npm:^5.2.0" - imurmurhash: "npm:^0.1.4" - is-glob: "npm:^4.0.0" - is-path-inside: "npm:^3.0.3" - js-yaml: "npm:^4.1.0" - json-stable-stringify-without-jsonify: "npm:^1.0.1" - levn: "npm:^0.4.1" - lodash.merge: "npm:^4.6.2" - minimatch: "npm:^3.1.2" - natural-compare: "npm:^1.4.0" - optionator: "npm:^0.9.3" - strip-ansi: "npm:^6.0.1" - text-table: "npm:^0.2.0" - bin: - eslint: bin/eslint.js - checksum: 10c0/00bb96fd2471039a312435a6776fe1fd557c056755eaa2b96093ef3a8508c92c8775d5f754768be6b1dddd09fdd3379ddb231eeb9b6c579ee17ea7d68000a529 - languageName: node - linkType: hard - -"espree@npm:^9.6.0, espree@npm:^9.6.1": - version: 9.6.1 - resolution: "espree@npm:9.6.1" - dependencies: - acorn: "npm:^8.9.0" - acorn-jsx: "npm:^5.3.2" - eslint-visitor-keys: "npm:^3.4.1" - checksum: 10c0/1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460 - languageName: node - linkType: hard - -"esprima@npm:^4.0.0, esprima@npm:^4.0.1": - version: 4.0.1 - resolution: "esprima@npm:4.0.1" - bin: - esparse: ./bin/esparse.js - esvalidate: ./bin/esvalidate.js - checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3 - languageName: node - linkType: hard - -"esquery@npm:^1.4.2": - version: 1.5.0 - resolution: "esquery@npm:1.5.0" - dependencies: - estraverse: "npm:^5.1.0" - checksum: 10c0/a084bd049d954cc88ac69df30534043fb2aee5555b56246493f42f27d1e168f00d9e5d4192e46f10290d312dc30dc7d58994d61a609c579c1219d636996f9213 - languageName: node - linkType: hard - -"esrecurse@npm:^4.3.0": - version: 4.3.0 - resolution: "esrecurse@npm:4.3.0" - dependencies: - estraverse: "npm:^5.2.0" - checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 - languageName: node - linkType: hard - -"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0": - version: 5.3.0 - resolution: "estraverse@npm:5.3.0" - checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 - languageName: node - linkType: hard - -"esutils@npm:^2.0.2": - version: 2.0.3 - resolution: "esutils@npm:2.0.3" - checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 - languageName: node - linkType: hard - -"eventemitter3@npm:^5.0.1": - version: 5.0.1 - resolution: "eventemitter3@npm:5.0.1" - checksum: 10c0/4ba5c00c506e6c786b4d6262cfbce90ddc14c10d4667e5c83ae993c9de88aa856033994dd2b35b83e8dc1170e224e66a319fa80adc4c32adcd2379bbc75da814 - 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" - dependencies: - cross-spawn: "npm:^7.0.3" - get-stream: "npm:^6.0.0" - human-signals: "npm:^2.1.0" - is-stream: "npm:^2.0.0" - merge-stream: "npm:^2.0.0" - npm-run-path: "npm:^4.0.1" - onetime: "npm:^5.1.2" - signal-exit: "npm:^3.0.3" - strip-final-newline: "npm:^2.0.0" - checksum: 10c0/c8e615235e8de4c5addf2fa4c3da3e3aa59ce975a3e83533b4f6a71750fb816a2e79610dc5f1799b6e28976c9ae86747a36a606655bf8cb414a74d8d507b304f - languageName: node - linkType: hard - -"exit@npm:^0.1.2": - version: 0.1.2 - resolution: "exit@npm:0.1.2" - checksum: 10c0/71d2ad9b36bc25bb8b104b17e830b40a08989be7f7d100b13269aaae7c3784c3e6e1e88a797e9e87523993a25ba27c8958959a554535370672cfb4d824af8989 - languageName: node - linkType: hard - -"expect@npm:^29.0.0, expect@npm:^29.7.0": - version: 29.7.0 - resolution: "expect@npm:29.7.0" - dependencies: - "@jest/expect-utils": "npm:^29.7.0" - jest-get-type: "npm:^29.6.3" - jest-matcher-utils: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - checksum: 10c0/2eddeace66e68b8d8ee5f7be57f3014b19770caaf6815c7a08d131821da527fb8c8cb7b3dcd7c883d2d3d8d184206a4268984618032d1e4b16dc8d6596475d41 - languageName: node - linkType: hard - -"exponential-backoff@npm:^3.1.1": - version: 3.1.1 - resolution: "exponential-backoff@npm:3.1.1" - checksum: 10c0/160456d2d647e6019640bd07111634d8c353038d9fa40176afb7cd49b0548bdae83b56d05e907c2cce2300b81cae35d800ef92fefb9d0208e190fa3b7d6bb579 - languageName: node - linkType: hard - -"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": - version: 3.1.3 - resolution: "fast-deep-equal@npm:3.1.3" - checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 - languageName: node - linkType: hard - -"fast-diff@npm:^1.1.2": - version: 1.3.0 - resolution: "fast-diff@npm:1.3.0" - checksum: 10c0/5c19af237edb5d5effda008c891a18a585f74bf12953be57923f17a3a4d0979565fc64dbc73b9e20926b9d895f5b690c618cbb969af0cf022e3222471220ad29 - languageName: node - linkType: hard - -"fast-equals@npm:^5.0.1": - version: 5.0.1 - resolution: "fast-equals@npm:5.0.1" - checksum: 10c0/d7077b8b681036c2840ed9860a3048e44fc268fad2b525b8f25b43458be0c8ad976152eb4b475de9617170423c5b802121ebb61ed6641c3ac035fadaf805c8c0 - languageName: node - linkType: hard - -"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: - "@nodelib/fs.stat": "npm:^2.0.2" - "@nodelib/fs.walk": "npm:^1.2.3" - glob-parent: "npm:^5.1.2" - merge2: "npm:^1.3.0" - micromatch: "npm:^4.0.4" - checksum: 10c0/42baad7b9cd40b63e42039132bde27ca2cb3a4950d0a0f9abe4639ea1aa9d3e3b40f98b1fe31cbc0cc17b664c9ea7447d911a152fa34ec5b72977b125a6fc845 - languageName: node - linkType: hard - -"fast-json-stable-stringify@npm:2.x, fast-json-stable-stringify@npm:^2.0.0, fast-json-stable-stringify@npm:^2.1.0": - version: 2.1.0 - resolution: "fast-json-stable-stringify@npm:2.1.0" - checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b - languageName: node - linkType: hard - -"fast-levenshtein@npm:^2.0.6": - version: 2.0.6 - resolution: "fast-levenshtein@npm:2.0.6" - checksum: 10c0/111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4 - languageName: node - linkType: hard - -"fastq@npm:^1.15.0, fastq@npm:^1.6.0": - version: 1.17.1 - resolution: "fastq@npm:1.17.1" - dependencies: - reusify: "npm:^1.0.4" - checksum: 10c0/1095f16cea45fb3beff558bb3afa74ca7a9250f5a670b65db7ed585f92b4b48381445cd328b3d87323da81e43232b5d5978a8201bde84e0cd514310f1ea6da34 - languageName: node - linkType: hard - -"fb-watchman@npm:^2.0.0": - version: 2.0.2 - resolution: "fb-watchman@npm:2.0.2" - dependencies: - bser: "npm:2.1.1" - checksum: 10c0/feae89ac148adb8f6ae8ccd87632e62b13563e6fb114cacb5265c51f585b17e2e268084519fb2edd133872f1d47a18e6bfd7e5e08625c0d41b93149694187581 - languageName: node - linkType: hard - -"fetch-blob@npm:^3.1.2, fetch-blob@npm:^3.1.4": - version: 3.2.0 - resolution: "fetch-blob@npm:3.2.0" - dependencies: - node-domexception: "npm:^1.0.0" - web-streams-polyfill: "npm:^3.0.3" - checksum: 10c0/60054bf47bfa10fb0ba6cb7742acec2f37c1f56344f79a70bb8b1c48d77675927c720ff3191fa546410a0442c998d27ab05e9144c32d530d8a52fbe68f843b69 - languageName: node - linkType: hard - -"file-entry-cache@npm:8.0.0, file-entry-cache@npm:^8.0.0": - version: 8.0.0 - resolution: "file-entry-cache@npm:8.0.0" - dependencies: - flat-cache: "npm:^4.0.0" - checksum: 10c0/9e2b5938b1cd9b6d7e3612bdc533afd4ac17b2fc646569e9a8abbf2eb48e5eb8e316bc38815a3ef6a1b456f4107f0d0f055a614ca613e75db6bf9ff4d72c1638 - languageName: node - linkType: hard - -"file-entry-cache@npm:^6.0.1": - version: 6.0.1 - resolution: "file-entry-cache@npm:6.0.1" - dependencies: - flat-cache: "npm:^3.0.4" - checksum: 10c0/58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd - languageName: node - linkType: hard - -"fill-range@npm:^7.1.1": - version: 7.1.1 - resolution: "fill-range@npm:7.1.1" - dependencies: - to-regex-range: "npm:^5.0.1" - checksum: 10c0/b75b691bbe065472f38824f694c2f7449d7f5004aa950426a2c28f0306c60db9b880c0b0e4ed819997ffb882d1da02cfcfc819bddc94d71627f5269682edf018 - 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" - checksum: 10c0/071e0886b2b50238ca5026c5bbf58c26a7c1a1f720773b8c7813d16ba93d0200de977af14ac143c5ac18f666b2cfc83073f3a5fe6a4e996c49e0863d5500fccf - languageName: node - linkType: hard - -"find-up-simple@npm:^1.0.0": - version: 1.0.0 - resolution: "find-up-simple@npm:1.0.0" - checksum: 10c0/de1ad5e55c8c162f5600fe3297bb55a3da5cd9cb8c6755e463ec1d52c4c15a84e312a68397fb5962d13263b3dbd4ea294668c465ccacc41291d7cc97588769f9 - languageName: node - linkType: hard - -"find-up@npm:^4.0.0, find-up@npm:^4.1.0": - version: 4.1.0 - resolution: "find-up@npm:4.1.0" - dependencies: - locate-path: "npm:^5.0.0" - path-exists: "npm:^4.0.0" - checksum: 10c0/0406ee89ebeefa2d507feb07ec366bebd8a6167ae74aa4e34fb4c4abd06cf782a3ce26ae4194d70706f72182841733f00551c209fe575cb00bd92104056e78c1 - languageName: node - linkType: hard - -"find-up@npm:^5.0.0": - version: 5.0.0 - resolution: "find-up@npm:5.0.0" - dependencies: - locate-path: "npm:^6.0.0" - path-exists: "npm:^4.0.0" - checksum: 10c0/062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a - languageName: node - linkType: hard - -"flat-cache@npm:^3.0.4": - version: 3.2.0 - resolution: "flat-cache@npm:3.2.0" - dependencies: - flatted: "npm:^3.2.9" - keyv: "npm:^4.5.3" - rimraf: "npm:^3.0.2" - checksum: 10c0/b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75 - languageName: node - linkType: hard - -"flat-cache@npm:^4.0.0": - version: 4.0.1 - resolution: "flat-cache@npm:4.0.1" - dependencies: - flatted: "npm:^3.2.9" - keyv: "npm:^4.5.4" - checksum: 10c0/2c59d93e9faa2523e4fda6b4ada749bed432cfa28c8e251f33b25795e426a1c6dbada777afb1f74fcfff33934fdbdea921ee738fcc33e71adc9d6eca984a1cfc - languageName: node - linkType: hard - -"flatted@npm:^3.2.9": - version: 3.3.1 - resolution: "flatted@npm:3.3.1" - checksum: 10c0/324166b125ee07d4ca9bcf3a5f98d915d5db4f39d711fba640a3178b959919aae1f7cfd8aabcfef5826ed8aa8a2aa14cc85b2d7d18ff638ddf4ae3df39573eaf - languageName: node - linkType: hard - -"follow-redirects@npm:^1.15.6": - version: 1.15.6 - resolution: "follow-redirects@npm:1.15.6" - peerDependenciesMeta: - debug: - optional: true - checksum: 10c0/9ff767f0d7be6aa6870c82ac79cf0368cd73e01bbc00e9eb1c2a16fbb198ec105e3c9b6628bb98e9f3ac66fe29a957b9645bcb9a490bb7aa0d35f908b6b85071 - languageName: node - linkType: hard - -"for-each@npm:^0.3.3": - version: 0.3.3 - resolution: "for-each@npm:0.3.3" - dependencies: - is-callable: "npm:^1.1.3" - checksum: 10c0/22330d8a2db728dbf003ec9182c2d421fbcd2969b02b4f97ec288721cda63eb28f2c08585ddccd0f77cb2930af8d958005c9e72f47141dc51816127a118f39aa - languageName: node - linkType: hard - -"foreground-child@npm:^3.1.0": - version: 3.1.1 - resolution: "foreground-child@npm:3.1.1" - dependencies: - cross-spawn: "npm:^7.0.0" - signal-exit: "npm:^4.0.1" - checksum: 10c0/9700a0285628abaeb37007c9a4d92bd49f67210f09067638774338e146c8e9c825c5c877f072b2f75f41dc6a2d0be8664f79ffc03f6576649f54a84fb9b47de0 - languageName: node - linkType: hard - -"form-data@npm:^4.0.0": - version: 4.0.0 - resolution: "form-data@npm:4.0.0" - dependencies: - asynckit: "npm:^0.4.0" - combined-stream: "npm:^1.0.8" - mime-types: "npm:^2.1.12" - checksum: 10c0/cb6f3ac49180be03ff07ba3ff125f9eba2ff0b277fb33c7fc47569fc5e616882c5b1c69b9904c4c4187e97dd0419dd03b134174756f296dec62041e6527e2c6e - languageName: node - linkType: hard - -"formdata-polyfill@npm:^4.0.10": - version: 4.0.10 - resolution: "formdata-polyfill@npm:4.0.10" - dependencies: - fetch-blob: "npm:^3.1.2" - checksum: 10c0/5392ec484f9ce0d5e0d52fb5a78e7486637d516179b0eb84d81389d7eccf9ca2f663079da56f761355c0a65792810e3b345dc24db9a8bbbcf24ef3c8c88570c6 - languageName: node - linkType: hard - -"fs-minipass@npm:^2.0.0": - version: 2.1.0 - resolution: "fs-minipass@npm:2.1.0" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/703d16522b8282d7299337539c3ed6edddd1afe82435e4f5b76e34a79cd74e488a8a0e26a636afc2440e1a23b03878e2122e3a2cfe375a5cf63c37d92b86a004 - languageName: node - linkType: hard - -"fs-minipass@npm:^3.0.0": - version: 3.0.3 - resolution: "fs-minipass@npm:3.0.3" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 - languageName: node - linkType: hard - -"fs.realpath@npm:^1.0.0": - version: 1.0.0 - resolution: "fs.realpath@npm:1.0.0" - checksum: 10c0/444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948 - languageName: node - linkType: hard - -"fsevents@npm:^2.3.2, fsevents@npm:~2.3.3": - version: 2.3.3 - resolution: "fsevents@npm:2.3.3" - dependencies: - node-gyp: "npm:latest" - checksum: 10c0/a1f0c44595123ed717febbc478aa952e47adfc28e2092be66b8ab1635147254ca6cfe1df792a8997f22716d4cbafc73309899ff7bfac2ac3ad8cf2e4ecc3ec60 - conditions: os=darwin - languageName: node - linkType: hard - -"fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin": - version: 2.3.3 - resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1" - dependencies: - node-gyp: "npm:latest" - conditions: os=darwin - languageName: node - linkType: hard - -"function-bind@npm:^1.1.2": - version: 1.1.2 - resolution: "function-bind@npm:1.1.2" - checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 - languageName: node - linkType: hard - -"function.prototype.name@npm:^1.1.6": - version: 1.1.6 - resolution: "function.prototype.name@npm:1.1.6" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.2.0" - es-abstract: "npm:^1.22.1" - functions-have-names: "npm:^1.2.3" - checksum: 10c0/9eae11294905b62cb16874adb4fc687927cda3162285e0ad9612e6a1d04934005d46907362ea9cdb7428edce05a2f2c3dabc3b2d21e9fd343e9bb278230ad94b - languageName: node - linkType: hard - -"functions-have-names@npm:^1.2.3": - version: 1.2.3 - resolution: "functions-have-names@npm:1.2.3" - checksum: 10c0/33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca - languageName: node - linkType: hard - -"gensequence@npm:^7.0.0": - version: 7.0.0 - resolution: "gensequence@npm:7.0.0" - checksum: 10c0/d446772a795d8a50d70d87e87b827591ccd599c267acce9c2e1f17e4df6c04e6d47661b2ddf5d0144d026c1e3ac71eca917c171e594c3daf6a87aeabbe1d7a3d - languageName: node - linkType: hard - -"gensync@npm:^1.0.0-beta.2": - version: 1.0.0-beta.2 - resolution: "gensync@npm:1.0.0-beta.2" - checksum: 10c0/782aba6cba65b1bb5af3b095d96249d20edbe8df32dbf4696fd49be2583faf676173bf4809386588828e4dd76a3354fcbeb577bab1c833ccd9fc4577f26103f8 - languageName: node - linkType: hard - -"get-caller-file@npm:^2.0.5": - version: 2.0.5 - resolution: "get-caller-file@npm:2.0.5" - checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde - languageName: node - linkType: hard - -"get-east-asian-width@npm:^1.0.0": - version: 1.2.0 - resolution: "get-east-asian-width@npm:1.2.0" - checksum: 10c0/914b1e217cf38436c24b4c60b4c45289e39a45bf9e65ef9fd343c2815a1a02b8a0215aeec8bf9c07c516089004b6e3826332481f40a09529fcadbf6e579f286b - languageName: node - linkType: hard - -"get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4": - version: 1.2.4 - resolution: "get-intrinsic@npm:1.2.4" - dependencies: - es-errors: "npm:^1.3.0" - function-bind: "npm:^1.1.2" - has-proto: "npm:^1.0.1" - has-symbols: "npm:^1.0.3" - hasown: "npm:^2.0.0" - checksum: 10c0/0a9b82c16696ed6da5e39b1267104475c47e3a9bdbe8b509dfe1710946e38a87be70d759f4bb3cda042d76a41ef47fe769660f3b7c0d1f68750299344ffb15b7 - languageName: node - linkType: hard - -"get-package-type@npm:^0.1.0": - version: 0.1.0 - resolution: "get-package-type@npm:0.1.0" - checksum: 10c0/e34cdf447fdf1902a1f6d5af737eaadf606d2ee3518287abde8910e04159368c268568174b2e71102b87b26c2020486f126bfca9c4fb1ceb986ff99b52ecd1be - languageName: node - linkType: hard - -"get-stdin@npm:^9.0.0": - version: 9.0.0 - resolution: "get-stdin@npm:9.0.0" - checksum: 10c0/7ef2edc0c81a0644ca9f051aad8a96ae9373d901485abafaabe59fd347a1c378689d8a3d8825fb3067415d1d09dfcaa43cb9b9516ecac6b74b3138b65a8ccc6b - languageName: node - linkType: hard - -"get-stream@npm:^6.0.0": - version: 6.0.1 - resolution: "get-stream@npm:6.0.1" - checksum: 10c0/49825d57d3fd6964228e6200a58169464b8e8970489b3acdc24906c782fb7f01f9f56f8e6653c4a50713771d6658f7cfe051e5eb8c12e334138c9c918b296341 - languageName: node - linkType: hard - -"get-stream@npm:^8.0.1": - version: 8.0.1 - resolution: "get-stream@npm:8.0.1" - checksum: 10c0/5c2181e98202b9dae0bb4a849979291043e5892eb40312b47f0c22b9414fc9b28a3b6063d2375705eb24abc41ecf97894d9a51f64ff021511b504477b27b4290 - languageName: node - linkType: hard - -"get-symbol-description@npm:^1.0.2": - version: 1.0.2 - resolution: "get-symbol-description@npm:1.0.2" - dependencies: - call-bind: "npm:^1.0.5" - es-errors: "npm:^1.3.0" - get-intrinsic: "npm:^1.2.4" - checksum: 10c0/867be6d63f5e0eb026cb3b0ef695ec9ecf9310febb041072d2e142f260bd91ced9eeb426b3af98791d1064e324e653424afa6fd1af17dee373bea48ae03162bc - languageName: node - linkType: hard - -"get-tsconfig@npm:^4.7.5": - version: 4.7.5 - resolution: "get-tsconfig@npm:4.7.5" - dependencies: - resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/a917dff2ba9ee187c41945736bf9bbab65de31ce5bc1effd76267be483a7340915cff232199406379f26517d2d0a4edcdbcda8cca599c2480a0f2cf1e1de3efa - languageName: node - linkType: hard - -"git-raw-commits@npm:^2.0.11": - version: 2.0.11 - resolution: "git-raw-commits@npm:2.0.11" - dependencies: - dargs: "npm:^7.0.0" - lodash: "npm:^4.17.15" - meow: "npm:^8.0.0" - split2: "npm:^3.0.0" - through2: "npm:^4.0.0" - bin: - git-raw-commits: cli.js - checksum: 10c0/c9cee7ce11a6703098f028d7e47986d5d3e4147d66640086734d6ee2472296b8711f91b40ad458e95acac1bc33cf2898059f1dc890f91220ff89c5fcc609ab64 - languageName: node - linkType: hard - -"glob-parent@npm:^5.1.2": - version: 5.1.2 - resolution: "glob-parent@npm:5.1.2" - dependencies: - is-glob: "npm:^4.0.1" - checksum: 10c0/cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee - languageName: node - linkType: hard - -"glob-parent@npm:^6.0.2": - version: 6.0.2 - resolution: "glob-parent@npm:6.0.2" - dependencies: - is-glob: "npm:^4.0.3" - checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8 - languageName: node - linkType: hard - -"glob@npm:^10.2.2, glob@npm:^10.3.10": - version: 10.3.15 - resolution: "glob@npm:10.3.15" - 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" - bin: - glob: dist/esm/bin.mjs - checksum: 10c0/cda748ddc181b31b3df9548c0991800406d5cc3b3f8110e37a8751ec1e39f37cdae7d7782d5422d7df92775121cdf00599992dff22f7ff1260344843af227c2b - languageName: node - linkType: hard - -"glob@npm:^7.1.3, glob@npm:^7.1.4": - version: 7.2.3 - resolution: "glob@npm:7.2.3" - dependencies: - fs.realpath: "npm:^1.0.0" - inflight: "npm:^1.0.4" - inherits: "npm:2" - minimatch: "npm:^3.1.1" - once: "npm:^1.3.0" - path-is-absolute: "npm:^1.0.0" - checksum: 10c0/65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe - languageName: node - linkType: hard - -"global-directory@npm:^4.0.1": - version: 4.0.1 - resolution: "global-directory@npm:4.0.1" - dependencies: - ini: "npm:4.1.1" - checksum: 10c0/f9cbeef41db4876f94dd0bac1c1b4282a7de9c16350ecaaf83e7b2dd777b32704cc25beeb1170b5a63c42a2c9abfade74d46357fe0133e933218bc89e613d4b2 - languageName: node - linkType: hard - -"global-dirs@npm:^0.1.1": - version: 0.1.1 - resolution: "global-dirs@npm:0.1.1" - dependencies: - ini: "npm:^1.3.4" - checksum: 10c0/3608072e58962396c124ad5a1cfb3f99ee76c998654a3432d82977b3c3eeb09dc8a5a2a9849b2b8113906c8d0aad89ce362c22e97cec5fe34405bbf4f3cdbe7a - languageName: node - linkType: hard - -"globals@npm:^11.1.0": - version: 11.12.0 - resolution: "globals@npm:11.12.0" - checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 - languageName: node - linkType: hard - -"globals@npm:^13.19.0": - version: 13.24.0 - resolution: "globals@npm:13.24.0" - dependencies: - type-fest: "npm:^0.20.2" - checksum: 10c0/d3c11aeea898eb83d5ec7a99508600fbe8f83d2cf00cbb77f873dbf2bcb39428eff1b538e4915c993d8a3b3473fa71eeebfe22c9bb3a3003d1e26b1f2c8a42cd - languageName: node - linkType: hard - -"globalthis@npm:^1.0.3": - version: 1.0.4 - resolution: "globalthis@npm:1.0.4" - dependencies: - define-properties: "npm:^1.2.1" - gopd: "npm:^1.0.1" - checksum: 10c0/9d156f313af79d80b1566b93e19285f481c591ad6d0d319b4be5e03750d004dde40a39a0f26f7e635f9007a3600802f53ecd85a759b86f109e80a5f705e01846 - languageName: node - linkType: hard - -"globby@npm:^11.1.0": - version: 11.1.0 - resolution: "globby@npm:11.1.0" - dependencies: - array-union: "npm:^2.1.0" - dir-glob: "npm:^3.0.1" - fast-glob: "npm:^3.2.9" - ignore: "npm:^5.2.0" - merge2: "npm:^1.4.1" - slash: "npm:^3.0.0" - checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189 - languageName: node - linkType: hard - -"gopd@npm:^1.0.1": - version: 1.0.1 - resolution: "gopd@npm:1.0.1" - dependencies: - get-intrinsic: "npm:^1.1.3" - checksum: 10c0/505c05487f7944c552cee72087bf1567debb470d4355b1335f2c262d218ebbff805cd3715448fe29b4b380bae6912561d0467233e4165830efd28da241418c63 - languageName: node - linkType: hard - -"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": - version: 4.2.11 - resolution: "graceful-fs@npm:4.2.11" - checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 - languageName: node - linkType: hard - -"graphemer@npm:^1.4.0": - version: 1.4.0 - resolution: "graphemer@npm:1.4.0" - checksum: 10c0/e951259d8cd2e0d196c72ec711add7115d42eb9a8146c8eeda5b8d3ac91e5dd816b9cd68920726d9fd4490368e7ed86e9c423f40db87e2d8dfafa00fa17c3a31 - languageName: node - linkType: hard - -"hard-rejection@npm:^2.1.0": - version: 2.1.0 - resolution: "hard-rejection@npm:2.1.0" - checksum: 10c0/febc3343a1ad575aedcc112580835b44a89a89e01f400b4eda6e8110869edfdab0b00cd1bd4c3bfec9475a57e79e0b355aecd5be46454b6a62b9a359af60e564 - languageName: node - linkType: hard - -"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": - version: 1.0.2 - resolution: "has-bigints@npm:1.0.2" - checksum: 10c0/724eb1485bfa3cdff6f18d95130aa190561f00b3fcf9f19dc640baf8176b5917c143b81ec2123f8cddb6c05164a198c94b13e1377c497705ccc8e1a80306e83b - languageName: node - linkType: hard - -"has-flag@npm:^3.0.0": - version: 3.0.0 - resolution: "has-flag@npm:3.0.0" - checksum: 10c0/1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473 - languageName: node - linkType: hard - -"has-flag@npm:^4.0.0": - version: 4.0.0 - resolution: "has-flag@npm:4.0.0" - checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 - languageName: node - linkType: hard - -"has-own-prop@npm:^2.0.0": - version: 2.0.0 - resolution: "has-own-prop@npm:2.0.0" - checksum: 10c0/2745497283d80228b5c5fbb8c63ab1029e604bce7db8d4b36255e427b3695b2153dc978b176674d0dd2a23f132809e04d7ef41fefc0ab85870a5caa918c5c0d9 - languageName: node - linkType: hard - -"has-own-property@npm:^0.1.0": - version: 0.1.0 - resolution: "has-own-property@npm:0.1.0" - checksum: 10c0/413ad4aea605c08baa6e1012dbae1bad0d8f52ea14412921270649e17852f143a0a79f77ae8890e1ca68406409e860ca41b5b3a35a8e5b0ca7d6d6c89fbb3e0b - languageName: node - linkType: hard - -"has-property-descriptors@npm:^1.0.0, has-property-descriptors@npm:^1.0.2": - version: 1.0.2 - resolution: "has-property-descriptors@npm:1.0.2" - dependencies: - es-define-property: "npm:^1.0.0" - checksum: 10c0/253c1f59e80bb476cf0dde8ff5284505d90c3bdb762983c3514d36414290475fe3fd6f574929d84de2a8eec00d35cf07cb6776205ff32efd7c50719125f00236 - languageName: node - linkType: hard - -"has-proto@npm:^1.0.1, has-proto@npm:^1.0.3": - version: 1.0.3 - resolution: "has-proto@npm:1.0.3" - checksum: 10c0/35a6989f81e9f8022c2f4027f8b48a552de714938765d019dbea6bb547bd49ce5010a3c7c32ec6ddac6e48fc546166a3583b128f5a7add8b058a6d8b4afec205 - languageName: node - linkType: hard - -"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": - version: 1.0.3 - resolution: "has-symbols@npm:1.0.3" - checksum: 10c0/e6922b4345a3f37069cdfe8600febbca791c94988c01af3394d86ca3360b4b93928bbf395859158f88099cb10b19d98e3bbab7c9ff2c1bd09cf665ee90afa2c3 - languageName: node - linkType: hard - -"has-tostringtag@npm:^1.0.0, has-tostringtag@npm:^1.0.2": - version: 1.0.2 - resolution: "has-tostringtag@npm:1.0.2" - dependencies: - has-symbols: "npm:^1.0.3" - checksum: 10c0/a8b166462192bafe3d9b6e420a1d581d93dd867adb61be223a17a8d6dad147aa77a8be32c961bb2f27b3ef893cae8d36f564ab651f5e9b7938ae86f74027c48c - languageName: node - linkType: hard - -"hash.js@npm:1.1.7, hash.js@npm:^1.0.0, hash.js@npm:^1.0.3": - version: 1.1.7 - resolution: "hash.js@npm:1.1.7" - dependencies: - inherits: "npm:^2.0.3" - minimalistic-assert: "npm:^1.0.1" - checksum: 10c0/41ada59494eac5332cfc1ce6b7ebdd7b88a3864a6d6b08a3ea8ef261332ed60f37f10877e0c825aaa4bddebf164fbffa618286aeeec5296675e2671cbfa746c4 - languageName: node - linkType: hard - -"hasown@npm:^2.0.0, hasown@npm:^2.0.1, hasown@npm:^2.0.2": - version: 2.0.2 - resolution: "hasown@npm:2.0.2" - dependencies: - function-bind: "npm:^1.1.2" - checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 - languageName: node - linkType: hard - -"hmac-drbg@npm:^1.0.1": - version: 1.0.1 - resolution: "hmac-drbg@npm:1.0.1" - dependencies: - hash.js: "npm:^1.0.3" - minimalistic-assert: "npm:^1.0.0" - minimalistic-crypto-utils: "npm:^1.0.1" - checksum: 10c0/f3d9ba31b40257a573f162176ac5930109816036c59a09f901eb2ffd7e5e705c6832bedfff507957125f2086a0ab8f853c0df225642a88bf1fcaea945f20600d - languageName: node - linkType: hard - -"hosted-git-info@npm:^2.1.4": - version: 2.8.9 - resolution: "hosted-git-info@npm:2.8.9" - checksum: 10c0/317cbc6b1bbbe23c2a40ae23f3dafe9fa349ce42a89a36f930e3f9c0530c179a3882d2ef1e4141a4c3674d6faaea862138ec55b43ad6f75e387fda2483a13c70 - languageName: node - linkType: hard - -"hosted-git-info@npm:^4.0.1": - version: 4.1.0 - resolution: "hosted-git-info@npm:4.1.0" - dependencies: - lru-cache: "npm:^6.0.0" - checksum: 10c0/150fbcb001600336d17fdbae803264abed013548eea7946c2264c49ebe2ebd8c4441ba71dd23dd8e18c65de79d637f98b22d4760ba5fb2e0b15d62543d0fff07 - languageName: node - linkType: hard - -"html-escaper@npm:^2.0.0": - version: 2.0.2 - resolution: "html-escaper@npm:2.0.2" - checksum: 10c0/208e8a12de1a6569edbb14544f4567e6ce8ecc30b9394fcaa4e7bb1e60c12a7c9a1ed27e31290817157e8626f3a4f29e76c8747030822eb84a6abb15c255f0a0 - languageName: node - linkType: hard - -"http-cache-semantics@npm:^4.1.1": - version: 4.1.1 - resolution: "http-cache-semantics@npm:4.1.1" - checksum: 10c0/ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc - languageName: node - linkType: hard - -"http-proxy-agent@npm:^7.0.0": - version: 7.0.2 - resolution: "http-proxy-agent@npm:7.0.2" - dependencies: - agent-base: "npm:^7.1.0" - debug: "npm:^4.3.4" - checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 - languageName: node - linkType: hard - -"https-proxy-agent@npm:^7.0.1": - version: 7.0.4 - resolution: "https-proxy-agent@npm:7.0.4" - dependencies: - agent-base: "npm:^7.0.2" - debug: "npm:4" - checksum: 10c0/bc4f7c38da32a5fc622450b6cb49a24ff596f9bd48dcedb52d2da3fa1c1a80e100fb506bd59b326c012f21c863c69b275c23de1a01d0b84db396822fdf25e52b - languageName: node - linkType: hard - -"human-signals@npm:^2.1.0": - version: 2.1.0 - resolution: "human-signals@npm:2.1.0" - checksum: 10c0/695edb3edfcfe9c8b52a76926cd31b36978782062c0ed9b1192b36bebc75c4c87c82e178dfcb0ed0fc27ca59d434198aac0bd0be18f5781ded775604db22304a - languageName: node - linkType: hard - -"human-signals@npm:^5.0.0": - version: 5.0.0 - resolution: "human-signals@npm:5.0.0" - checksum: 10c0/5a9359073fe17a8b58e5a085e9a39a950366d9f00217c4ff5878bd312e09d80f460536ea6a3f260b5943a01fe55c158d1cea3fc7bee3d0520aeef04f6d915c82 - languageName: node - linkType: hard - -"husky@npm:^9.0.11": - version: 9.0.11 - resolution: "husky@npm:9.0.11" - bin: - husky: bin.mjs - checksum: 10c0/2c787dcf74a837fc9a4fea7da907509d4bd9a289f4ea10ecc9d86279e4d4542b0f5f6443a619bccae19e265f2677172cc2b86aae5c932a35a330cc227d914605 - languageName: node - linkType: hard - -"iconv-lite@npm:^0.6.2": - version: 0.6.3 - resolution: "iconv-lite@npm:0.6.3" - dependencies: - safer-buffer: "npm:>= 2.1.2 < 3.0.0" - checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 - languageName: node - linkType: hard - -"identity-function@npm:^1.0.0": - version: 1.0.0 - resolution: "identity-function@npm:1.0.0" - checksum: 10c0/fdd102a8eef90e5fc453198bcb85705ff058c1baba7d4ab4a053f6e8e6814de4318f6c3d7605bbe9fa9e92800d323494be0294d7d370fb5ecb99cfbd729d0132 - languageName: node - linkType: hard - -"ignore@npm:^5.1.8, ignore@npm:^5.2.0, ignore@npm:^5.3.1": - version: 5.3.1 - resolution: "ignore@npm:5.3.1" - checksum: 10c0/703f7f45ffb2a27fb2c5a8db0c32e7dee66b33a225d28e8db4e1be6474795f606686a6e3bcc50e1aa12f2042db4c9d4a7d60af3250511de74620fbed052ea4cd - languageName: node - linkType: hard - -"import-fresh@npm:^3.0.0, import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0": - version: 3.3.0 - resolution: "import-fresh@npm:3.3.0" - dependencies: - parent-module: "npm:^1.0.0" - resolve-from: "npm:^4.0.0" - checksum: 10c0/7f882953aa6b740d1f0e384d0547158bc86efbf2eea0f1483b8900a6f65c5a5123c2cf09b0d542cc419d0b98a759ecaeb394237e97ea427f2da221dc3cd80cc3 - languageName: node - linkType: hard - -"import-local@npm:^3.0.2": - version: 3.1.0 - resolution: "import-local@npm:3.1.0" - dependencies: - pkg-dir: "npm:^4.2.0" - resolve-cwd: "npm:^3.0.0" - bin: - import-local-fixture: fixtures/cli.js - checksum: 10c0/c67ecea72f775fe8684ca3d057e54bdb2ae28c14bf261d2607c269c18ea0da7b730924c06262eca9aed4b8ab31e31d65bc60b50e7296c85908a56e2f7d41ecd2 - languageName: node - linkType: hard - -"import-meta-resolve@npm:^4.1.0": - version: 4.1.0 - resolution: "import-meta-resolve@npm:4.1.0" - checksum: 10c0/42f3284b0460635ddf105c4ad99c6716099c3ce76702602290ad5cbbcd295700cbc04e4bdf47bacf9e3f1a4cec2e1ff887dabc20458bef398f9de22ddff45ef5 - languageName: node - linkType: hard - -"imurmurhash@npm:^0.1.4": - version: 0.1.4 - resolution: "imurmurhash@npm:0.1.4" - checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 - languageName: node - linkType: hard - -"indent-string@npm:^4.0.0": - version: 4.0.0 - resolution: "indent-string@npm:4.0.0" - checksum: 10c0/1e1904ddb0cb3d6cce7cd09e27a90184908b7a5d5c21b92e232c93579d314f0b83c246ffb035493d0504b1e9147ba2c9b21df0030f48673fba0496ecd698161f - languageName: node - linkType: hard - -"inflight@npm:^1.0.4": - version: 1.0.6 - resolution: "inflight@npm:1.0.6" - dependencies: - once: "npm:^1.3.0" - wrappy: "npm:1" - checksum: 10c0/7faca22584600a9dc5b9fca2cd5feb7135ac8c935449837b315676b4c90aa4f391ec4f42240178244b5a34e8bede1948627fda392ca3191522fc46b34e985ab2 - languageName: node - linkType: hard - -"inherits@npm:2, inherits@npm:^2.0.3, inherits@npm:^2.0.4": - version: 2.0.4 - resolution: "inherits@npm:2.0.4" - checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 - languageName: node - linkType: hard - -"ini@npm:4.1.1": - version: 4.1.1 - resolution: "ini@npm:4.1.1" - checksum: 10c0/7fddc8dfd3e63567d4fdd5d999d1bf8a8487f1479d0b34a1d01f28d391a9228d261e19abc38e1a6a1ceb3400c727204fce05725d5eb598dfcf2077a1e3afe211 - languageName: node - linkType: hard - -"ini@npm:^1.3.4": - version: 1.3.8 - resolution: "ini@npm:1.3.8" - checksum: 10c0/ec93838d2328b619532e4f1ff05df7909760b6f66d9c9e2ded11e5c1897d6f2f9980c54dd638f88654b00919ce31e827040631eab0a3969e4d1abefa0719516a - languageName: node - linkType: hard - -"internal-slot@npm:^1.0.7": - version: 1.0.7 - resolution: "internal-slot@npm:1.0.7" - dependencies: - es-errors: "npm:^1.3.0" - hasown: "npm:^2.0.0" - side-channel: "npm:^1.0.4" - checksum: 10c0/f8b294a4e6ea3855fc59551bbf35f2b832cf01fd5e6e2a97f5c201a071cc09b49048f856e484b67a6c721da5e55736c5b6ddafaf19e2dbeb4a3ff1821680de6c - languageName: node - linkType: hard - -"ip-address@npm:^9.0.5": - version: 9.0.5 - resolution: "ip-address@npm:9.0.5" - dependencies: - jsbn: "npm:1.1.0" - sprintf-js: "npm:^1.1.3" - checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc - languageName: node - linkType: hard - -"is-array-buffer@npm:^3.0.4": - version: 3.0.4 - resolution: "is-array-buffer@npm:3.0.4" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.2.1" - checksum: 10c0/42a49d006cc6130bc5424eae113e948c146f31f9d24460fc0958f855d9d810e6fd2e4519bf19aab75179af9c298ea6092459d8cafdec523cd19e529b26eab860 - languageName: node - linkType: hard - -"is-arrayish@npm:^0.2.1": - version: 0.2.1 - resolution: "is-arrayish@npm:0.2.1" - checksum: 10c0/e7fb686a739068bb70f860b39b67afc62acc62e36bb61c5f965768abce1873b379c563e61dd2adad96ebb7edf6651111b385e490cf508378959b0ed4cac4e729 - languageName: node - linkType: hard - -"is-bigint@npm:^1.0.1": - version: 1.0.4 - resolution: "is-bigint@npm:1.0.4" - dependencies: - has-bigints: "npm:^1.0.1" - checksum: 10c0/eb9c88e418a0d195ca545aff2b715c9903d9b0a5033bc5922fec600eb0c3d7b1ee7f882dbf2e0d5a6e694e42391be3683e4368737bd3c4a77f8ac293e7773696 - languageName: node - linkType: hard - -"is-boolean-object@npm:^1.1.0": - version: 1.1.2 - resolution: "is-boolean-object@npm:1.1.2" - dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/6090587f8a8a8534c0f816da868bc94f32810f08807aa72fa7e79f7e11c466d281486ffe7a788178809c2aa71fe3e700b167fe80dd96dad68026bfff8ebf39f7 - languageName: node - linkType: hard - -"is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": - version: 1.2.7 - resolution: "is-callable@npm:1.2.7" - checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f - languageName: node - linkType: hard - -"is-core-module@npm:^2.13.0, is-core-module@npm:^2.5.0": - version: 2.13.1 - resolution: "is-core-module@npm:2.13.1" - dependencies: - hasown: "npm:^2.0.0" - checksum: 10c0/2cba9903aaa52718f11c4896dabc189bab980870aae86a62dc0d5cedb546896770ee946fb14c84b7adf0735f5eaea4277243f1b95f5cefa90054f92fbcac2518 - languageName: node - linkType: hard - -"is-data-view@npm:^1.0.1": - version: 1.0.1 - resolution: "is-data-view@npm:1.0.1" - dependencies: - is-typed-array: "npm:^1.1.13" - checksum: 10c0/a3e6ec84efe303da859107aed9b970e018e2bee7ffcb48e2f8096921a493608134240e672a2072577e5f23a729846241d9634806e8a0e51d9129c56d5f65442d - languageName: node - linkType: hard - -"is-date-object@npm:^1.0.1": - version: 1.0.5 - resolution: "is-date-object@npm:1.0.5" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/eed21e5dcc619c48ccef804dfc83a739dbb2abee6ca202838ee1bd5f760fe8d8a93444f0d49012ad19bb7c006186e2884a1b92f6e1c056da7fd23d0a9ad5992e - languageName: node - linkType: hard - -"is-extglob@npm:^2.1.1": - version: 2.1.1 - resolution: "is-extglob@npm:2.1.1" - checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912 - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^3.0.0": - version: 3.0.0 - resolution: "is-fullwidth-code-point@npm:3.0.0" - checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^4.0.0": - version: 4.0.0 - resolution: "is-fullwidth-code-point@npm:4.0.0" - checksum: 10c0/df2a717e813567db0f659c306d61f2f804d480752526886954a2a3e2246c7745fd07a52b5fecf2b68caf0a6c79dcdace6166fdf29cc76ed9975cc334f0a018b8 - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^5.0.0": - version: 5.0.0 - resolution: "is-fullwidth-code-point@npm:5.0.0" - dependencies: - get-east-asian-width: "npm:^1.0.0" - checksum: 10c0/cd591b27d43d76b05fa65ed03eddce57a16e1eca0b7797ff7255de97019bcaf0219acfc0c4f7af13319e13541f2a53c0ace476f442b13267b9a6a7568f2b65c8 - languageName: node - linkType: hard - -"is-generator-fn@npm:^2.0.0": - version: 2.1.0 - resolution: "is-generator-fn@npm:2.1.0" - checksum: 10c0/2957cab387997a466cd0bf5c1b6047bd21ecb32bdcfd8996b15747aa01002c1c88731802f1b3d34ac99f4f6874b626418bd118658cf39380fe5fff32a3af9c4d - languageName: node - linkType: hard - -"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3": - version: 4.0.3 - resolution: "is-glob@npm:4.0.3" - dependencies: - is-extglob: "npm:^2.1.1" - checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a - languageName: node - linkType: hard - -"is-iterable@npm:^1.1.0": - version: 1.1.1 - resolution: "is-iterable@npm:1.1.1" - checksum: 10c0/8c919e9f608e5940b1d27dee9ef6e5de75e891665ab8dbcbfc740a65dbdaf070209950329f524573c52b1c584620d82ead13e662ce61c531152ddac70592c953 - languageName: node - linkType: hard - -"is-lambda@npm:^1.0.1": - version: 1.0.1 - resolution: "is-lambda@npm:1.0.1" - checksum: 10c0/85fee098ae62ba6f1e24cf22678805473c7afd0fb3978a3aa260e354cb7bcb3a5806cf0a98403188465efedec41ab4348e8e4e79305d409601323855b3839d4d - languageName: node - linkType: hard - -"is-negative-zero@npm:^2.0.3": - version: 2.0.3 - resolution: "is-negative-zero@npm:2.0.3" - checksum: 10c0/bcdcf6b8b9714063ffcfa9929c575ac69bfdabb8f4574ff557dfc086df2836cf07e3906f5bbc4f2a5c12f8f3ba56af640c843cdfc74da8caed86c7c7d66fd08e - languageName: node - linkType: hard - -"is-number-object@npm:^1.0.4": - version: 1.0.7 - resolution: "is-number-object@npm:1.0.7" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/aad266da1e530f1804a2b7bd2e874b4869f71c98590b3964f9d06cc9869b18f8d1f4778f838ecd2a11011bce20aeecb53cb269ba916209b79c24580416b74b1b - languageName: node - linkType: hard - -"is-number@npm:^4.0.0": - version: 4.0.0 - resolution: "is-number@npm:4.0.0" - checksum: 10c0/bb17a331f357eb59a7f8db848086c41886715b2ea1db03f284a99d14001cda094083a5b6a7b343b5bcf410ccef668a70bc626d07bc2032cc4ab46dd264cea244 - languageName: node - linkType: hard - -"is-number@npm:^7.0.0": - version: 7.0.0 - resolution: "is-number@npm:7.0.0" - checksum: 10c0/b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811 - languageName: node - linkType: hard - -"is-obj@npm:^2.0.0": - version: 2.0.0 - resolution: "is-obj@npm:2.0.0" - checksum: 10c0/85044ed7ba8bd169e2c2af3a178cacb92a97aa75de9569d02efef7f443a824b5e153eba72b9ae3aca6f8ce81955271aa2dc7da67a8b720575d3e38104208cb4e - languageName: node - linkType: hard - -"is-path-inside@npm:^3.0.3": - version: 3.0.3 - resolution: "is-path-inside@npm:3.0.3" - checksum: 10c0/cf7d4ac35fb96bab6a1d2c3598fe5ebb29aafb52c0aaa482b5a3ed9d8ba3edc11631e3ec2637660c44b3ce0e61a08d54946e8af30dec0b60a7c27296c68ffd05 - languageName: node - linkType: hard - -"is-plain-obj@npm:^1.1.0": - version: 1.1.0 - resolution: "is-plain-obj@npm:1.1.0" - checksum: 10c0/daaee1805add26f781b413fdf192fc91d52409583be30ace35c82607d440da63cc4cac0ac55136716688d6c0a2c6ef3edb2254fecbd1fe06056d6bd15975ee8c - languageName: node - linkType: hard - -"is-regex@npm:^1.1.4": - version: 1.1.4 - resolution: "is-regex@npm:1.1.4" - dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/bb72aae604a69eafd4a82a93002058c416ace8cde95873589a97fc5dac96a6c6c78a9977d487b7b95426a8f5073969124dd228f043f9f604f041f32fcc465fc1 - languageName: node - linkType: hard - -"is-shared-array-buffer@npm:^1.0.2, is-shared-array-buffer@npm:^1.0.3": - version: 1.0.3 - resolution: "is-shared-array-buffer@npm:1.0.3" - dependencies: - call-bind: "npm:^1.0.7" - checksum: 10c0/adc11ab0acbc934a7b9e5e9d6c588d4ec6682f6fea8cda5180721704fa32927582ede5b123349e32517fdadd07958973d24716c80e7ab198970c47acc09e59c7 - languageName: node - linkType: hard - -"is-stream@npm:^2.0.0": - version: 2.0.1 - resolution: "is-stream@npm:2.0.1" - checksum: 10c0/7c284241313fc6efc329b8d7f08e16c0efeb6baab1b4cd0ba579eb78e5af1aa5da11e68559896a2067cd6c526bd29241dda4eb1225e627d5aa1a89a76d4635a5 - languageName: node - linkType: hard - -"is-stream@npm:^3.0.0": - version: 3.0.0 - resolution: "is-stream@npm:3.0.0" - checksum: 10c0/eb2f7127af02ee9aa2a0237b730e47ac2de0d4e76a4a905a50a11557f2339df5765eaea4ceb8029f1efa978586abe776908720bfcb1900c20c6ec5145f6f29d8 - languageName: node - linkType: hard - -"is-string@npm:^1.0.5, is-string@npm:^1.0.7": - version: 1.0.7 - resolution: "is-string@npm:1.0.7" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/905f805cbc6eedfa678aaa103ab7f626aac9ebbdc8737abb5243acaa61d9820f8edc5819106b8fcd1839e33db21de9f0116ae20de380c8382d16dc2a601921f6 - languageName: node - linkType: hard - -"is-symbol@npm:^1.0.2, is-symbol@npm:^1.0.3": - version: 1.0.4 - resolution: "is-symbol@npm:1.0.4" - dependencies: - has-symbols: "npm:^1.0.2" - checksum: 10c0/9381dd015f7c8906154dbcbf93fad769de16b4b961edc94f88d26eb8c555935caa23af88bda0c93a18e65560f6d7cca0fd5a3f8a8e1df6f1abbb9bead4502ef7 - languageName: node - linkType: hard - -"is-text-path@npm:^2.0.0": - version: 2.0.0 - resolution: "is-text-path@npm:2.0.0" - dependencies: - text-extensions: "npm:^2.0.0" - checksum: 10c0/e3c470e1262a3a54aa0fca1c0300b2659a7aed155714be6b643f88822c03bcfa6659b491f7a05c5acd3c1a3d6d42bab47e1bdd35bcc3a25973c4f26b2928bc1a - languageName: node - linkType: hard - -"is-typed-array@npm:^1.1.13": - version: 1.1.13 - resolution: "is-typed-array@npm:1.1.13" - dependencies: - which-typed-array: "npm:^1.1.14" - checksum: 10c0/fa5cb97d4a80e52c2cc8ed3778e39f175a1a2ae4ddf3adae3187d69586a1fd57cfa0b095db31f66aa90331e9e3da79184cea9c6abdcd1abc722dc3c3edd51cca - languageName: node - linkType: hard - -"is-weakref@npm:^1.0.2": - version: 1.0.2 - resolution: "is-weakref@npm:1.0.2" - dependencies: - call-bind: "npm:^1.0.2" - checksum: 10c0/1545c5d172cb690c392f2136c23eec07d8d78a7f57d0e41f10078aa4f5daf5d7f57b6513a67514ab4f073275ad00c9822fc8935e00229d0a2089e1c02685d4b1 - languageName: node - linkType: hard - -"isarray@npm:^2.0.5": - version: 2.0.5 - resolution: "isarray@npm:2.0.5" - checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd - languageName: node - linkType: hard - -"isexe@npm:^2.0.0": - version: 2.0.0 - resolution: "isexe@npm:2.0.0" - checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d - languageName: node - linkType: hard - -"isexe@npm:^3.1.1": - version: 3.1.1 - resolution: "isexe@npm:3.1.1" - checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 - languageName: node - linkType: hard - -"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0": - version: 3.2.2 - resolution: "istanbul-lib-coverage@npm:3.2.2" - checksum: 10c0/6c7ff2106769e5f592ded1fb418f9f73b4411fd5a084387a5410538332b6567cd1763ff6b6cadca9b9eb2c443cce2f7ea7d7f1b8d315f9ce58539793b1e0922b - languageName: node - linkType: hard - -"istanbul-lib-instrument@npm:^5.0.4": - version: 5.2.1 - resolution: "istanbul-lib-instrument@npm:5.2.1" - dependencies: - "@babel/core": "npm:^7.12.3" - "@babel/parser": "npm:^7.14.7" - "@istanbuljs/schema": "npm:^0.1.2" - istanbul-lib-coverage: "npm:^3.2.0" - semver: "npm:^6.3.0" - checksum: 10c0/8a1bdf3e377dcc0d33ec32fe2b6ecacdb1e4358fd0eb923d4326bb11c67622c0ceb99600a680f3dad5d29c66fc1991306081e339b4d43d0b8a2ab2e1d910a6ee - languageName: node - linkType: hard - -"istanbul-lib-instrument@npm:^6.0.0": - version: 6.0.2 - resolution: "istanbul-lib-instrument@npm:6.0.2" - dependencies: - "@babel/core": "npm:^7.23.9" - "@babel/parser": "npm:^7.23.9" - "@istanbuljs/schema": "npm:^0.1.3" - istanbul-lib-coverage: "npm:^3.2.0" - semver: "npm:^7.5.4" - checksum: 10c0/405c6ac037bf8c7ee7495980b0cd5544b2c53078c10534d0c9ceeb92a9ea7dcf8510f58ccfce31336458a8fa6ccef27b570bbb602abaa8c1650f5496a807477c - languageName: node - linkType: hard - -"istanbul-lib-report@npm:^3.0.0": - version: 3.0.1 - resolution: "istanbul-lib-report@npm:3.0.1" - dependencies: - istanbul-lib-coverage: "npm:^3.0.0" - make-dir: "npm:^4.0.0" - supports-color: "npm:^7.1.0" - checksum: 10c0/84323afb14392de8b6a5714bd7e9af845cfbd56cfe71ed276cda2f5f1201aea673c7111901227ee33e68e4364e288d73861eb2ed48f6679d1e69a43b6d9b3ba7 - languageName: node - linkType: hard - -"istanbul-lib-source-maps@npm:^4.0.0": - version: 4.0.1 - resolution: "istanbul-lib-source-maps@npm:4.0.1" - dependencies: - debug: "npm:^4.1.1" - istanbul-lib-coverage: "npm:^3.0.0" - source-map: "npm:^0.6.1" - checksum: 10c0/19e4cc405016f2c906dff271a76715b3e881fa9faeb3f09a86cb99b8512b3a5ed19cadfe0b54c17ca0e54c1142c9c6de9330d65506e35873994e06634eebeb66 - languageName: node - linkType: hard - -"istanbul-reports@npm:^3.1.3": - version: 3.1.7 - resolution: "istanbul-reports@npm:3.1.7" - dependencies: - html-escaper: "npm:^2.0.0" - istanbul-lib-report: "npm:^3.0.0" - checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51 - languageName: node - linkType: hard - -"iterable-lookahead@npm:^1.0.0": - version: 1.0.0 - resolution: "iterable-lookahead@npm:1.0.0" - checksum: 10c0/f320a513d5ecfe0ce3c681f1dc6f7e6d81a8bfd2d35911e92347c3d2115acedaf17f877b4aac4360125774b11b20f175d417a5ca8952bb84071d79a755d8768e - languageName: node - linkType: hard - -"jackspeak@npm:^2.3.6": - version: 2.3.6 - resolution: "jackspeak@npm:2.3.6" - dependencies: - "@isaacs/cliui": "npm:^8.0.2" - "@pkgjs/parseargs": "npm:^0.11.0" - dependenciesMeta: - "@pkgjs/parseargs": - optional: true - checksum: 10c0/f01d8f972d894cd7638bc338e9ef5ddb86f7b208ce177a36d718eac96ec86638a6efa17d0221b10073e64b45edc2ce15340db9380b1f5d5c5d000cbc517dc111 - languageName: node - linkType: hard - -"jest-changed-files@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-changed-files@npm:29.7.0" - dependencies: - execa: "npm:^5.0.0" - jest-util: "npm:^29.7.0" - p-limit: "npm:^3.1.0" - checksum: 10c0/e071384d9e2f6bb462231ac53f29bff86f0e12394c1b49ccafbad225ce2ab7da226279a8a94f421949920bef9be7ef574fd86aee22e8adfa149be73554ab828b - languageName: node - linkType: hard - -"jest-circus@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-circus@npm:29.7.0" - dependencies: - "@jest/environment": "npm:^29.7.0" - "@jest/expect": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - co: "npm:^4.6.0" - dedent: "npm:^1.0.0" - is-generator-fn: "npm:^2.0.0" - jest-each: "npm:^29.7.0" - jest-matcher-utils: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-runtime: "npm:^29.7.0" - jest-snapshot: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - p-limit: "npm:^3.1.0" - pretty-format: "npm:^29.7.0" - pure-rand: "npm:^6.0.0" - slash: "npm:^3.0.0" - stack-utils: "npm:^2.0.3" - checksum: 10c0/8d15344cf7a9f14e926f0deed64ed190c7a4fa1ed1acfcd81e4cc094d3cc5bf7902ebb7b874edc98ada4185688f90c91e1747e0dfd7ac12463b097968ae74b5e - languageName: node - linkType: hard - -"jest-cli@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-cli@npm:29.7.0" - dependencies: - "@jest/core": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - chalk: "npm:^4.0.0" - create-jest: "npm:^29.7.0" - exit: "npm:^0.1.2" - import-local: "npm:^3.0.2" - jest-config: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-validate: "npm:^29.7.0" - yargs: "npm:^17.3.1" - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - bin: - jest: bin/jest.js - checksum: 10c0/a658fd55050d4075d65c1066364595962ead7661711495cfa1dfeecf3d6d0a8ffec532f3dbd8afbb3e172dd5fd2fb2e813c5e10256e7cf2fea766314942fb43a - languageName: node - linkType: hard - -"jest-config@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-config@npm:29.7.0" - dependencies: - "@babel/core": "npm:^7.11.6" - "@jest/test-sequencer": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - babel-jest: "npm:^29.7.0" - chalk: "npm:^4.0.0" - ci-info: "npm:^3.2.0" - deepmerge: "npm:^4.2.2" - glob: "npm:^7.1.3" - graceful-fs: "npm:^4.2.9" - jest-circus: "npm:^29.7.0" - jest-environment-node: "npm:^29.7.0" - jest-get-type: "npm:^29.6.3" - jest-regex-util: "npm:^29.6.3" - jest-resolve: "npm:^29.7.0" - jest-runner: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-validate: "npm:^29.7.0" - micromatch: "npm:^4.0.4" - parse-json: "npm:^5.2.0" - pretty-format: "npm:^29.7.0" - slash: "npm:^3.0.0" - strip-json-comments: "npm:^3.1.1" - peerDependencies: - "@types/node": "*" - ts-node: ">=9.0.0" - peerDependenciesMeta: - "@types/node": - optional: true - ts-node: - optional: true - checksum: 10c0/bab23c2eda1fff06e0d104b00d6adfb1d1aabb7128441899c9bff2247bd26710b050a5364281ce8d52b46b499153bf7e3ee88b19831a8f3451f1477a0246a0f1 - languageName: node - linkType: hard - -"jest-diff@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-diff@npm:29.7.0" - dependencies: - chalk: "npm:^4.0.0" - diff-sequences: "npm:^29.6.3" - jest-get-type: "npm:^29.6.3" - pretty-format: "npm:^29.7.0" - checksum: 10c0/89a4a7f182590f56f526443dde69acefb1f2f0c9e59253c61d319569856c4931eae66b8a3790c443f529267a0ddba5ba80431c585deed81827032b2b2a1fc999 - languageName: node - linkType: hard - -"jest-docblock@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-docblock@npm:29.7.0" - dependencies: - detect-newline: "npm:^3.0.0" - checksum: 10c0/d932a8272345cf6b6142bb70a2bb63e0856cc0093f082821577ea5bdf4643916a98744dfc992189d2b1417c38a11fa42466f6111526bc1fb81366f56410f3be9 - languageName: node - linkType: hard - -"jest-each@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-each@npm:29.7.0" - dependencies: - "@jest/types": "npm:^29.6.3" - chalk: "npm:^4.0.0" - jest-get-type: "npm:^29.6.3" - jest-util: "npm:^29.7.0" - pretty-format: "npm:^29.7.0" - checksum: 10c0/f7f9a90ebee80cc688e825feceb2613627826ac41ea76a366fa58e669c3b2403d364c7c0a74d862d469b103c843154f8456d3b1c02b487509a12afa8b59edbb4 - languageName: node - linkType: hard - -"jest-environment-node@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-environment-node@npm:29.7.0" - dependencies: - "@jest/environment": "npm:^29.7.0" - "@jest/fake-timers": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - jest-mock: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - checksum: 10c0/61f04fec077f8b1b5c1a633e3612fc0c9aa79a0ab7b05600683428f1e01a4d35346c474bde6f439f9fcc1a4aa9a2861ff852d079a43ab64b02105d1004b2592b - languageName: node - linkType: hard - -"jest-get-type@npm:^29.6.3": - version: 29.6.3 - resolution: "jest-get-type@npm:29.6.3" - checksum: 10c0/552e7a97a983d3c2d4e412a44eb7de0430ff773dd99f7500962c268d6dfbfa431d7d08f919c9d960530e5f7f78eb47f267ad9b318265e5092b3ff9ede0db7c2b - languageName: node - linkType: hard - -"jest-haste-map@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-haste-map@npm:29.7.0" - dependencies: - "@jest/types": "npm:^29.6.3" - "@types/graceful-fs": "npm:^4.1.3" - "@types/node": "npm:*" - anymatch: "npm:^3.0.3" - fb-watchman: "npm:^2.0.0" - fsevents: "npm:^2.3.2" - graceful-fs: "npm:^4.2.9" - jest-regex-util: "npm:^29.6.3" - jest-util: "npm:^29.7.0" - jest-worker: "npm:^29.7.0" - micromatch: "npm:^4.0.4" - walker: "npm:^1.0.8" - dependenciesMeta: - fsevents: - optional: true - checksum: 10c0/2683a8f29793c75a4728787662972fedd9267704c8f7ef9d84f2beed9a977f1cf5e998c07b6f36ba5603f53cb010c911fe8cd0ac9886e073fe28ca66beefd30c - languageName: node - linkType: hard - -"jest-junit@npm:16.0.0": - version: 16.0.0 - resolution: "jest-junit@npm:16.0.0" - dependencies: - mkdirp: "npm:^1.0.4" - strip-ansi: "npm:^6.0.1" - uuid: "npm:^8.3.2" - xml: "npm:^1.0.1" - checksum: 10c0/d813d4d142341c2b51b634db7ad6ceb9849514cb58f96ec5e7e4cf4031a557133490452710c2d9dec9b1dd546334d9ca663e042d3070c3e8f102ce6217bd8e2e - languageName: node - linkType: hard - -"jest-leak-detector@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-leak-detector@npm:29.7.0" - dependencies: - jest-get-type: "npm:^29.6.3" - pretty-format: "npm:^29.7.0" - checksum: 10c0/71bb9f77fc489acb842a5c7be030f2b9acb18574dc9fb98b3100fc57d422b1abc55f08040884bd6e6dbf455047a62f7eaff12aa4058f7cbdc11558718ca6a395 - languageName: node - linkType: hard - -"jest-matcher-utils@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-matcher-utils@npm:29.7.0" - dependencies: - chalk: "npm:^4.0.0" - jest-diff: "npm:^29.7.0" - jest-get-type: "npm:^29.6.3" - pretty-format: "npm:^29.7.0" - checksum: 10c0/0d0e70b28fa5c7d4dce701dc1f46ae0922102aadc24ed45d594dd9b7ae0a8a6ef8b216718d1ab79e451291217e05d4d49a82666e1a3cc2b428b75cd9c933244e - languageName: node - linkType: hard - -"jest-message-util@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-message-util@npm:29.7.0" - dependencies: - "@babel/code-frame": "npm:^7.12.13" - "@jest/types": "npm:^29.6.3" - "@types/stack-utils": "npm:^2.0.0" - chalk: "npm:^4.0.0" - graceful-fs: "npm:^4.2.9" - micromatch: "npm:^4.0.4" - pretty-format: "npm:^29.7.0" - slash: "npm:^3.0.0" - stack-utils: "npm:^2.0.3" - checksum: 10c0/850ae35477f59f3e6f27efac5215f706296e2104af39232bb14e5403e067992afb5c015e87a9243ec4d9df38525ef1ca663af9f2f4766aa116f127247008bd22 - languageName: node - linkType: hard - -"jest-mock@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-mock@npm:29.7.0" - dependencies: - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - jest-util: "npm:^29.7.0" - checksum: 10c0/7b9f8349ee87695a309fe15c46a74ab04c853369e5c40952d68061d9dc3159a0f0ed73e215f81b07ee97a9faaf10aebe5877a9d6255068a0977eae6a9ff1d5ac - languageName: node - linkType: hard - -"jest-pnp-resolver@npm:^1.2.2": - version: 1.2.3 - resolution: "jest-pnp-resolver@npm:1.2.3" - peerDependencies: - jest-resolve: "*" - peerDependenciesMeta: - jest-resolve: - optional: true - checksum: 10c0/86eec0c78449a2de733a6d3e316d49461af6a858070e113c97f75fb742a48c2396ea94150cbca44159ffd4a959f743a47a8b37a792ef6fdad2cf0a5cba973fac - languageName: node - linkType: hard - -"jest-regex-util@npm:^29.6.3": - version: 29.6.3 - resolution: "jest-regex-util@npm:29.6.3" - checksum: 10c0/4e33fb16c4f42111159cafe26397118dcfc4cf08bc178a67149fb05f45546a91928b820894572679d62559839d0992e21080a1527faad65daaae8743a5705a3b - languageName: node - linkType: hard - -"jest-resolve-dependencies@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-resolve-dependencies@npm:29.7.0" - dependencies: - jest-regex-util: "npm:^29.6.3" - jest-snapshot: "npm:^29.7.0" - checksum: 10c0/b6e9ad8ae5b6049474118ea6441dfddd385b6d1fc471db0136f7c8fbcfe97137a9665e4f837a9f49f15a29a1deb95a14439b7aec812f3f99d08f228464930f0d - languageName: node - linkType: hard - -"jest-resolve@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-resolve@npm:29.7.0" - dependencies: - chalk: "npm:^4.0.0" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.7.0" - jest-pnp-resolver: "npm:^1.2.2" - jest-util: "npm:^29.7.0" - jest-validate: "npm:^29.7.0" - resolve: "npm:^1.20.0" - resolve.exports: "npm:^2.0.0" - slash: "npm:^3.0.0" - checksum: 10c0/59da5c9c5b50563e959a45e09e2eace783d7f9ac0b5dcc6375dea4c0db938d2ebda97124c8161310082760e8ebbeff9f6b177c15ca2f57fb424f637a5d2adb47 - languageName: node - linkType: hard - -"jest-runner@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-runner@npm:29.7.0" - dependencies: - "@jest/console": "npm:^29.7.0" - "@jest/environment": "npm:^29.7.0" - "@jest/test-result": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - emittery: "npm:^0.13.1" - graceful-fs: "npm:^4.2.9" - jest-docblock: "npm:^29.7.0" - jest-environment-node: "npm:^29.7.0" - jest-haste-map: "npm:^29.7.0" - jest-leak-detector: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-resolve: "npm:^29.7.0" - jest-runtime: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - jest-watcher: "npm:^29.7.0" - jest-worker: "npm:^29.7.0" - p-limit: "npm:^3.1.0" - source-map-support: "npm:0.5.13" - checksum: 10c0/2194b4531068d939f14c8d3274fe5938b77fa73126aedf9c09ec9dec57d13f22c72a3b5af01ac04f5c1cf2e28d0ac0b4a54212a61b05f10b5d6b47f2a1097bb4 - languageName: node - linkType: hard - -"jest-runtime@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-runtime@npm:29.7.0" - dependencies: - "@jest/environment": "npm:^29.7.0" - "@jest/fake-timers": "npm:^29.7.0" - "@jest/globals": "npm:^29.7.0" - "@jest/source-map": "npm:^29.6.3" - "@jest/test-result": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - cjs-module-lexer: "npm:^1.0.0" - collect-v8-coverage: "npm:^1.0.0" - glob: "npm:^7.1.3" - graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-mock: "npm:^29.7.0" - jest-regex-util: "npm:^29.6.3" - jest-resolve: "npm:^29.7.0" - jest-snapshot: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - slash: "npm:^3.0.0" - strip-bom: "npm:^4.0.0" - checksum: 10c0/7cd89a1deda0bda7d0941835434e44f9d6b7bd50b5c5d9b0fc9a6c990b2d4d2cab59685ab3cb2850ed4cc37059f6de903af5a50565d7f7f1192a77d3fd6dd2a6 - languageName: node - linkType: hard - -"jest-snapshot@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-snapshot@npm:29.7.0" - dependencies: - "@babel/core": "npm:^7.11.6" - "@babel/generator": "npm:^7.7.2" - "@babel/plugin-syntax-jsx": "npm:^7.7.2" - "@babel/plugin-syntax-typescript": "npm:^7.7.2" - "@babel/types": "npm:^7.3.3" - "@jest/expect-utils": "npm:^29.7.0" - "@jest/transform": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - babel-preset-current-node-syntax: "npm:^1.0.0" - chalk: "npm:^4.0.0" - expect: "npm:^29.7.0" - graceful-fs: "npm:^4.2.9" - jest-diff: "npm:^29.7.0" - jest-get-type: "npm:^29.6.3" - jest-matcher-utils: "npm:^29.7.0" - jest-message-util: "npm:^29.7.0" - jest-util: "npm:^29.7.0" - natural-compare: "npm:^1.4.0" - pretty-format: "npm:^29.7.0" - semver: "npm:^7.5.3" - checksum: 10c0/6e9003c94ec58172b4a62864a91c0146513207bedf4e0a06e1e2ac70a4484088a2683e3a0538d8ea913bcfd53dc54a9b98a98cdfa562e7fe1d1339aeae1da570 - languageName: node - linkType: hard - -"jest-util@npm:^29.0.0, jest-util@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-util@npm:29.7.0" - dependencies: - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - ci-info: "npm:^3.2.0" - graceful-fs: "npm:^4.2.9" - picomatch: "npm:^2.2.3" - checksum: 10c0/bc55a8f49fdbb8f51baf31d2a4f312fb66c9db1483b82f602c9c990e659cdd7ec529c8e916d5a89452ecbcfae4949b21b40a7a59d4ffc0cd813a973ab08c8150 - languageName: node - linkType: hard - -"jest-validate@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-validate@npm:29.7.0" - dependencies: - "@jest/types": "npm:^29.6.3" - camelcase: "npm:^6.2.0" - chalk: "npm:^4.0.0" - jest-get-type: "npm:^29.6.3" - leven: "npm:^3.1.0" - pretty-format: "npm:^29.7.0" - checksum: 10c0/a20b930480c1ed68778c739f4739dce39423131bc070cd2505ddede762a5570a256212e9c2401b7ae9ba4d7b7c0803f03c5b8f1561c62348213aba18d9dbece2 - languageName: node - linkType: hard - -"jest-watcher@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-watcher@npm:29.7.0" - dependencies: - "@jest/test-result": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - "@types/node": "npm:*" - ansi-escapes: "npm:^4.2.1" - chalk: "npm:^4.0.0" - emittery: "npm:^0.13.1" - jest-util: "npm:^29.7.0" - string-length: "npm:^4.0.1" - checksum: 10c0/ec6c75030562fc8f8c727cb8f3b94e75d831fc718785abfc196e1f2a2ebc9a2e38744a15147170039628a853d77a3b695561ce850375ede3a4ee6037a2574567 - languageName: node - linkType: hard - -"jest-worker@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-worker@npm:29.7.0" - dependencies: - "@types/node": "npm:*" - jest-util: "npm:^29.7.0" - merge-stream: "npm:^2.0.0" - supports-color: "npm:^8.0.0" - checksum: 10c0/5570a3a005b16f46c131968b8a5b56d291f9bbb85ff4217e31c80bd8a02e7de799e59a54b95ca28d5c302f248b54cbffde2d177c2f0f52ffcee7504c6eabf660 - languageName: node - linkType: hard - -"jest@npm:^29.7.0": - version: 29.7.0 - resolution: "jest@npm:29.7.0" - dependencies: - "@jest/core": "npm:^29.7.0" - "@jest/types": "npm:^29.6.3" - import-local: "npm:^3.0.2" - jest-cli: "npm:^29.7.0" - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - bin: - jest: bin/jest.js - checksum: 10c0/f40eb8171cf147c617cc6ada49d062fbb03b4da666cb8d39cdbfb739a7d75eea4c3ca150fb072d0d273dce0c753db4d0467d54906ad0293f59c54f9db4a09d8b - languageName: node - linkType: hard - -"jiti@npm:1.21.0, jiti@npm:^1.19.1": - version: 1.21.0 - resolution: "jiti@npm:1.21.0" - bin: - jiti: bin/jiti.js - checksum: 10c0/7f361219fe6c7a5e440d5f1dba4ab763a5538d2df8708cdc22561cf25ea3e44b837687931fca7cdd8cdd9f567300e90be989dd1321650045012d8f9ed6aab07f - languageName: node - linkType: hard - -"js-sha3@npm:0.8.0": - version: 0.8.0 - resolution: "js-sha3@npm:0.8.0" - checksum: 10c0/43a21dc7967c871bd2c46cb1c2ae97441a97169f324e509f382d43330d8f75cf2c96dba7c806ab08a425765a9c847efdd4bffbac2d99c3a4f3de6c0218f40533 - languageName: node - linkType: hard - -"js-tokens@npm:^4.0.0": - version: 4.0.0 - resolution: "js-tokens@npm:4.0.0" - checksum: 10c0/e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed - 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" - dependencies: - argparse: "npm:^1.0.7" - esprima: "npm:^4.0.0" - bin: - js-yaml: bin/js-yaml.js - checksum: 10c0/6746baaaeac312c4db8e75fa22331d9a04cccb7792d126ed8ce6a0bbcfef0cedaddd0c5098fade53db067c09fe00aa1c957674b4765610a8b06a5a189e46433b - languageName: node - linkType: hard - -"jsbn@npm:1.1.0": - version: 1.1.0 - resolution: "jsbn@npm:1.1.0" - checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96 - languageName: node - linkType: hard - -"jsesc@npm:^2.5.1": - version: 2.5.2 - resolution: "jsesc@npm:2.5.2" - bin: - jsesc: bin/jsesc - checksum: 10c0/dbf59312e0ebf2b4405ef413ec2b25abb5f8f4d9bc5fb8d9f90381622ebca5f2af6a6aa9a8578f65903f9e33990a6dc798edd0ce5586894bf0e9e31803a1de88 - languageName: node - linkType: hard - -"jsesc@npm:~0.5.0": - version: 0.5.0 - resolution: "jsesc@npm:0.5.0" - bin: - jsesc: bin/jsesc - checksum: 10c0/f93792440ae1d80f091b65f8ceddf8e55c4bb7f1a09dee5dcbdb0db5612c55c0f6045625aa6b7e8edb2e0a4feabd80ee48616dbe2d37055573a84db3d24f96d9 - languageName: node - linkType: hard - -"json-buffer@npm:3.0.1": - version: 3.0.1 - resolution: "json-buffer@npm:3.0.1" - checksum: 10c0/0d1c91569d9588e7eef2b49b59851f297f3ab93c7b35c7c221e288099322be6b562767d11e4821da500f3219542b9afd2e54c5dc573107c1126ed1080f8e96d7 - languageName: node - linkType: hard - -"json-parse-better-errors@npm:^1.0.1": - version: 1.0.2 - resolution: "json-parse-better-errors@npm:1.0.2" - checksum: 10c0/2f1287a7c833e397c9ddd361a78638e828fc523038bb3441fd4fc144cfd2c6cd4963ffb9e207e648cf7b692600f1e1e524e965c32df5152120910e4903a47dcb - languageName: node - linkType: hard - -"json-parse-even-better-errors@npm:^2.3.0": - version: 2.3.1 - resolution: "json-parse-even-better-errors@npm:2.3.1" - checksum: 10c0/140932564c8f0b88455432e0f33c4cb4086b8868e37524e07e723f4eaedb9425bdc2bafd71bd1d9765bd15fd1e2d126972bc83990f55c467168c228c24d665f3 - languageName: node - linkType: hard - -"json-schema-traverse@npm:^0.4.1": - version: 0.4.1 - resolution: "json-schema-traverse@npm:0.4.1" - checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce - languageName: node - linkType: hard - -"json-schema-traverse@npm:^1.0.0": - version: 1.0.0 - resolution: "json-schema-traverse@npm:1.0.0" - checksum: 10c0/71e30015d7f3d6dc1c316d6298047c8ef98a06d31ad064919976583eb61e1018a60a0067338f0f79cabc00d84af3fcc489bd48ce8a46ea165d9541ba17fb30c6 - languageName: node - linkType: hard - -"json-stable-stringify-without-jsonify@npm:^1.0.1": - version: 1.0.1 - resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" - checksum: 10c0/cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5 - languageName: node - linkType: hard - -"json5@npm:^2.2.3": - version: 2.2.3 - resolution: "json5@npm:2.2.3" - bin: - json5: lib/cli.js - checksum: 10c0/5a04eed94810fa55c5ea138b2f7a5c12b97c3750bc63d11e511dcecbfef758003861522a070c2272764ee0f4e3e323862f386945aeb5b85b87ee43f084ba586c - languageName: node - linkType: hard - -"jsonparse@npm:^1.2.0": - version: 1.3.1 - resolution: "jsonparse@npm:1.3.1" - checksum: 10c0/89bc68080cd0a0e276d4b5ab1b79cacd68f562467008d176dc23e16e97d4efec9e21741d92ba5087a8433526a45a7e6a9d5ef25408696c402ca1cfbc01a90bf0 - languageName: node - linkType: hard - -"keyv@npm:^4.5.3, keyv@npm:^4.5.4": - version: 4.5.4 - resolution: "keyv@npm:4.5.4" - dependencies: - json-buffer: "npm:3.0.1" - checksum: 10c0/aa52f3c5e18e16bb6324876bb8b59dd02acf782a4b789c7b2ae21107fab95fab3890ed448d4f8dba80ce05391eeac4bfabb4f02a20221342982f806fa2cf271e - languageName: node - linkType: hard - -"kind-of@npm:^6.0.3": - version: 6.0.3 - resolution: "kind-of@npm:6.0.3" - checksum: 10c0/61cdff9623dabf3568b6445e93e31376bee1cdb93f8ba7033d86022c2a9b1791a1d9510e026e6465ebd701a6dd2f7b0808483ad8838341ac52f003f512e0b4c4 - languageName: node - linkType: hard - -"kleur@npm:^3.0.3": - version: 3.0.3 - resolution: "kleur@npm:3.0.3" - checksum: 10c0/cd3a0b8878e7d6d3799e54340efe3591ca787d9f95f109f28129bdd2915e37807bf8918bb295ab86afb8c82196beec5a1adcaf29042ce3f2bd932b038fe3aa4b - languageName: node - linkType: hard - -"knip@npm:^5.0.1": - version: 5.16.0 - resolution: "knip@npm:5.16.0" - dependencies: - "@ericcornelissen/bash-parser": "npm:0.5.2" - "@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" - 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" - picomatch: "npm:^4.0.1" - 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" - zod: "npm:^3.22.4" - zod-validation-error: "npm:^3.0.3" - peerDependencies: - "@types/node": ">=18" - typescript: ">=5.0.4" - bin: - knip: bin/knip.js - knip-bun: bin/knip-bun.js - checksum: 10c0/7c27efcc06bbbfd58d8e06faba6e952e81ebd668840e3615392ce2bf2d3be25aa26328772bfbe3a5679805e9779ced2632ac166d2fb9c1ff2d8fd50f0afee49e - languageName: node - linkType: hard - -"leven@npm:^3.1.0": - version: 3.1.0 - resolution: "leven@npm:3.1.0" - checksum: 10c0/cd778ba3fbab0f4d0500b7e87d1f6e1f041507c56fdcd47e8256a3012c98aaee371d4c15e0a76e0386107af2d42e2b7466160a2d80688aaa03e66e49949f42df - languageName: node - linkType: hard - -"levn@npm:^0.4.1": - version: 0.4.1 - resolution: "levn@npm:0.4.1" - dependencies: - prelude-ls: "npm:^1.2.1" - type-check: "npm:~0.4.0" - checksum: 10c0/effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e - languageName: node - linkType: hard - -"lilconfig@npm:3.0.0": - version: 3.0.0 - resolution: "lilconfig@npm:3.0.0" - checksum: 10c0/7f5ee7a658dc016cacf146815e8d88b06f06f4402823b8b0934e305a57a197f55ccc9c5cd4fb5ea1b2b821c8ccaf2d54abd59602a4931af06eabda332388d3e6 - languageName: node - linkType: hard - -"lines-and-columns@npm:^1.1.6": - version: 1.2.4 - resolution: "lines-and-columns@npm:1.2.4" - checksum: 10c0/3da6ee62d4cd9f03f5dc90b4df2540fb85b352081bee77fe4bbcd12c9000ead7f35e0a38b8d09a9bb99b13223446dd8689ff3c4959807620726d788701a83d2d - languageName: node - 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" - bin: - lint-staged: bin/lint-staged.js - checksum: 10c0/a1ba6c7ee53e30a0f6ea9a351d95d3d0d2be916a41b561e22907e9ea513eb18cb3dbe65bff3ec13fad15777999efe56b2e2a95427e31d12a9b7e7948c3630ee2 - languageName: node - linkType: hard - -"listr2@npm:8.0.1": - version: 8.0.1 - resolution: "listr2@npm:8.0.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" - wrap-ansi: "npm:^9.0.0" - checksum: 10c0/b565d6ceb3a4c2dbe0c1735c0fd907afd0d6f89de21aced8e05187b2d88ca2f8f9ebc5d743885396a00f05f13146f6be744d098a56ce0402cf1cd131485a7ff1 - languageName: node - linkType: hard - -"load-json-file@npm:^4.0.0": - version: 4.0.0 - resolution: "load-json-file@npm:4.0.0" - dependencies: - graceful-fs: "npm:^4.1.2" - parse-json: "npm:^4.0.0" - pify: "npm:^3.0.0" - strip-bom: "npm:^3.0.0" - checksum: 10c0/6b48f6a0256bdfcc8970be2c57f68f10acb2ee7e63709b386b2febb6ad3c86198f840889cdbe71d28f741cbaa2f23a7771206b138cd1bdd159564511ca37c1d5 - languageName: node - linkType: hard - -"locate-path@npm:^5.0.0": - version: 5.0.0 - resolution: "locate-path@npm:5.0.0" - dependencies: - p-locate: "npm:^4.1.0" - checksum: 10c0/33a1c5247e87e022f9713e6213a744557a3e9ec32c5d0b5efb10aa3a38177615bf90221a5592674857039c1a0fd2063b82f285702d37b792d973e9e72ace6c59 - languageName: node - linkType: hard - -"locate-path@npm:^6.0.0": - version: 6.0.0 - resolution: "locate-path@npm:6.0.0" - dependencies: - p-locate: "npm:^5.0.0" - checksum: 10c0/d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3 - languageName: node - linkType: hard - -"lodash.camelcase@npm:^4.3.0": - version: 4.3.0 - resolution: "lodash.camelcase@npm:4.3.0" - checksum: 10c0/fcba15d21a458076dd309fce6b1b4bf611d84a0ec252cb92447c948c533ac250b95d2e00955801ebc367e5af5ed288b996d75d37d2035260a937008e14eaf432 - languageName: node - linkType: hard - -"lodash.curry@npm:^4.1.1": - version: 4.1.1 - resolution: "lodash.curry@npm:4.1.1" - checksum: 10c0/f0431947dc9236df879fc13eb40c31a2839c958bd0eaa39170a5758c25a7d85d461716a851ab45a175371950b283480615cdd4b07fb0dd1afff7a2914a90696f - languageName: node - linkType: hard - -"lodash.debounce@npm:^4.0.8": - version: 4.0.8 - resolution: "lodash.debounce@npm:4.0.8" - checksum: 10c0/762998a63e095412b6099b8290903e0a8ddcb353ac6e2e0f2d7e7d03abd4275fe3c689d88960eb90b0dde4f177554d51a690f22a343932ecbc50a5d111849987 - languageName: node - linkType: hard - -"lodash.isfunction@npm:^3.0.9": - version: 3.0.9 - resolution: "lodash.isfunction@npm:3.0.9" - checksum: 10c0/e88620922f5f104819496884779ca85bfc542efb2946df661ab3e2cd38da5c8375434c6adbedfc76dd3c2b04075d2ba8ec215cfdedf08ddd2e3c3467e8a26ccd - languageName: node - linkType: hard - -"lodash.isplainobject@npm:^4.0.6": - version: 4.0.6 - resolution: "lodash.isplainobject@npm:4.0.6" - checksum: 10c0/afd70b5c450d1e09f32a737bed06ff85b873ecd3d3d3400458725283e3f2e0bb6bf48e67dbe7a309eb371a822b16a26cca4a63c8c52db3fc7dc9d5f9dd324cbb - languageName: node - linkType: hard - -"lodash.kebabcase@npm:^4.1.1": - version: 4.1.1 - resolution: "lodash.kebabcase@npm:4.1.1" - checksum: 10c0/da5d8f41dbb5bc723d4bf9203d5096ca8da804d6aec3d2b56457156ba6c8d999ff448d347ebd97490da853cb36696ea4da09a431499f1ee8deb17b094ecf4e33 - languageName: node - linkType: hard - -"lodash.memoize@npm:4.x": - version: 4.1.2 - resolution: "lodash.memoize@npm:4.1.2" - checksum: 10c0/c8713e51eccc650422716a14cece1809cfe34bc5ab5e242b7f8b4e2241c2483697b971a604252807689b9dd69bfe3a98852e19a5b89d506b000b4187a1285df8 - languageName: node - linkType: hard - -"lodash.merge@npm:^4.6.2": - version: 4.6.2 - resolution: "lodash.merge@npm:4.6.2" - checksum: 10c0/402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506 - languageName: node - linkType: hard - -"lodash.mergewith@npm:^4.6.2": - version: 4.6.2 - resolution: "lodash.mergewith@npm:4.6.2" - checksum: 10c0/4adbed65ff96fd65b0b3861f6899f98304f90fd71e7f1eb36c1270e05d500ee7f5ec44c02ef979b5ddbf75c0a0b9b99c35f0ad58f4011934c4d4e99e5200b3b5 - languageName: node - linkType: hard - -"lodash.snakecase@npm:^4.1.1": - version: 4.1.1 - resolution: "lodash.snakecase@npm:4.1.1" - checksum: 10c0/f0b3f2497eb20eea1a1cfc22d645ecaeb78ac14593eb0a40057977606d2f35f7aaff0913a06553c783b535aafc55b718f523f9eb78f8d5293f492af41002eaf9 - languageName: node - linkType: hard - -"lodash.startcase@npm:^4.4.0": - version: 4.4.0 - resolution: "lodash.startcase@npm:4.4.0" - checksum: 10c0/bd82aa87a45de8080e1c5ee61128c7aee77bf7f1d86f4ff94f4a6d7438fc9e15e5f03374b947be577a93804c8ad6241f0251beaf1452bf716064eeb657b3a9f0 - languageName: node - linkType: hard - -"lodash.uniq@npm:^4.5.0": - version: 4.5.0 - resolution: "lodash.uniq@npm:4.5.0" - checksum: 10c0/262d400bb0952f112162a320cc4a75dea4f66078b9e7e3075ffbc9c6aa30b3e9df3cf20e7da7d566105e1ccf7804e4fbd7d804eee0b53de05d83f16ffbf41c5e - languageName: node - linkType: hard - -"lodash.upperfirst@npm:^4.3.1": - version: 4.3.1 - resolution: "lodash.upperfirst@npm:4.3.1" - checksum: 10c0/435625da4b3ee74e7a1367a780d9107ab0b13ef4359fc074b2a1a40458eb8d91b655af62f6795b7138d493303a98c0285340160341561d6896e4947e077fa975 - languageName: node - linkType: hard - -"lodash@npm:^4.17.15": - version: 4.17.21 - resolution: "lodash@npm:4.17.21" - checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c - languageName: node - linkType: hard - -"log-update@npm:^6.0.0": - version: 6.0.0 - resolution: "log-update@npm:6.0.0" - dependencies: - ansi-escapes: "npm:^6.2.0" - cli-cursor: "npm:^4.0.0" - slice-ansi: "npm:^7.0.0" - strip-ansi: "npm:^7.1.0" - wrap-ansi: "npm:^9.0.0" - checksum: 10c0/e0b3c3401ef49ce3eb17e2f83d644765e4f7988498fc1344eaa4f31ab30e510dcc469a7fb64dc01bd1c8d9237d917598fa677a9818705fb3774c10f6e9d4b27c - languageName: node - linkType: hard - -"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": - version: 10.2.2 - resolution: "lru-cache@npm:10.2.2" - checksum: 10c0/402d31094335851220d0b00985084288136136992979d0e015f0f1697e15d1c86052d7d53ae86b614e5b058425606efffc6969a31a091085d7a2b80a8a1e26d6 - languageName: node - linkType: hard - -"lru-cache@npm:^5.1.1": - version: 5.1.1 - resolution: "lru-cache@npm:5.1.1" - dependencies: - yallist: "npm:^3.0.2" - checksum: 10c0/89b2ef2ef45f543011e38737b8a8622a2f8998cddf0e5437174ef8f1f70a8b9d14a918ab3e232cb3ba343b7abddffa667f0b59075b2b80e6b4d63c3de6127482 - languageName: node - linkType: hard - -"lru-cache@npm:^6.0.0": - version: 6.0.0 - resolution: "lru-cache@npm:6.0.0" - dependencies: - yallist: "npm:^4.0.0" - checksum: 10c0/cb53e582785c48187d7a188d3379c181b5ca2a9c78d2bce3e7dee36f32761d1c42983da3fe12b55cb74e1779fa94cdc2e5367c028a9b35317184ede0c07a30a9 - languageName: node - linkType: hard - -"magic-string@npm:^0.16.0": - version: 0.16.0 - resolution: "magic-string@npm:0.16.0" - dependencies: - vlq: "npm:^0.2.1" - checksum: 10c0/127e147c229c8c8ea25844fe1015c529698d18622b1609e89ef97fd250378f8ab40f4395227b5c6b99444459d85f4683c175bd48d2cee69fdf8a83b6a735de5a - languageName: node - linkType: hard - -"make-dir@npm:^4.0.0": - version: 4.0.0 - resolution: "make-dir@npm:4.0.0" - dependencies: - semver: "npm:^7.5.3" - checksum: 10c0/69b98a6c0b8e5c4fe9acb61608a9fbcfca1756d910f51e5dbe7a9e5cfb74fca9b8a0c8a0ffdf1294a740826c1ab4871d5bf3f62f72a3049e5eac6541ddffed68 - languageName: node - linkType: hard - -"make-error@npm:1.x, make-error@npm:^1.1.1": - version: 1.3.6 - resolution: "make-error@npm:1.3.6" - checksum: 10c0/171e458d86854c6b3fc46610cfacf0b45149ba043782558c6875d9f42f222124384ad0b468c92e996d815a8a2003817a710c0a160e49c1c394626f76fa45396f - languageName: node - linkType: hard - -"make-fetch-happen@npm:^13.0.0": - version: 13.0.1 - resolution: "make-fetch-happen@npm:13.0.1" - dependencies: - "@npmcli/agent": "npm:^2.0.0" - cacache: "npm:^18.0.0" - http-cache-semantics: "npm:^4.1.1" - is-lambda: "npm:^1.0.1" - minipass: "npm:^7.0.2" - minipass-fetch: "npm:^3.0.0" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - negotiator: "npm:^0.6.3" - proc-log: "npm:^4.2.0" - promise-retry: "npm:^2.0.1" - ssri: "npm:^10.0.0" - checksum: 10c0/df5f4dbb6d98153b751bccf4dc4cc500de85a96a9331db9805596c46aa9f99d9555983954e6c1266d9f981ae37a9e4647f42b9a4bb5466f867f4012e582c9e7e - languageName: node - linkType: hard - -"makeerror@npm:1.0.12": - version: 1.0.12 - resolution: "makeerror@npm:1.0.12" - dependencies: - tmpl: "npm:1.0.5" - checksum: 10c0/b0e6e599780ce6bab49cc413eba822f7d1f0dfebd1c103eaa3785c59e43e22c59018323cf9e1708f0ef5329e94a745d163fcbb6bff8e4c6742f9be9e86f3500c - languageName: node - linkType: hard - -"map-obj@npm:^1.0.0": - version: 1.0.1 - resolution: "map-obj@npm:1.0.1" - checksum: 10c0/ccca88395e7d38671ed9f5652ecf471ecd546924be2fb900836b9da35e068a96687d96a5f93dcdfa94d9a27d649d2f10a84595590f89a347fb4dda47629dcc52 - languageName: node - linkType: hard - -"map-obj@npm:^2.0.0": - version: 2.0.0 - resolution: "map-obj@npm:2.0.0" - checksum: 10c0/e8e0f786fb944614475dab3d5d727a24c4e6f000e35e6b35ebd4c62fc3e336a773db1ae317bc658cc9563ce17225c658049206e6fe650ccd1232329c58b4436d - languageName: node - linkType: hard - -"map-obj@npm:^4.0.0": - version: 4.3.0 - resolution: "map-obj@npm:4.3.0" - checksum: 10c0/1c19e1c88513c8abdab25c316367154c6a0a6a0f77e3e8c391bb7c0e093aefed293f539d026dc013d86219e5e4c25f23b0003ea588be2101ccd757bacc12d43b - languageName: node - linkType: hard - -"memorystream@npm:^0.3.1": - version: 0.3.1 - resolution: "memorystream@npm:0.3.1" - checksum: 10c0/4bd164657711d9747ff5edb0508b2944414da3464b7fe21ac5c67cf35bba975c4b446a0124bd0f9a8be54cfc18faf92e92bd77563a20328b1ccf2ff04e9f39b9 - languageName: node - linkType: hard - -"meow@npm:^12.0.1": - version: 12.1.1 - resolution: "meow@npm:12.1.1" - checksum: 10c0/a125ca99a32e2306e2f4cbe651a0d27f6eb67918d43a075f6e80b35e9bf372ebf0fc3a9fbc201cbbc9516444b6265fb3c9f80c5b7ebd32f548aa93eb7c28e088 - languageName: node - linkType: hard - -"meow@npm:^8.0.0": - version: 8.1.2 - resolution: "meow@npm:8.1.2" - dependencies: - "@types/minimist": "npm:^1.2.0" - camelcase-keys: "npm:^6.2.2" - decamelize-keys: "npm:^1.1.0" - hard-rejection: "npm:^2.1.0" - minimist-options: "npm:4.1.0" - normalize-package-data: "npm:^3.0.0" - read-pkg-up: "npm:^7.0.1" - redent: "npm:^3.0.0" - trim-newlines: "npm:^3.0.0" - type-fest: "npm:^0.18.0" - yargs-parser: "npm:^20.2.3" - checksum: 10c0/9a8d90e616f783650728a90f4ea1e5f763c1c5260369e6596b52430f877f4af8ecbaa8c9d952c93bbefd6d5bda4caed6a96a20ba7d27b511d2971909b01922a2 - languageName: node - linkType: hard - -"merge-stream@npm:^2.0.0": - version: 2.0.0 - resolution: "merge-stream@npm:2.0.0" - checksum: 10c0/867fdbb30a6d58b011449b8885601ec1690c3e41c759ecd5a9d609094f7aed0096c37823ff4a7190ef0b8f22cc86beb7049196ff68c016e3b3c671d0dac91ce5 - languageName: node - linkType: hard - -"merge2@npm:^1.3.0, merge2@npm:^1.4.1": - version: 1.4.1 - resolution: "merge2@npm:1.4.1" - checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb - 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" - dependencies: - braces: "npm:^3.0.3" - picomatch: "npm:^4.0.2" - checksum: 10c0/38c62036b45f6d0062e96845c5652464bcfdb1ec21c8eec227c57048171529a5407321cdc7266b6c950c0f357d38dae33dc33f8de96f4b44b87670ed33c0c713 - languageName: node - linkType: hard - -"mime-db@npm:1.52.0": - version: 1.52.0 - resolution: "mime-db@npm:1.52.0" - checksum: 10c0/0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa - languageName: node - linkType: hard - -"mime-types@npm:^2.1.12": - version: 2.1.35 - resolution: "mime-types@npm:2.1.35" - dependencies: - mime-db: "npm:1.52.0" - checksum: 10c0/82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2 - languageName: node - linkType: hard - -"mimic-fn@npm:^2.1.0": - version: 2.1.0 - resolution: "mimic-fn@npm:2.1.0" - checksum: 10c0/b26f5479d7ec6cc2bce275a08f146cf78f5e7b661b18114e2506dd91ec7ec47e7a25bf4360e5438094db0560bcc868079fb3b1fb3892b833c1ecbf63f80c95a4 - languageName: node - linkType: hard - -"mimic-fn@npm:^4.0.0": - version: 4.0.0 - resolution: "mimic-fn@npm:4.0.0" - checksum: 10c0/de9cc32be9996fd941e512248338e43407f63f6d497abe8441fa33447d922e927de54d4cc3c1a3c6d652857acd770389d5a3823f311a744132760ce2be15ccbf - languageName: node - linkType: hard - -"min-indent@npm:^1.0.0": - version: 1.0.1 - resolution: "min-indent@npm:1.0.1" - checksum: 10c0/7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c - languageName: node - linkType: hard - -"minimalistic-assert@npm:^1.0.0, minimalistic-assert@npm:^1.0.1": - version: 1.0.1 - resolution: "minimalistic-assert@npm:1.0.1" - checksum: 10c0/96730e5601cd31457f81a296f521eb56036e6f69133c0b18c13fe941109d53ad23a4204d946a0d638d7f3099482a0cec8c9bb6d642604612ce43ee536be3dddd - languageName: node - linkType: hard - -"minimalistic-crypto-utils@npm:^1.0.1": - version: 1.0.1 - resolution: "minimalistic-crypto-utils@npm:1.0.1" - checksum: 10c0/790ecec8c5c73973a4fbf2c663d911033e8494d5fb0960a4500634766ab05d6107d20af896ca2132e7031741f19888154d44b2408ada0852446705441383e9f8 - languageName: node - linkType: hard - -"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": - version: 3.1.2 - resolution: "minimatch@npm:3.1.2" - dependencies: - brace-expansion: "npm:^1.1.7" - checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 - languageName: node - linkType: hard - -"minimatch@npm:^9.0.1, minimatch@npm:^9.0.4": - version: 9.0.4 - resolution: "minimatch@npm:9.0.4" - dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/2c16f21f50e64922864e560ff97c587d15fd491f65d92a677a344e970fe62aafdbeafe648965fa96d33c061b4d0eabfe0213466203dd793367e7f28658cf6414 - languageName: node - linkType: hard - -"minimist-options@npm:4.1.0": - version: 4.1.0 - resolution: "minimist-options@npm:4.1.0" - dependencies: - arrify: "npm:^1.0.1" - is-plain-obj: "npm:^1.1.0" - kind-of: "npm:^6.0.3" - checksum: 10c0/7871f9cdd15d1e7374e5b013e2ceda3d327a06a8c7b38ae16d9ef941e07d985e952c589e57213f7aa90a8744c60aed9524c0d85e501f5478382d9181f2763f54 - languageName: node - linkType: hard - -"minimist@npm:1.2.8, minimist@npm:^1.2.6": - version: 1.2.8 - resolution: "minimist@npm:1.2.8" - checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 - languageName: node - linkType: hard - -"minipass-collect@npm:^2.0.1": - version: 2.0.1 - resolution: "minipass-collect@npm:2.0.1" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e - languageName: node - linkType: hard - -"minipass-fetch@npm:^3.0.0": - version: 3.0.5 - resolution: "minipass-fetch@npm:3.0.5" - dependencies: - encoding: "npm:^0.1.13" - minipass: "npm:^7.0.3" - minipass-sized: "npm:^1.0.3" - minizlib: "npm:^2.1.2" - dependenciesMeta: - encoding: - optional: true - checksum: 10c0/9d702d57f556274286fdd97e406fc38a2f5c8d15e158b498d7393b1105974b21249289ec571fa2b51e038a4872bfc82710111cf75fae98c662f3d6f95e72152b - languageName: node - linkType: hard - -"minipass-flush@npm:^1.0.5": - version: 1.0.5 - resolution: "minipass-flush@npm:1.0.5" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd - languageName: node - linkType: hard - -"minipass-pipeline@npm:^1.2.4": - version: 1.2.4 - resolution: "minipass-pipeline@npm:1.2.4" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 - languageName: node - linkType: hard - -"minipass-sized@npm:^1.0.3": - version: 1.0.3 - resolution: "minipass-sized@npm:1.0.3" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb - languageName: node - linkType: hard - -"minipass@npm:^3.0.0": - version: 3.3.6 - resolution: "minipass@npm:3.3.6" - dependencies: - yallist: "npm:^4.0.0" - checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c - languageName: node - linkType: hard - -"minipass@npm:^5.0.0": - version: 5.0.0 - resolution: "minipass@npm:5.0.0" - checksum: 10c0/a91d8043f691796a8ac88df039da19933ef0f633e3d7f0d35dcd5373af49131cf2399bfc355f41515dc495e3990369c3858cd319e5c2722b4753c90bf3152462 - 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 - languageName: node - linkType: hard - -"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": - version: 2.1.2 - resolution: "minizlib@npm:2.1.2" - dependencies: - minipass: "npm:^3.0.0" - yallist: "npm:^4.0.0" - checksum: 10c0/64fae024e1a7d0346a1102bb670085b17b7f95bf6cfdf5b128772ec8faf9ea211464ea4add406a3a6384a7d87a0cd1a96263692134323477b4fb43659a6cab78 - languageName: node - linkType: hard - -"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": - version: 1.0.4 - resolution: "mkdirp@npm:1.0.4" - bin: - mkdirp: bin/cmd.js - checksum: 10c0/46ea0f3ffa8bc6a5bc0c7081ffc3907777f0ed6516888d40a518c5111f8366d97d2678911ad1a6882bf592fa9de6c784fea32e1687bb94e1f4944170af48a5cf - languageName: node - linkType: hard - -"ms@npm:2.1.2": - version: 2.1.2 - resolution: "ms@npm:2.1.2" - checksum: 10c0/a437714e2f90dbf881b5191d35a6db792efbca5badf112f87b9e1c712aace4b4b9b742dd6537f3edf90fd6f684de897cec230abde57e87883766712ddda297cc - languageName: node - linkType: hard - -"natural-compare@npm:^1.4.0": - version: 1.4.0 - resolution: "natural-compare@npm:1.4.0" - checksum: 10c0/f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447 - languageName: node - linkType: hard - -"negotiator@npm:^0.6.3": - version: 0.6.3 - resolution: "negotiator@npm:0.6.3" - checksum: 10c0/3ec9fd413e7bf071c937ae60d572bc67155262068ed522cf4b3be5edbe6ddf67d095ec03a3a14ebf8fc8e95f8e1d61be4869db0dbb0de696f6b837358bd43fc2 - languageName: node - linkType: hard - -"nice-try@npm:^1.0.4": - version: 1.0.5 - resolution: "nice-try@npm:1.0.5" - checksum: 10c0/95568c1b73e1d0d4069a3e3061a2102d854513d37bcfda73300015b7ba4868d3b27c198d1dbbd8ebdef4112fc2ed9e895d4a0f2e1cce0bd334f2a1346dc9205f - languageName: node - linkType: hard - -"node-domexception@npm:^1.0.0": - version: 1.0.0 - resolution: "node-domexception@npm:1.0.0" - checksum: 10c0/5e5d63cda29856402df9472335af4bb13875e1927ad3be861dc5ebde38917aecbf9ae337923777af52a48c426b70148815e890a5d72760f1b4d758cc671b1a2b - languageName: node - linkType: hard - -"node-fetch@npm:^3.3.2": - version: 3.3.2 - resolution: "node-fetch@npm:3.3.2" - dependencies: - data-uri-to-buffer: "npm:^4.0.0" - fetch-blob: "npm:^3.1.4" - formdata-polyfill: "npm:^4.0.10" - checksum: 10c0/f3d5e56190562221398c9f5750198b34cf6113aa304e34ee97c94fd300ec578b25b2c2906edba922050fce983338fde0d5d34fcb0fc3336ade5bd0e429ad7538 - languageName: node - linkType: hard - -"node-gyp@npm:latest": - version: 10.1.0 - resolution: "node-gyp@npm:10.1.0" - dependencies: - env-paths: "npm:^2.2.0" - exponential-backoff: "npm:^3.1.1" - glob: "npm:^10.3.10" - graceful-fs: "npm:^4.2.6" - make-fetch-happen: "npm:^13.0.0" - nopt: "npm:^7.0.0" - proc-log: "npm:^3.0.0" - semver: "npm:^7.3.5" - tar: "npm:^6.1.2" - which: "npm:^4.0.0" - bin: - node-gyp: bin/node-gyp.js - checksum: 10c0/9cc821111ca244a01fb7f054db7523ab0a0cd837f665267eb962eb87695d71fb1e681f9e21464cc2fd7c05530dc4c81b810bca1a88f7d7186909b74477491a3c - languageName: node - linkType: hard - -"node-int64@npm:^0.4.0": - version: 0.4.0 - resolution: "node-int64@npm:0.4.0" - checksum: 10c0/a6a4d8369e2f2720e9c645255ffde909c0fbd41c92ea92a5607fc17055955daac99c1ff589d421eee12a0d24e99f7bfc2aabfeb1a4c14742f6c099a51863f31a - languageName: node - linkType: hard - -"node-releases@npm:^2.0.14": - version: 2.0.14 - resolution: "node-releases@npm:2.0.14" - checksum: 10c0/199fc93773ae70ec9969bc6d5ac5b2bbd6eb986ed1907d751f411fef3ede0e4bfdb45ceb43711f8078bea237b6036db8b1bf208f6ff2b70c7d615afd157f3ab9 - languageName: node - linkType: hard - -"nopt@npm:^7.0.0": - version: 7.2.1 - resolution: "nopt@npm:7.2.1" - dependencies: - abbrev: "npm:^2.0.0" - bin: - nopt: bin/nopt.js - checksum: 10c0/a069c7c736767121242037a22a788863accfa932ab285a1eb569eb8cd534b09d17206f68c37f096ae785647435e0c5a5a0a67b42ec743e481a455e5ae6a6df81 - languageName: node - linkType: hard - -"normalize-package-data@npm:^2.3.2, normalize-package-data@npm:^2.5.0": - version: 2.5.0 - resolution: "normalize-package-data@npm:2.5.0" - dependencies: - hosted-git-info: "npm:^2.1.4" - resolve: "npm:^1.10.0" - semver: "npm:2 || 3 || 4 || 5" - validate-npm-package-license: "npm:^3.0.1" - checksum: 10c0/357cb1646deb42f8eb4c7d42c4edf0eec312f3628c2ef98501963cc4bbe7277021b2b1d977f982b2edce78f5a1014613ce9cf38085c3df2d76730481357ca504 - languageName: node - linkType: hard - -"normalize-package-data@npm:^3.0.0": - version: 3.0.3 - resolution: "normalize-package-data@npm:3.0.3" - dependencies: - hosted-git-info: "npm:^4.0.1" - is-core-module: "npm:^2.5.0" - semver: "npm:^7.3.4" - validate-npm-package-license: "npm:^3.0.1" - checksum: 10c0/e5d0f739ba2c465d41f77c9d950e291ea4af78f8816ddb91c5da62257c40b76d8c83278b0d08ffbcd0f187636ebddad20e181e924873916d03e6e5ea2ef026be - languageName: node - linkType: hard - -"normalize-path@npm:^3.0.0": - version: 3.0.0 - resolution: "normalize-path@npm:3.0.0" - checksum: 10c0/e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046 - languageName: node - linkType: hard - -"npm-run-all@npm:^4.1.5": - version: 4.1.5 - resolution: "npm-run-all@npm:4.1.5" - dependencies: - ansi-styles: "npm:^3.2.1" - chalk: "npm:^2.4.1" - cross-spawn: "npm:^6.0.5" - memorystream: "npm:^0.3.1" - minimatch: "npm:^3.0.4" - pidtree: "npm:^0.3.0" - read-pkg: "npm:^3.0.0" - shell-quote: "npm:^1.6.1" - string.prototype.padend: "npm:^3.0.0" - bin: - npm-run-all: bin/npm-run-all/index.js - run-p: bin/run-p/index.js - run-s: bin/run-s/index.js - checksum: 10c0/736ee39bd35454d3efaa4a2e53eba6c523e2e17fba21a18edcce6b221f5cab62000bef16bb6ae8aff9e615831e6b0eb25ab51d52d60e6fa6f4ea880e4c6d31f4 - languageName: node - linkType: hard - -"npm-run-path@npm:^4.0.1": - version: 4.0.1 - resolution: "npm-run-path@npm:4.0.1" - dependencies: - path-key: "npm:^3.0.0" - checksum: 10c0/6f9353a95288f8455cf64cbeb707b28826a7f29690244c1e4bb61ec573256e021b6ad6651b394eb1ccfd00d6ec50147253aba2c5fe58a57ceb111fad62c519ac - languageName: node - linkType: hard - -"npm-run-path@npm:^5.1.0": - version: 5.3.0 - resolution: "npm-run-path@npm:5.3.0" - dependencies: - path-key: "npm:^4.0.0" - checksum: 10c0/124df74820c40c2eb9a8612a254ea1d557ddfab1581c3e751f825e3e366d9f00b0d76a3c94ecd8398e7f3eee193018622677e95816e8491f0797b21e30b2deba - languageName: node - linkType: hard - -"object-inspect@npm:^1.13.1": - version: 1.13.1 - resolution: "object-inspect@npm:1.13.1" - checksum: 10c0/fad603f408e345c82e946abdf4bfd774260a5ed3e5997a0b057c44153ac32c7271ff19e3a5ae39c858da683ba045ccac2f65245c12763ce4e8594f818f4a648d - languageName: node - linkType: hard - -"object-keys@npm:^1.1.1": - version: 1.1.1 - resolution: "object-keys@npm:1.1.1" - checksum: 10c0/b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d - languageName: node - linkType: hard - -"object-pairs@npm:^0.1.0": - version: 0.1.0 - resolution: "object-pairs@npm:0.1.0" - checksum: 10c0/2fe5ca74bcaf30d5209df3bac82e0917f481afc7df7ad37b74a575d43bc026d50f9a6433277ceb959d8c4ad7c312f8bcd04132b74a90195eb6845f085e4db2ab - languageName: node - linkType: hard - -"object-values@npm:^1.0.0": - version: 1.0.0 - resolution: "object-values@npm:1.0.0" - checksum: 10c0/ec0b80bdd29b4ed5319f91f87d0897f85573de13fa8aa5771172f42a6a91a7fea3a01e5e8b345e2996794b42e2d19715c000561757a299084961f6b7fb80d84d - languageName: node - linkType: hard - -"object.assign@npm:^4.1.5": - version: 4.1.5 - resolution: "object.assign@npm:4.1.5" - dependencies: - call-bind: "npm:^1.0.5" - define-properties: "npm:^1.2.1" - has-symbols: "npm:^1.0.3" - object-keys: "npm:^1.1.1" - checksum: 10c0/60108e1fa2706f22554a4648299b0955236c62b3685c52abf4988d14fffb0e7731e00aa8c6448397e3eb63d087dcc124a9f21e1980f36d0b2667f3c18bacd469 - languageName: node - linkType: hard - -"once@npm:^1.3.0": - version: 1.4.0 - resolution: "once@npm:1.4.0" - dependencies: - wrappy: "npm:1" - checksum: 10c0/5d48aca287dfefabd756621c5dfce5c91a549a93e9fdb7b8246bc4c4790aa2ec17b34a260530474635147aeb631a2dcc8b32c613df0675f96041cbb8244517d0 - languageName: node - linkType: hard - -"onetime@npm:^5.1.0, onetime@npm:^5.1.2": - version: 5.1.2 - resolution: "onetime@npm:5.1.2" - dependencies: - mimic-fn: "npm:^2.1.0" - checksum: 10c0/ffcef6fbb2692c3c40749f31ea2e22677a876daea92959b8a80b521d95cca7a668c884d8b2045d1d8ee7d56796aa405c405462af112a1477594cc63531baeb8f - languageName: node - linkType: hard - -"onetime@npm:^6.0.0": - version: 6.0.0 - resolution: "onetime@npm:6.0.0" - dependencies: - mimic-fn: "npm:^4.0.0" - checksum: 10c0/4eef7c6abfef697dd4479345a4100c382d73c149d2d56170a54a07418c50816937ad09500e1ed1e79d235989d073a9bade8557122aee24f0576ecde0f392bb6c - languageName: node - linkType: hard - -"optionator@npm:^0.9.3": - version: 0.9.4 - resolution: "optionator@npm:0.9.4" - dependencies: - deep-is: "npm:^0.1.3" - fast-levenshtein: "npm:^2.0.6" - levn: "npm:^0.4.1" - prelude-ls: "npm:^1.2.1" - type-check: "npm:^0.4.0" - word-wrap: "npm:^1.2.5" - checksum: 10c0/4afb687a059ee65b61df74dfe87d8d6815cd6883cb8b3d5883a910df72d0f5d029821f37025e4bccf4048873dbdb09acc6d303d27b8f76b1a80dd5a7d5334675 - languageName: node - linkType: hard - -"p-limit@npm:^2.2.0": - version: 2.3.0 - resolution: "p-limit@npm:2.3.0" - dependencies: - p-try: "npm:^2.0.0" - checksum: 10c0/8da01ac53efe6a627080fafc127c873da40c18d87b3f5d5492d465bb85ec7207e153948df6b9cbaeb130be70152f874229b8242ee2be84c0794082510af97f12 - languageName: node - linkType: hard - -"p-limit@npm:^3.0.2, p-limit@npm:^3.1.0": - version: 3.1.0 - resolution: "p-limit@npm:3.1.0" - dependencies: - yocto-queue: "npm:^0.1.0" - checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a - languageName: node - linkType: hard - -"p-locate@npm:^4.1.0": - version: 4.1.0 - resolution: "p-locate@npm:4.1.0" - dependencies: - p-limit: "npm:^2.2.0" - checksum: 10c0/1b476ad69ad7f6059744f343b26d51ce091508935c1dbb80c4e0a2f397ffce0ca3a1f9f5cd3c7ce19d7929a09719d5c65fe70d8ee289c3f267cd36f2881813e9 - languageName: node - linkType: hard - -"p-locate@npm:^5.0.0": - version: 5.0.0 - resolution: "p-locate@npm:5.0.0" - dependencies: - p-limit: "npm:^3.0.2" - checksum: 10c0/2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a - languageName: node - linkType: hard - -"p-map@npm:^4.0.0": - version: 4.0.0 - resolution: "p-map@npm:4.0.0" - dependencies: - aggregate-error: "npm:^3.0.0" - checksum: 10c0/592c05bd6262c466ce269ff172bb8de7c6975afca9b50c975135b974e9bdaafbfe80e61aaaf5be6d1200ba08b30ead04b88cfa7e25ff1e3b93ab28c9f62a2c75 - languageName: node - linkType: hard - -"p-try@npm:^2.0.0": - version: 2.2.0 - resolution: "p-try@npm:2.2.0" - checksum: 10c0/c36c19907734c904b16994e6535b02c36c2224d433e01a2f1ab777237f4d86e6289fd5fd464850491e940379d4606ed850c03e0f9ab600b0ebddb511312e177f - languageName: node - linkType: hard - -"parent-module@npm:^1.0.0": - version: 1.0.1 - resolution: "parent-module@npm:1.0.1" - dependencies: - callsites: "npm:^3.0.0" - checksum: 10c0/c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556 - languageName: node - linkType: hard - -"parent-module@npm:^2.0.0": - version: 2.0.0 - resolution: "parent-module@npm:2.0.0" - dependencies: - callsites: "npm:^3.1.0" - checksum: 10c0/e4c5e34102c709df1932e1065dee53764fbd869f5a673beb8c3b4bcbbd4a7be16e3595f8846b24f52a77b9e96d8d499e68736ec690b108e55d95a5315f41e073 - languageName: node - linkType: hard - -"parse-json@npm:^4.0.0": - version: 4.0.0 - resolution: "parse-json@npm:4.0.0" - dependencies: - error-ex: "npm:^1.3.1" - json-parse-better-errors: "npm:^1.0.1" - checksum: 10c0/8d80790b772ccb1bcea4e09e2697555e519d83d04a77c2b4237389b813f82898943a93ffff7d0d2406203bdd0c30dcf95b1661e3a53f83d0e417f053957bef32 - languageName: node - linkType: hard - -"parse-json@npm:^5.0.0, parse-json@npm:^5.2.0": - version: 5.2.0 - resolution: "parse-json@npm:5.2.0" - dependencies: - "@babel/code-frame": "npm:^7.0.0" - error-ex: "npm:^1.3.1" - json-parse-even-better-errors: "npm:^2.3.0" - lines-and-columns: "npm:^1.1.6" - checksum: 10c0/77947f2253005be7a12d858aedbafa09c9ae39eb4863adf330f7b416ca4f4a08132e453e08de2db46459256fb66afaac5ee758b44fe6541b7cdaf9d252e59585 - languageName: node - linkType: hard - -"parse-ms@npm:^4.0.0": - version: 4.0.0 - resolution: "parse-ms@npm:4.0.0" - checksum: 10c0/a7900f4f1ebac24cbf5e9708c16fb2fd482517fad353aecd7aefb8c2ba2f85ce017913ccb8925d231770404780df46244ea6fec598b3bde6490882358b4d2d16 - languageName: node - linkType: hard - -"path-exists@npm:^4.0.0": - version: 4.0.0 - resolution: "path-exists@npm:4.0.0" - checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b - languageName: node - linkType: hard - -"path-is-absolute@npm:^1.0.0": - version: 1.0.1 - resolution: "path-is-absolute@npm:1.0.1" - checksum: 10c0/127da03c82172a2a50099cddbf02510c1791fc2cc5f7713ddb613a56838db1e8168b121a920079d052e0936c23005562059756d653b7c544c53185efe53be078 - languageName: node - linkType: hard - -"path-key@npm:^2.0.1": - version: 2.0.1 - resolution: "path-key@npm:2.0.1" - checksum: 10c0/dd2044f029a8e58ac31d2bf34c34b93c3095c1481942960e84dd2faa95bbb71b9b762a106aead0646695330936414b31ca0bd862bf488a937ad17c8c5d73b32b - languageName: node - linkType: hard - -"path-key@npm:^3.0.0, path-key@npm:^3.1.0": - version: 3.1.1 - resolution: "path-key@npm:3.1.1" - checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c - languageName: node - linkType: hard - -"path-key@npm:^4.0.0": - version: 4.0.0 - resolution: "path-key@npm:4.0.0" - checksum: 10c0/794efeef32863a65ac312f3c0b0a99f921f3e827ff63afa5cb09a377e202c262b671f7b3832a4e64731003fa94af0263713962d317b9887bd1e0c48a342efba3 - languageName: node - linkType: hard - -"path-parse@npm:^1.0.7": - version: 1.0.7 - resolution: "path-parse@npm:1.0.7" - checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 - languageName: node - linkType: hard - -"path-scurry@npm:^1.11.0": - version: 1.11.1 - resolution: "path-scurry@npm:1.11.1" - dependencies: - lru-cache: "npm:^10.2.0" - minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" - checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d - languageName: node - linkType: hard - -"path-type@npm:^3.0.0": - version: 3.0.0 - resolution: "path-type@npm:3.0.0" - dependencies: - pify: "npm:^3.0.0" - checksum: 10c0/1332c632f1cac15790ebab8dd729b67ba04fc96f81647496feb1c2975d862d046f41e4b975dbd893048999b2cc90721f72924ad820acc58c78507ba7141a8e56 - languageName: node - linkType: hard - -"path-type@npm:^4.0.0": - version: 4.0.0 - resolution: "path-type@npm:4.0.0" - checksum: 10c0/666f6973f332f27581371efaf303fd6c272cc43c2057b37aa99e3643158c7e4b2626549555d88626e99ea9e046f82f32e41bbde5f1508547e9a11b149b52387c - 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" - checksum: 10c0/c63cdad2bf812ef0d66c8db29583802355d4ca67b9285d846f390cc15c2f6ccb94e8cb7eb6a6e97fc5990a6d3ad4ae42d86c84d3146e667c739a4234ed50d400 - languageName: node - linkType: hard - -"picomatch@npm:^2.0.4, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1": - version: 2.3.1 - resolution: "picomatch@npm:2.3.1" - checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be - languageName: node - linkType: hard - -"picomatch@npm:^4.0.1, picomatch@npm:^4.0.2": - 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" - bin: - pidtree: bin/pidtree.js - checksum: 10c0/0829ec4e9209e230f74ebf4265f5ccc9ebfb488334b525cb13f86ff801dca44b362c41252cd43ae4d7653a10a5c6ab3be39d2c79064d6895e0d78dc50a5ed6e9 - languageName: node - linkType: hard - -"pidtree@npm:^0.3.0": - version: 0.3.1 - resolution: "pidtree@npm:0.3.1" - bin: - pidtree: bin/pidtree.js - checksum: 10c0/cd69b0182f749f45ab48584e3442c48c5dc4512502c18d5b0147a33b042c41a4db4269b9ce2f7c48f11833ee5e79d81f5ebc6f7bf8372d4ea55726f60dc505a1 - languageName: node - linkType: hard - -"pify@npm:^3.0.0": - version: 3.0.0 - resolution: "pify@npm:3.0.0" - checksum: 10c0/fead19ed9d801f1b1fcd0638a1ac53eabbb0945bf615f2f8806a8b646565a04a1b0e7ef115c951d225f042cca388fdc1cd3add46d10d1ed6951c20bd2998af10 - languageName: node - linkType: hard - -"pirates@npm:^4.0.4": - version: 4.0.6 - resolution: "pirates@npm:4.0.6" - checksum: 10c0/00d5fa51f8dded94d7429700fb91a0c1ead00ae2c7fd27089f0c5b63e6eca36197fe46384631872690a66f390c5e27198e99006ab77ae472692ab9c2ca903f36 - languageName: node - linkType: hard - -"pkg-dir@npm:^4.2.0": - version: 4.2.0 - resolution: "pkg-dir@npm:4.2.0" - dependencies: - find-up: "npm:^4.0.0" - checksum: 10c0/c56bda7769e04907a88423feb320babaed0711af8c436ce3e56763ab1021ba107c7b0cafb11cde7529f669cfc22bffcaebffb573645cbd63842ea9fb17cd7728 - languageName: node - linkType: hard - -"possible-typed-array-names@npm:^1.0.0": - version: 1.0.0 - resolution: "possible-typed-array-names@npm:1.0.0" - checksum: 10c0/d9aa22d31f4f7680e20269db76791b41c3a32c01a373e25f8a4813b4d45f7456bfc2b6d68f752dc4aab0e0bb0721cb3d76fb678c9101cb7a16316664bc2c73fd - languageName: node - linkType: hard - -"prelude-ls@npm:^1.2.1": - version: 1.2.1 - resolution: "prelude-ls@npm:1.2.1" - checksum: 10c0/b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd - languageName: node - linkType: hard - -"prettier-linter-helpers@npm:^1.0.0": - version: 1.0.0 - resolution: "prettier-linter-helpers@npm:1.0.0" - dependencies: - fast-diff: "npm:^1.1.2" - checksum: 10c0/81e0027d731b7b3697ccd2129470ed9913ecb111e4ec175a12f0fcfab0096516373bf0af2fef132af50cafb0a905b74ff57996d615f59512bb9ac7378fcc64ab - languageName: node - linkType: hard - -"prettier@npm:^3.2.5": - version: 3.2.5 - resolution: "prettier@npm:3.2.5" - bin: - prettier: bin/prettier.cjs - checksum: 10c0/ea327f37a7d46f2324a34ad35292af2ad4c4c3c3355da07313339d7e554320f66f65f91e856add8530157a733c6c4a897dc41b577056be5c24c40f739f5ee8c6 - languageName: node - linkType: hard - -"pretty-format@npm:^29.0.0, pretty-format@npm:^29.7.0": - version: 29.7.0 - resolution: "pretty-format@npm:29.7.0" - dependencies: - "@jest/schemas": "npm:^29.6.3" - ansi-styles: "npm:^5.0.0" - react-is: "npm:^18.0.0" - checksum: 10c0/edc5ff89f51916f036c62ed433506b55446ff739358de77207e63e88a28ca2894caac6e73dcb68166a606e51c8087d32d400473e6a9fdd2dbe743f46c9c0276f - languageName: node - linkType: hard - -"pretty-ms@npm:9.0.0": - version: 9.0.0 - resolution: "pretty-ms@npm:9.0.0" - dependencies: - parse-ms: "npm:^4.0.0" - checksum: 10c0/ba4a2acd1fe92a1c629e5cdeb555d7fa344ae9920e20fa00e8ac1db61b8d3dff8638ffc70c7569f681e375df68c9f31291c2c1912cefd02ef1b1bdd0861a4aed - languageName: node - linkType: hard - -"proc-log@npm:^3.0.0": - version: 3.0.0 - resolution: "proc-log@npm:3.0.0" - checksum: 10c0/f66430e4ff947dbb996058f6fd22de2c66612ae1a89b097744e17fb18a4e8e7a86db99eda52ccf15e53f00b63f4ec0b0911581ff2aac0355b625c8eac509b0dc - languageName: node - linkType: hard - -"proc-log@npm:^4.2.0": - version: 4.2.0 - resolution: "proc-log@npm:4.2.0" - checksum: 10c0/17db4757c2a5c44c1e545170e6c70a26f7de58feb985091fb1763f5081cab3d01b181fb2dd240c9f4a4255a1d9227d163d5771b7e69c9e49a561692db865efb9 - languageName: node - linkType: hard - -"promise-retry@npm:^2.0.1": - version: 2.0.1 - resolution: "promise-retry@npm:2.0.1" - dependencies: - err-code: "npm:^2.0.2" - retry: "npm:^0.12.0" - checksum: 10c0/9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96 - languageName: node - linkType: hard - -"prompts@npm:^2.0.1": - version: 2.4.2 - resolution: "prompts@npm:2.4.2" - dependencies: - kleur: "npm:^3.0.3" - sisteransi: "npm:^1.0.5" - checksum: 10c0/16f1ac2977b19fe2cf53f8411cc98db7a3c8b115c479b2ca5c82b5527cd937aa405fa04f9a5960abeb9daef53191b53b4d13e35c1f5d50e8718c76917c5f1ea4 - languageName: node - linkType: hard - -"proxy-from-env@npm:^1.1.0": - version: 1.1.0 - resolution: "proxy-from-env@npm:1.1.0" - checksum: 10c0/fe7dd8b1bdbbbea18d1459107729c3e4a2243ca870d26d34c2c1bcd3e4425b7bcc5112362df2d93cc7fb9746f6142b5e272fd1cc5c86ddf8580175186f6ad42b - languageName: node - linkType: hard - -"punycode@npm:^2.1.0": - version: 2.3.1 - resolution: "punycode@npm:2.3.1" - checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9 - languageName: node - linkType: hard - -"pure-rand@npm:^6.0.0": - version: 6.1.0 - resolution: "pure-rand@npm:6.1.0" - checksum: 10c0/1abe217897bf74dcb3a0c9aba3555fe975023147b48db540aa2faf507aee91c03bf54f6aef0eb2bf59cc259a16d06b28eca37f0dc426d94f4692aeff02fb0e65 - languageName: node - linkType: hard - -"queue-microtask@npm:^1.2.2": - version: 1.2.3 - resolution: "queue-microtask@npm:1.2.3" - checksum: 10c0/900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102 - languageName: node - linkType: hard - -"quick-lru@npm:^4.0.1": - version: 4.0.1 - resolution: "quick-lru@npm:4.0.1" - checksum: 10c0/f9b1596fa7595a35c2f9d913ac312fede13d37dc8a747a51557ab36e11ce113bbe88ef4c0154968845559a7709cb6a7e7cbe75f7972182451cd45e7f057a334d - languageName: node - linkType: hard - -"react-is@npm:^18.0.0": - version: 18.3.1 - resolution: "react-is@npm:18.3.1" - checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072 - languageName: node - linkType: hard - -"read-pkg-up@npm:^7.0.1": - version: 7.0.1 - resolution: "read-pkg-up@npm:7.0.1" - dependencies: - find-up: "npm:^4.1.0" - read-pkg: "npm:^5.2.0" - type-fest: "npm:^0.8.1" - checksum: 10c0/82b3ac9fd7c6ca1bdc1d7253eb1091a98ff3d195ee0a45386582ce3e69f90266163c34121e6a0a02f1630073a6c0585f7880b3865efcae9c452fa667f02ca385 - languageName: node - linkType: hard - -"read-pkg@npm:^3.0.0": - version: 3.0.0 - resolution: "read-pkg@npm:3.0.0" - dependencies: - load-json-file: "npm:^4.0.0" - normalize-package-data: "npm:^2.3.2" - path-type: "npm:^3.0.0" - checksum: 10c0/65acf2df89fbcd506b48b7ced56a255ba00adf7ecaa2db759c86cc58212f6fd80f1f0b7a85c848551a5d0685232e9b64f45c1fd5b48d85df2761a160767eeb93 - languageName: node - linkType: hard - -"read-pkg@npm:^5.2.0": - version: 5.2.0 - resolution: "read-pkg@npm:5.2.0" - dependencies: - "@types/normalize-package-data": "npm:^2.4.0" - normalize-package-data: "npm:^2.5.0" - parse-json: "npm:^5.0.0" - type-fest: "npm:^0.6.0" - checksum: 10c0/b51a17d4b51418e777029e3a7694c9bd6c578a5ab99db544764a0b0f2c7c0f58f8a6bc101f86a6fceb8ba6d237d67c89acf6170f6b98695d0420ddc86cf109fb - languageName: node - linkType: hard - -"readable-stream@npm:3, readable-stream@npm:^3.0.0": - version: 3.6.2 - resolution: "readable-stream@npm:3.6.2" - dependencies: - inherits: "npm:^2.0.3" - string_decoder: "npm:^1.1.1" - util-deprecate: "npm:^1.0.1" - checksum: 10c0/e37be5c79c376fdd088a45fa31ea2e423e5d48854be7a22a58869b4e84d25047b193f6acb54f1012331e1bcd667ffb569c01b99d36b0bd59658fb33f513511b7 - languageName: node - linkType: hard - -"redent@npm:^3.0.0": - version: 3.0.0 - resolution: "redent@npm:3.0.0" - dependencies: - indent-string: "npm:^4.0.0" - strip-indent: "npm:^3.0.0" - checksum: 10c0/d64a6b5c0b50eb3ddce3ab770f866658a2b9998c678f797919ceb1b586bab9259b311407280bd80b804e2a7c7539b19238ae6a2a20c843f1a7fcff21d48c2eae - languageName: node - linkType: hard - -"regenerate-unicode-properties@npm:^10.1.0": - version: 10.1.1 - resolution: "regenerate-unicode-properties@npm:10.1.1" - dependencies: - regenerate: "npm:^1.4.2" - checksum: 10c0/89adb5ee5ba081380c78f9057c02e156a8181969f6fcca72451efc45612e0c3df767b4333f8d8479c274d9c6fe52ec4854f0d8a22ef95dccbe87da8e5f2ac77d - languageName: node - linkType: hard - -"regenerate@npm:^1.4.2": - version: 1.4.2 - resolution: "regenerate@npm:1.4.2" - checksum: 10c0/f73c9eba5d398c818edc71d1c6979eaa05af7a808682749dd079f8df2a6d91a9b913db216c2c9b03e0a8ba2bba8701244a93f45211afbff691c32c7b275db1b8 - languageName: node - linkType: hard - -"regenerator-runtime@npm:^0.14.0": - version: 0.14.1 - resolution: "regenerator-runtime@npm:0.14.1" - checksum: 10c0/1b16eb2c4bceb1665c89de70dcb64126a22bc8eb958feef3cd68fe11ac6d2a4899b5cd1b80b0774c7c03591dc57d16631a7f69d2daa2ec98100e2f29f7ec4cc4 - languageName: node - linkType: hard - -"regenerator-transform@npm:^0.15.2": - version: 0.15.2 - resolution: "regenerator-transform@npm:0.15.2" - dependencies: - "@babel/runtime": "npm:^7.8.4" - checksum: 10c0/7cfe6931ec793269701994a93bab89c0cc95379191fad866270a7fea2adfec67ea62bb5b374db77058b60ba4509319d9b608664d0d288bd9989ca8dbd08fae90 - languageName: node - linkType: hard - -"regexp.prototype.flags@npm:^1.5.2": - version: 1.5.2 - resolution: "regexp.prototype.flags@npm:1.5.2" - dependencies: - call-bind: "npm:^1.0.6" - define-properties: "npm:^1.2.1" - es-errors: "npm:^1.3.0" - set-function-name: "npm:^2.0.1" - checksum: 10c0/0f3fc4f580d9c349f8b560b012725eb9c002f36daa0041b3fbf6f4238cb05932191a4d7d5db3b5e2caa336d5150ad0402ed2be81f711f9308fe7e1a9bf9bd552 - languageName: node - linkType: hard - -"regexpu-core@npm:^5.3.1": - version: 5.3.2 - resolution: "regexpu-core@npm:5.3.2" - dependencies: - "@babel/regjsgen": "npm:^0.8.0" - regenerate: "npm:^1.4.2" - regenerate-unicode-properties: "npm:^10.1.0" - regjsparser: "npm:^0.9.1" - unicode-match-property-ecmascript: "npm:^2.0.0" - unicode-match-property-value-ecmascript: "npm:^2.1.0" - checksum: 10c0/7945d5ab10c8bbed3ca383d4274687ea825aee4ab93a9c51c6e31e1365edd5ea807f6908f800ba017b66c462944ba68011164e7055207747ab651f8111ef3770 - languageName: node - linkType: hard - -"regjsparser@npm:^0.9.1": - version: 0.9.1 - resolution: "regjsparser@npm:0.9.1" - dependencies: - jsesc: "npm:~0.5.0" - bin: - regjsparser: bin/parser - checksum: 10c0/fe44fcf19a99fe4f92809b0b6179530e5ef313ff7f87df143b08ce9a2eb3c4b6189b43735d645be6e8f4033bfb015ed1ca54f0583bc7561bed53fd379feb8225 - languageName: node - linkType: hard - -"repeat-string@npm:^1.6.1": - version: 1.6.1 - resolution: "repeat-string@npm:1.6.1" - checksum: 10c0/87fa21bfdb2fbdedc44b9a5b118b7c1239bdd2c2c1e42742ef9119b7d412a5137a1d23f1a83dc6bb686f4f27429ac6f542e3d923090b44181bafa41e8ac0174d - languageName: node - linkType: hard - -"require-directory@npm:^2.1.1": - version: 2.1.1 - resolution: "require-directory@npm:2.1.1" - checksum: 10c0/83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99 - languageName: node - linkType: hard - -"require-from-string@npm:^2.0.2": - version: 2.0.2 - resolution: "require-from-string@npm:2.0.2" - checksum: 10c0/aaa267e0c5b022fc5fd4eef49d8285086b15f2a1c54b28240fdf03599cbd9c26049fee3eab894f2e1f6ca65e513b030a7c264201e3f005601e80c49fb2937ce2 - languageName: node - linkType: hard - -"resolve-cwd@npm:^3.0.0": - version: 3.0.0 - resolution: "resolve-cwd@npm:3.0.0" - dependencies: - resolve-from: "npm:^5.0.0" - checksum: 10c0/e608a3ebd15356264653c32d7ecbc8fd702f94c6703ea4ac2fb81d9c359180cba0ae2e6b71faa446631ed6145454d5a56b227efc33a2d40638ac13f8beb20ee4 - languageName: node - linkType: hard - -"resolve-from@npm:5.0.0, resolve-from@npm:^5.0.0": - version: 5.0.0 - resolution: "resolve-from@npm:5.0.0" - checksum: 10c0/b21cb7f1fb746de8107b9febab60095187781137fd803e6a59a76d421444b1531b641bba5857f5dc011974d8a5c635d61cec49e6bd3b7fc20e01f0fafc4efbf2 - languageName: node - linkType: hard - -"resolve-from@npm:^4.0.0": - version: 4.0.0 - resolution: "resolve-from@npm:4.0.0" - checksum: 10c0/8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190 - languageName: node - linkType: hard - -"resolve-global@npm:1.0.0, resolve-global@npm:^1.0.0": - version: 1.0.0 - resolution: "resolve-global@npm:1.0.0" - dependencies: - global-dirs: "npm:^0.1.1" - checksum: 10c0/fda6ba81a07a0124756ce956dd871ca83763973326d8617143dab38d9c9afc666926604bfe8f0bfd046a9a285347568f32ceb3d4c55a1cb9de5614cca001a21c - languageName: node - linkType: hard - -"resolve-pkg-maps@npm:^1.0.0": - version: 1.0.0 - resolution: "resolve-pkg-maps@npm:1.0.0" - checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab - languageName: node - linkType: hard - -"resolve.exports@npm:^2.0.0": - version: 2.0.2 - resolution: "resolve.exports@npm:2.0.2" - checksum: 10c0/cc4cffdc25447cf34730f388dca5021156ba9302a3bad3d7f168e790dc74b2827dff603f1bc6ad3d299bac269828dca96dd77e036dc9fba6a2a1807c47ab5c98 - languageName: node - linkType: hard - -"resolve@npm:1.22.8, resolve@npm:^1.10.0, resolve@npm:^1.14.2, resolve@npm:^1.20.0": - version: 1.22.8 - resolution: "resolve@npm:1.22.8" - dependencies: - is-core-module: "npm:^2.13.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/07e179f4375e1fd072cfb72ad66d78547f86e6196c4014b31cb0b8bb1db5f7ca871f922d08da0fbc05b94e9fd42206f819648fa3b5b873ebbc8e1dc68fec433a - 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": - version: 1.22.8 - resolution: "resolve@patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d" - dependencies: - is-core-module: "npm:^2.13.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/0446f024439cd2e50c6c8fa8ba77eaa8370b4180f401a96abf3d1ebc770ac51c1955e12764cde449fde3fff480a61f84388e3505ecdbab778f4bef5f8212c729 - languageName: node - linkType: hard - -"restore-cursor@npm:^4.0.0": - version: 4.0.0 - resolution: "restore-cursor@npm:4.0.0" - dependencies: - onetime: "npm:^5.1.0" - signal-exit: "npm:^3.0.2" - checksum: 10c0/6f7da8c5e422ac26aa38354870b1afac09963572cf2879443540449068cb43476e9cbccf6f8de3e0171e0d6f7f533c2bc1a0a008003c9a525bbc098e89041318 - languageName: node - linkType: hard - -"retry@npm:^0.12.0": - version: 0.12.0 - resolution: "retry@npm:0.12.0" - checksum: 10c0/59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe - languageName: node - linkType: hard - -"reusify@npm:^1.0.4": - version: 1.0.4 - resolution: "reusify@npm:1.0.4" - checksum: 10c0/c19ef26e4e188f408922c46f7ff480d38e8dfc55d448310dfb518736b23ed2c4f547fb64a6ed5bdba92cd7e7ddc889d36ff78f794816d5e71498d645ef476107 - languageName: node - linkType: hard - -"reverse-arguments@npm:^1.0.0": - version: 1.0.0 - resolution: "reverse-arguments@npm:1.0.0" - checksum: 10c0/8a8665d184655290db00ee0d81238c4e6e4ca1d56c0101538ddd69f84e3ce0311f51b0e7669d846c4cc10b8418b1e6e24e40a0e261d04c48c1208adaa6941d99 - languageName: node - linkType: hard - -"rfdc@npm:^1.3.0": - version: 1.3.1 - resolution: "rfdc@npm:1.3.1" - checksum: 10c0/69f65e3ed30970f8055fac9fbbef9ce578800ca19554eab1dcbffe73a4b8aef536bc4248313889cf25e3b4e38b212c721eabe30856575bf2b2bc3d90f8ba93ef - languageName: node - linkType: hard - -"rimraf@npm:^3.0.2": - version: 3.0.2 - resolution: "rimraf@npm:3.0.2" - dependencies: - glob: "npm:^7.1.3" - bin: - rimraf: bin.js - checksum: 10c0/9cb7757acb489bd83757ba1a274ab545eafd75598a9d817e0c3f8b164238dd90eba50d6b848bd4dcc5f3040912e882dc7ba71653e35af660d77b25c381d402e8 - languageName: node - linkType: hard - -"run-parallel@npm:^1.1.9, run-parallel@npm:^1.2.0": - version: 1.2.0 - resolution: "run-parallel@npm:1.2.0" - dependencies: - queue-microtask: "npm:^1.2.2" - checksum: 10c0/200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39 - languageName: node - linkType: hard - -"safe-array-concat@npm:^1.1.2": - version: 1.1.2 - resolution: "safe-array-concat@npm:1.1.2" - dependencies: - call-bind: "npm:^1.0.7" - get-intrinsic: "npm:^1.2.4" - has-symbols: "npm:^1.0.3" - isarray: "npm:^2.0.5" - checksum: 10c0/12f9fdb01c8585e199a347eacc3bae7b5164ae805cdc8c6707199dbad5b9e30001a50a43c4ee24dc9ea32dbb7279397850e9208a7e217f4d8b1cf5d90129dec9 - languageName: node - linkType: hard - -"safe-buffer@npm:~5.2.0": - version: 5.2.1 - resolution: "safe-buffer@npm:5.2.1" - checksum: 10c0/6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3 - languageName: node - linkType: hard - -"safe-regex-test@npm:^1.0.3": - version: 1.0.3 - resolution: "safe-regex-test@npm:1.0.3" - dependencies: - call-bind: "npm:^1.0.6" - es-errors: "npm:^1.3.0" - is-regex: "npm:^1.1.4" - checksum: 10c0/900bf7c98dc58f08d8523b7012b468e4eb757afa624f198902c0643d7008ba777b0bdc35810ba0b758671ce887617295fb742b3f3968991b178ceca54cb07603 - languageName: node - linkType: hard - -"safer-buffer@npm:>= 2.1.2 < 3.0.0": - version: 2.1.2 - resolution: "safer-buffer@npm:2.1.2" - checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 - languageName: node - linkType: hard - -"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.5.0": - version: 5.7.2 - resolution: "semver@npm:5.7.2" - bin: - semver: bin/semver - checksum: 10c0/e4cf10f86f168db772ae95d86ba65b3fd6c5967c94d97c708ccb463b778c2ee53b914cd7167620950fc07faf5a564e6efe903836639e512a1aa15fbc9667fa25 - languageName: node - linkType: hard - -"semver@npm:7.6.0": - version: 7.6.0 - resolution: "semver@npm:7.6.0" - dependencies: - lru-cache: "npm:^6.0.0" - bin: - semver: bin/semver.js - checksum: 10c0/fbfe717094ace0aa8d6332d7ef5ce727259815bd8d8815700853f4faf23aacbd7192522f0dc5af6df52ef4fa85a355ebd2f5d39f554bd028200d6cf481ab9b53 - languageName: node - linkType: hard - -"semver@npm:^6.3.0, semver@npm:^6.3.1": - version: 6.3.1 - resolution: "semver@npm:6.3.1" - bin: - semver: bin/semver.js - checksum: 10c0/e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d - 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": - version: 7.6.2 - resolution: "semver@npm:7.6.2" - bin: - semver: bin/semver.js - checksum: 10c0/97d3441e97ace8be4b1976433d1c32658f6afaff09f143e52c593bae7eef33de19e3e369c88bd985ce1042c6f441c80c6803078d1de2a9988080b66684cbb30c - languageName: node - linkType: hard - -"set-function-length@npm:^1.2.1": - version: 1.2.2 - resolution: "set-function-length@npm:1.2.2" - dependencies: - define-data-property: "npm:^1.1.4" - es-errors: "npm:^1.3.0" - function-bind: "npm:^1.1.2" - get-intrinsic: "npm:^1.2.4" - gopd: "npm:^1.0.1" - has-property-descriptors: "npm:^1.0.2" - checksum: 10c0/82850e62f412a258b71e123d4ed3873fa9377c216809551192bb6769329340176f109c2eeae8c22a8d386c76739855f78e8716515c818bcaef384b51110f0f3c - languageName: node - linkType: hard - -"set-function-name@npm:^2.0.1": - version: 2.0.2 - resolution: "set-function-name@npm:2.0.2" - dependencies: - define-data-property: "npm:^1.1.4" - es-errors: "npm:^1.3.0" - functions-have-names: "npm:^1.2.3" - has-property-descriptors: "npm:^1.0.2" - checksum: 10c0/fce59f90696c450a8523e754abb305e2b8c73586452619c2bad5f7bf38c7b6b4651895c9db895679c5bef9554339cf3ef1c329b66ece3eda7255785fbe299316 - languageName: node - linkType: hard - -"shebang-command@npm:^1.2.0": - version: 1.2.0 - resolution: "shebang-command@npm:1.2.0" - dependencies: - shebang-regex: "npm:^1.0.0" - checksum: 10c0/7b20dbf04112c456b7fc258622dafd566553184ac9b6938dd30b943b065b21dabd3776460df534cc02480db5e1b6aec44700d985153a3da46e7db7f9bd21326d - languageName: node - linkType: hard - -"shebang-command@npm:^2.0.0": - version: 2.0.0 - resolution: "shebang-command@npm:2.0.0" - dependencies: - shebang-regex: "npm:^3.0.0" - checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e - languageName: node - linkType: hard - -"shebang-regex@npm:^1.0.0": - version: 1.0.0 - resolution: "shebang-regex@npm:1.0.0" - checksum: 10c0/9abc45dee35f554ae9453098a13fdc2f1730e525a5eb33c51f096cc31f6f10a4b38074c1ebf354ae7bffa7229506083844008dfc3bb7818228568c0b2dc1fff2 - languageName: node - linkType: hard - -"shebang-regex@npm:^3.0.0": - version: 3.0.0 - resolution: "shebang-regex@npm:3.0.0" - checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 - languageName: node - linkType: hard - -"shell-quote-word@npm:^1.0.1": - version: 1.0.1 - resolution: "shell-quote-word@npm:1.0.1" - checksum: 10c0/780d67a10878bca215d4cdccfcc079d4a81a6584e13944cce39bddb8c1096a32cce6b85141ac4c196fcbaec6b93b5cc35844fcf1e3788785a504405e90253f55 - languageName: node - linkType: hard - -"shell-quote@npm:^1.6.1": - version: 1.8.1 - resolution: "shell-quote@npm:1.8.1" - checksum: 10c0/8cec6fd827bad74d0a49347057d40dfea1e01f12a6123bf82c4649f3ef152fc2bc6d6176e6376bffcd205d9d0ccb4f1f9acae889384d20baff92186f01ea455a - languageName: node - linkType: hard - -"side-channel@npm:^1.0.4": - version: 1.0.6 - resolution: "side-channel@npm:1.0.6" - dependencies: - call-bind: "npm:^1.0.7" - es-errors: "npm:^1.3.0" - get-intrinsic: "npm:^1.2.4" - object-inspect: "npm:^1.13.1" - checksum: 10c0/d2afd163dc733cc0a39aa6f7e39bf0c436293510dbccbff446733daeaf295857dbccf94297092ec8c53e2503acac30f0b78830876f0485991d62a90e9cad305f - languageName: node - linkType: hard - -"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": - version: 3.0.7 - resolution: "signal-exit@npm:3.0.7" - checksum: 10c0/25d272fa73e146048565e08f3309d5b942c1979a6f4a58a8c59d5fa299728e9c2fcd1a759ec870863b1fd38653670240cd420dad2ad9330c71f36608a6a1c912 - languageName: node - linkType: hard - -"signal-exit@npm:^4.0.1, signal-exit@npm:^4.1.0": - version: 4.1.0 - resolution: "signal-exit@npm:4.1.0" - checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 - languageName: node - linkType: hard - -"sisteransi@npm:^1.0.5": - version: 1.0.5 - resolution: "sisteransi@npm:1.0.5" - checksum: 10c0/230ac975cca485b7f6fe2b96a711aa62a6a26ead3e6fb8ba17c5a00d61b8bed0d7adc21f5626b70d7c33c62ff4e63933017a6462942c719d1980bb0b1207ad46 - languageName: node - linkType: hard - -"slash@npm:^3.0.0": - version: 3.0.0 - resolution: "slash@npm:3.0.0" - checksum: 10c0/e18488c6a42bdfd4ac5be85b2ced3ccd0224773baae6ad42cfbb9ec74fc07f9fa8396bd35ee638084ead7a2a0818eb5e7151111544d4731ce843019dab4be47b - languageName: node - linkType: hard - -"slice-ansi@npm:^5.0.0": - version: 5.0.0 - resolution: "slice-ansi@npm:5.0.0" - dependencies: - ansi-styles: "npm:^6.0.0" - is-fullwidth-code-point: "npm:^4.0.0" - checksum: 10c0/2d4d40b2a9d5cf4e8caae3f698fe24ae31a4d778701724f578e984dcb485ec8c49f0c04dab59c401821e80fcdfe89cace9c66693b0244e40ec485d72e543914f - languageName: node - linkType: hard - -"slice-ansi@npm:^7.0.0": - version: 7.1.0 - resolution: "slice-ansi@npm:7.1.0" - dependencies: - ansi-styles: "npm:^6.2.1" - is-fullwidth-code-point: "npm:^5.0.0" - checksum: 10c0/631c971d4abf56cf880f034d43fcc44ff883624867bf11ecbd538c47343911d734a4656d7bc02362b40b89d765652a7f935595441e519b59e2ad3f4d5d6fe7ca - languageName: node - linkType: hard - -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 - languageName: node - linkType: hard - -"smol-toml@npm:1.1.4": - version: 1.1.4 - resolution: "smol-toml@npm:1.1.4" - checksum: 10c0/ccb7d872ca121632bc6b4c99df34d1fc82dc04da2719a9f2baa71573e85a1bd101ebe5f6a94a6c60097db794836c540f8233a5eb3e3d58200ec68202b8c96eca - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^8.0.3": - version: 8.0.3 - resolution: "socks-proxy-agent@npm:8.0.3" - dependencies: - agent-base: "npm:^7.1.1" - debug: "npm:^4.3.4" - socks: "npm:^2.7.1" - checksum: 10c0/4950529affd8ccd6951575e21c1b7be8531b24d924aa4df3ee32df506af34b618c4e50d261f4cc603f1bfd8d426915b7d629966c8ce45b05fb5ad8c8b9a6459d - languageName: node - linkType: hard - -"socks@npm:^2.7.1": - version: 2.8.3 - resolution: "socks@npm:2.8.3" - dependencies: - ip-address: "npm:^9.0.5" - smart-buffer: "npm:^4.2.0" - checksum: 10c0/d54a52bf9325165770b674a67241143a3d8b4e4c8884560c4e0e078aace2a728dffc7f70150660f51b85797c4e1a3b82f9b7aa25e0a0ceae1a243365da5c51a7 - languageName: node - linkType: hard - -"source-map-support@npm:0.5.13": - version: 0.5.13 - resolution: "source-map-support@npm:0.5.13" - dependencies: - buffer-from: "npm:^1.0.0" - source-map: "npm:^0.6.0" - checksum: 10c0/137539f8c453fa0f496ea42049ab5da4569f96781f6ac8e5bfda26937be9494f4e8891f523c5f98f0e85f71b35d74127a00c46f83f6a4f54672b58d53202565e - languageName: node - linkType: hard - -"source-map@npm:^0.6.0, source-map@npm:^0.6.1": - version: 0.6.1 - resolution: "source-map@npm:0.6.1" - checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011 - languageName: node - linkType: hard - -"spdx-correct@npm:^3.0.0": - version: 3.2.0 - resolution: "spdx-correct@npm:3.2.0" - dependencies: - spdx-expression-parse: "npm:^3.0.0" - spdx-license-ids: "npm:^3.0.0" - checksum: 10c0/49208f008618b9119208b0dadc9208a3a55053f4fd6a0ae8116861bd22696fc50f4142a35ebfdb389e05ccf2de8ad142573fefc9e26f670522d899f7b2fe7386 - languageName: node - linkType: hard - -"spdx-exceptions@npm:^2.1.0": - version: 2.5.0 - resolution: "spdx-exceptions@npm:2.5.0" - checksum: 10c0/37217b7762ee0ea0d8b7d0c29fd48b7e4dfb94096b109d6255b589c561f57da93bf4e328c0290046115961b9209a8051ad9f525e48d433082fc79f496a4ea940 - languageName: node - linkType: hard - -"spdx-expression-parse@npm:^3.0.0": - version: 3.0.1 - resolution: "spdx-expression-parse@npm:3.0.1" - dependencies: - spdx-exceptions: "npm:^2.1.0" - spdx-license-ids: "npm:^3.0.0" - checksum: 10c0/6f8a41c87759fa184a58713b86c6a8b028250f158159f1d03ed9d1b6ee4d9eefdc74181c8ddc581a341aa971c3e7b79e30b59c23b05d2436d5de1c30bdef7171 - languageName: node - linkType: hard - -"spdx-license-ids@npm:^3.0.0": - version: 3.0.17 - resolution: "spdx-license-ids@npm:3.0.17" - checksum: 10c0/ddf9477b5afc70f1a7d3bf91f0b8e8a1c1b0fa65d2d9a8b5c991b1a2ba91b693d8b9749700119d5ce7f3fbf307ac421087ff43d321db472605e98a5804f80eac - languageName: node - linkType: hard - -"split2@npm:^3.0.0": - version: 3.2.2 - resolution: "split2@npm:3.2.2" - dependencies: - readable-stream: "npm:^3.0.0" - checksum: 10c0/2dad5603c52b353939befa3e2f108f6e3aff42b204ad0f5f16dd12fd7c2beab48d117184ce6f7c8854f9ee5ffec6faae70d243711dd7d143a9f635b4a285de4e - languageName: node - linkType: hard - -"split2@npm:^4.0.0": - version: 4.2.0 - resolution: "split2@npm:4.2.0" - checksum: 10c0/b292beb8ce9215f8c642bb68be6249c5a4c7f332fc8ecadae7be5cbdf1ea95addc95f0459ef2e7ad9d45fd1064698a097e4eb211c83e772b49bc0ee423e91534 - languageName: node - linkType: hard - -"sprintf-js@npm:^1.1.3": - version: 1.1.3 - resolution: "sprintf-js@npm:1.1.3" - checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec - languageName: node - linkType: hard - -"sprintf-js@npm:~1.0.2": - version: 1.0.3 - resolution: "sprintf-js@npm:1.0.3" - checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb - languageName: node - linkType: hard - -"ssri@npm:^10.0.0": - version: 10.0.6 - resolution: "ssri@npm:10.0.6" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/e5a1e23a4057a86a97971465418f22ea89bd439ac36ade88812dd920e4e61873e8abd6a9b72a03a67ef50faa00a2daf1ab745c5a15b46d03e0544a0296354227 - languageName: node - linkType: hard - -"stack-utils@npm:^2.0.3": - version: 2.0.6 - resolution: "stack-utils@npm:2.0.6" - dependencies: - escape-string-regexp: "npm:^2.0.0" - checksum: 10c0/651c9f87667e077584bbe848acaecc6049bc71979f1e9a46c7b920cad4431c388df0f51b8ad7cfd6eed3db97a2878d0fc8b3122979439ea8bac29c61c95eec8a - languageName: node - linkType: hard - -"string-argv@npm:0.3.2": - version: 0.3.2 - resolution: "string-argv@npm:0.3.2" - checksum: 10c0/75c02a83759ad1722e040b86823909d9a2fc75d15dd71ec4b537c3560746e33b5f5a07f7332d1e3f88319909f82190843aa2f0a0d8c8d591ec08e93d5b8dec82 - languageName: node - linkType: hard - -"string-length@npm:^4.0.1": - version: 4.0.2 - resolution: "string-length@npm:4.0.2" - dependencies: - char-regex: "npm:^1.0.2" - strip-ansi: "npm:^6.0.0" - checksum: 10c0/1cd77409c3d7db7bc59406f6bcc9ef0783671dcbabb23597a1177c166906ef2ee7c8290f78cae73a8aec858768f189d2cb417797df5e15ec4eb5e16b3346340c - languageName: node - linkType: hard - -"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": - version: 4.2.3 - resolution: "string-width@npm:4.2.3" - dependencies: - emoji-regex: "npm:^8.0.0" - is-fullwidth-code-point: "npm:^3.0.0" - strip-ansi: "npm:^6.0.1" - checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b - languageName: node - linkType: hard - -"string-width@npm:^5.0.1, string-width@npm:^5.1.2": - version: 5.1.2 - resolution: "string-width@npm:5.1.2" - dependencies: - eastasianwidth: "npm:^0.2.0" - emoji-regex: "npm:^9.2.2" - strip-ansi: "npm:^7.0.1" - checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca - languageName: node - linkType: hard - -"string-width@npm:^7.0.0": - version: 7.1.0 - resolution: "string-width@npm:7.1.0" - dependencies: - emoji-regex: "npm:^10.3.0" - get-east-asian-width: "npm:^1.0.0" - strip-ansi: "npm:^7.1.0" - checksum: 10c0/68a99fbc3bd3d8eb42886ff38dce819767dee55f606f74dfa4687a07dfd21262745d9683df0aa53bf81a5dd47c13da921a501925b974bec66a7ddd634fef0634 - languageName: node - linkType: hard - -"string.fromcodepoint@npm:^0.2.1": - version: 0.2.1 - resolution: "string.fromcodepoint@npm:0.2.1" - checksum: 10c0/2e26c7370daea0725f2cc3b0a2e4b84613c44b68130ad2afa1364b51fd48ebdfe6390086807d7b5e95d58e8a872aca46a53bbc182c549cd74c0ee9b46de32b02 - languageName: node - linkType: hard - -"string.prototype.padend@npm:^3.0.0": - version: 3.1.6 - resolution: "string.prototype.padend@npm:3.1.6" - dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.23.2" - es-object-atoms: "npm:^1.0.0" - checksum: 10c0/8f2c8c1f3db1efcdc210668c80c87f2cea1253d6029ff296a172b5e13edc9adebeed4942d023de8d31f9b13b69f3f5d73de7141959b1f09817fba5f527e83be1 - languageName: node - linkType: hard - -"string.prototype.trim@npm:^1.2.9": - version: 1.2.9 - resolution: "string.prototype.trim@npm:1.2.9" - dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.23.0" - es-object-atoms: "npm:^1.0.0" - checksum: 10c0/dcef1a0fb61d255778155006b372dff8cc6c4394bc39869117e4241f41a2c52899c0d263ffc7738a1f9e61488c490b05c0427faa15151efad721e1a9fb2663c2 - languageName: node - linkType: hard - -"string.prototype.trimend@npm:^1.0.8": - version: 1.0.8 - resolution: "string.prototype.trimend@npm:1.0.8" - dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-object-atoms: "npm:^1.0.0" - checksum: 10c0/0a0b54c17c070551b38e756ae271865ac6cc5f60dabf2e7e343cceae7d9b02e1a1120a824e090e79da1b041a74464e8477e2da43e2775c85392be30a6f60963c - languageName: node - linkType: hard - -"string.prototype.trimstart@npm:^1.0.8": - version: 1.0.8 - resolution: "string.prototype.trimstart@npm:1.0.8" - dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-object-atoms: "npm:^1.0.0" - checksum: 10c0/d53af1899959e53c83b64a5fd120be93e067da740e7e75acb433849aa640782fb6c7d4cd5b84c954c84413745a3764df135a8afeb22908b86a835290788d8366 - languageName: node - linkType: hard - -"string_decoder@npm:^1.1.1": - version: 1.3.0 - resolution: "string_decoder@npm:1.3.0" - dependencies: - safe-buffer: "npm:~5.2.0" - checksum: 10c0/810614ddb030e271cd591935dcd5956b2410dd079d64ff92a1844d6b7588bf992b3e1b69b0f4d34a3e06e0bd73046ac646b5264c1987b20d0601f81ef35d731d - languageName: node - linkType: hard - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": - version: 6.0.1 - resolution: "strip-ansi@npm:6.0.1" - dependencies: - ansi-regex: "npm:^5.0.1" - checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 - languageName: node - linkType: hard - -"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": - version: 7.1.0 - resolution: "strip-ansi@npm:7.1.0" - dependencies: - ansi-regex: "npm:^6.0.1" - checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 - languageName: node - linkType: hard - -"strip-bom@npm:^3.0.0": - version: 3.0.0 - resolution: "strip-bom@npm:3.0.0" - checksum: 10c0/51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1 - languageName: node - linkType: hard - -"strip-bom@npm:^4.0.0": - version: 4.0.0 - resolution: "strip-bom@npm:4.0.0" - checksum: 10c0/26abad1172d6bc48985ab9a5f96c21e440f6e7e476686de49be813b5a59b3566dccb5c525b831ec54fe348283b47f3ffb8e080bc3f965fde12e84df23f6bb7ef - languageName: node - linkType: hard - -"strip-final-newline@npm:^2.0.0": - version: 2.0.0 - resolution: "strip-final-newline@npm:2.0.0" - checksum: 10c0/bddf8ccd47acd85c0e09ad7375409d81653f645fda13227a9d459642277c253d877b68f2e5e4d819fe75733b0e626bac7e954c04f3236f6d196f79c94fa4a96f - languageName: node - linkType: hard - -"strip-final-newline@npm:^3.0.0": - version: 3.0.0 - resolution: "strip-final-newline@npm:3.0.0" - checksum: 10c0/a771a17901427bac6293fd416db7577e2bc1c34a19d38351e9d5478c3c415f523f391003b42ed475f27e33a78233035df183525395f731d3bfb8cdcbd4da08ce - languageName: node - linkType: hard - -"strip-indent@npm:^3.0.0": - version: 3.0.0 - resolution: "strip-indent@npm:3.0.0" - dependencies: - min-indent: "npm:^1.0.0" - checksum: 10c0/ae0deaf41c8d1001c5d4fbe16cb553865c1863da4fae036683b474fa926af9fc121e155cb3fc57a68262b2ae7d5b8420aa752c97a6428c315d00efe2a3875679 - languageName: node - linkType: hard - -"strip-json-comments@npm:5.0.1": - version: 5.0.1 - resolution: "strip-json-comments@npm:5.0.1" - checksum: 10c0/c9d9d55a0167c57aa688df3aa20628cf6f46f0344038f189eaa9d159978e80b2bfa6da541a40d83f7bde8a3554596259bf6b70578b2172356536a0e3fa5a0982 - languageName: node - linkType: hard - -"strip-json-comments@npm:^3.1.1": - version: 3.1.1 - resolution: "strip-json-comments@npm:3.1.1" - checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd - languageName: node - linkType: hard - -"summary@npm:2.1.0": - version: 2.1.0 - resolution: "summary@npm:2.1.0" - checksum: 10c0/2743c1f940fb303c496ef1b085e654704a6c16872957b6b76648c34bd32c8f0b7a3c5ec4e0f8bfb71dcb8473e34d172fef31026b85562af589cf220aa901698d - languageName: node - linkType: hard - -"supports-color@npm:^5.3.0": - version: 5.5.0 - resolution: "supports-color@npm:5.5.0" - dependencies: - has-flag: "npm:^3.0.0" - checksum: 10c0/6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05 - languageName: node - linkType: hard - -"supports-color@npm:^7.1.0": - version: 7.2.0 - resolution: "supports-color@npm:7.2.0" - dependencies: - has-flag: "npm:^4.0.0" - checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 - languageName: node - linkType: hard - -"supports-color@npm:^8.0.0": - version: 8.1.1 - resolution: "supports-color@npm:8.1.1" - dependencies: - has-flag: "npm:^4.0.0" - checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89 - languageName: node - linkType: hard - -"supports-preserve-symlinks-flag@npm:^1.0.0": - version: 1.0.0 - resolution: "supports-preserve-symlinks-flag@npm:1.0.0" - checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 - languageName: node - linkType: hard - -"synckit@npm:^0.8.6": - version: 0.8.8 - resolution: "synckit@npm:0.8.8" - dependencies: - "@pkgr/core": "npm:^0.1.0" - tslib: "npm:^2.6.2" - checksum: 10c0/c3d3aa8e284f3f84f2f868b960c9f49239b364e35f6d20825a448449a3e9c8f49fe36cdd5196b30615682f007830d46f2ea354003954c7336723cb821e4b6519 - languageName: node - linkType: hard - -"tar@npm:^6.1.11, tar@npm:^6.1.2": - version: 6.2.1 - resolution: "tar@npm:6.2.1" - dependencies: - chownr: "npm:^2.0.0" - fs-minipass: "npm:^2.0.0" - minipass: "npm:^5.0.0" - minizlib: "npm:^2.1.1" - mkdirp: "npm:^1.0.3" - yallist: "npm:^4.0.0" - checksum: 10c0/a5eca3eb50bc11552d453488344e6507156b9193efd7635e98e867fab275d527af53d8866e2370cd09dfe74378a18111622ace35af6a608e5223a7d27fe99537 - languageName: node - linkType: hard - -"test-exclude@npm:^6.0.0": - version: 6.0.0 - resolution: "test-exclude@npm:6.0.0" - dependencies: - "@istanbuljs/schema": "npm:^0.1.2" - glob: "npm:^7.1.4" - minimatch: "npm:^3.0.4" - checksum: 10c0/019d33d81adff3f9f1bfcff18125fb2d3c65564f437d9be539270ee74b994986abb8260c7c2ce90e8f30162178b09dbbce33c6389273afac4f36069c48521f57 - languageName: node - linkType: hard - -"text-extensions@npm:^2.0.0": - version: 2.4.0 - resolution: "text-extensions@npm:2.4.0" - checksum: 10c0/6790e7ee72ad4d54f2e96c50a13e158bb57ce840dddc770e80960ed1550115c57bdc2cee45d5354d7b4f269636f5ca06aab4d6e0281556c841389aa837b23fcb - languageName: node - linkType: hard - -"text-table@npm:^0.2.0": - version: 0.2.0 - resolution: "text-table@npm:0.2.0" - checksum: 10c0/02805740c12851ea5982686810702e2f14369a5f4c5c40a836821e3eefc65ffeec3131ba324692a37608294b0fd8c1e55a2dd571ffed4909822787668ddbee5c - languageName: node - linkType: hard - -"through2@npm:^4.0.0": - version: 4.0.2 - resolution: "through2@npm:4.0.2" - dependencies: - readable-stream: "npm:3" - checksum: 10c0/3741564ae99990a4a79097fe7a4152c22348adc4faf2df9199a07a66c81ed2011da39f631e479fdc56483996a9d34a037ad64e76d79f18c782ab178ea9b6778c - languageName: node - linkType: hard - -"through@npm:>=2.2.7 <3": - version: 2.3.8 - resolution: "through@npm:2.3.8" - checksum: 10c0/4b09f3774099de0d4df26d95c5821a62faee32c7e96fb1f4ebd54a2d7c11c57fe88b0a0d49cf375de5fee5ae6bf4eb56dbbf29d07366864e2ee805349970d3cc - languageName: node - linkType: hard - -"tmpl@npm:1.0.5": - version: 1.0.5 - resolution: "tmpl@npm:1.0.5" - checksum: 10c0/f935537799c2d1922cb5d6d3805f594388f75338fe7a4a9dac41504dd539704ca4db45b883b52e7b0aa5b2fd5ddadb1452bf95cd23a69da2f793a843f9451cc9 - languageName: node - linkType: hard - -"to-fast-properties@npm:^2.0.0": - version: 2.0.0 - resolution: "to-fast-properties@npm:2.0.0" - checksum: 10c0/b214d21dbfb4bce3452b6244b336806ffea9c05297148d32ebb428d5c43ce7545bdfc65a1ceb58c9ef4376a65c0cb2854d645f33961658b3e3b4f84910ddcdd7 - languageName: node - linkType: hard - -"to-no-case@npm:^1.0.0": - version: 1.0.2 - resolution: "to-no-case@npm:1.0.2" - checksum: 10c0/c035b04e1042ed67ceb23dc5c7c20ccde11a83ab1d2b3947c17918472b5d26dd4ffdb4cf9464752e7707ab9f3af4a106f9b61244c724bc6810422acd5984da3d - languageName: node - linkType: hard - -"to-pascal-case@npm:^1.0.0": - version: 1.0.0 - resolution: "to-pascal-case@npm:1.0.0" - dependencies: - to-space-case: "npm:^1.0.0" - checksum: 10c0/e1a0b11c6f4d561318b3e01d91b7cdbd7d08ce2fb55850e85daf7beb8a5dc7add1d491c6580169b53727feb17afcc9bc45790b8a58a0b342a2287ae50354832a - languageName: node - linkType: hard - -"to-regex-range@npm:^5.0.1": - version: 5.0.1 - resolution: "to-regex-range@npm:5.0.1" - dependencies: - is-number: "npm:^7.0.0" - checksum: 10c0/487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892 - languageName: node - linkType: hard - -"to-space-case@npm:^1.0.0": - version: 1.0.0 - resolution: "to-space-case@npm:1.0.0" - dependencies: - to-no-case: "npm:^1.0.0" - checksum: 10c0/b99e1b5d0f3c90a8d47fa3b155d515027bd83a370740e82ee7cb064f86e3655f030f068bddcb8d18239e7408761b4376d89ab91e5ccdb17dc859d8fd4f570ac5 - languageName: node - linkType: hard - -"trim-newlines@npm:^3.0.0": - version: 3.0.1 - resolution: "trim-newlines@npm:3.0.1" - checksum: 10c0/03cfefde6c59ff57138412b8c6be922ecc5aec30694d784f2a65ef8dcbd47faef580b7de0c949345abdc56ec4b4abf64dd1e5aea619b200316e471a3dd5bf1f6 - languageName: node - linkType: hard - -"ts-api-utils@npm:^1.3.0": - version: 1.3.0 - resolution: "ts-api-utils@npm:1.3.0" - peerDependencies: - typescript: ">=4.2.0" - checksum: 10c0/f54a0ba9ed56ce66baea90a3fa087a484002e807f28a8ccb2d070c75e76bde64bd0f6dce98b3802834156306050871b67eec325cb4e918015a360a3f0868c77c - languageName: node - linkType: hard - -"ts-jest@npm:^29.1.2": - version: 29.1.3 - resolution: "ts-jest@npm:29.1.3" - dependencies: - bs-logger: "npm:0.x" - fast-json-stable-stringify: "npm:2.x" - jest-util: "npm:^29.0.0" - json5: "npm:^2.2.3" - lodash.memoize: "npm:4.x" - make-error: "npm:1.x" - semver: "npm:^7.5.3" - yargs-parser: "npm:^21.0.1" - peerDependencies: - "@babel/core": ">=7.0.0-beta.0 <8" - "@jest/transform": ^29.0.0 - "@jest/types": ^29.0.0 - babel-jest: ^29.0.0 - jest: ^29.0.0 - typescript: ">=4.3 <6" - peerDependenciesMeta: - "@babel/core": - optional: true - "@jest/transform": - optional: true - "@jest/types": - optional: true - babel-jest: - optional: true - esbuild: - optional: true - bin: - ts-jest: cli.js - checksum: 10c0/7810882f53c7d722dfcd9fbe65c1c80258ec4bd216a21448f27759f2f06d57a2f3f2472e1efe4a5e29fd4064dce07a93c8dbf3b13e77dac0e32419a30756f8f5 - languageName: node - linkType: hard - -"ts-node@npm:10.9.2": - version: 10.9.2 - resolution: "ts-node@npm:10.9.2" - dependencies: - "@cspotcode/source-map-support": "npm:^0.8.0" - "@tsconfig/node10": "npm:^1.0.7" - "@tsconfig/node12": "npm:^1.0.7" - "@tsconfig/node14": "npm:^1.0.0" - "@tsconfig/node16": "npm:^1.0.2" - acorn: "npm:^8.4.1" - acorn-walk: "npm:^8.1.1" - arg: "npm:^4.1.0" - create-require: "npm:^1.1.0" - diff: "npm:^4.0.1" - make-error: "npm:^1.1.1" - v8-compile-cache-lib: "npm:^3.0.1" - yn: "npm:3.1.1" - peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" - peerDependenciesMeta: - "@swc/core": - optional: true - "@swc/wasm": - optional: true - bin: - ts-node: dist/bin.js - ts-node-cwd: dist/bin-cwd.js - ts-node-esm: dist/bin-esm.js - ts-node-script: dist/bin-script.js - ts-node-transpile-only: dist/bin-transpile.js - ts-script: dist/bin-script-deprecated.js - checksum: 10c0/5f29938489f96982a25ba650b64218e83a3357d76f7bede80195c65ab44ad279c8357264639b7abdd5d7e75fc269a83daa0e9c62fd8637a3def67254ecc9ddc2 - languageName: node - linkType: hard - -"tslib@npm:^2.6.2": - version: 2.6.2 - resolution: "tslib@npm:2.6.2" - checksum: 10c0/e03a8a4271152c8b26604ed45535954c0a45296e32445b4b87f8a5abdb2421f40b59b4ca437c4346af0f28179780d604094eb64546bee2019d903d01c6c19bdb - languageName: node - linkType: hard - -"tsx@npm:^4.7.1": - version: 4.10.5 - resolution: "tsx@npm:4.10.5" - dependencies: - esbuild: "npm:~0.20.2" - fsevents: "npm:~2.3.3" - get-tsconfig: "npm:^4.7.5" - dependenciesMeta: - fsevents: - optional: true - bin: - tsx: dist/cli.mjs - checksum: 10c0/a9ca576417c52010b12b7ab14023c1dfee458220bf4c11d528f9d462ce739c0a10aff967c5b28092032fc56a5639f043d798bfb00df469e3b263e93ab2c963b1 - languageName: node - linkType: hard - -"type-check@npm:^0.4.0, type-check@npm:~0.4.0": - version: 0.4.0 - resolution: "type-check@npm:0.4.0" - dependencies: - prelude-ls: "npm:^1.2.1" - checksum: 10c0/7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58 - languageName: node - linkType: hard - -"type-detect@npm:4.0.8": - version: 4.0.8 - resolution: "type-detect@npm:4.0.8" - checksum: 10c0/8fb9a51d3f365a7de84ab7f73b653534b61b622aa6800aecdb0f1095a4a646d3f5eb295322127b6573db7982afcd40ab492d038cf825a42093a58b1e1353e0bd - languageName: node - linkType: hard - -"type-fest@npm:^0.18.0": - version: 0.18.1 - resolution: "type-fest@npm:0.18.1" - checksum: 10c0/303f5ecf40d03e1d5b635ce7660de3b33c18ed8ebc65d64920c02974d9e684c72483c23f9084587e9dd6466a2ece1da42ddc95b412a461794dd30baca95e2bac - languageName: node - linkType: hard - -"type-fest@npm:^0.20.2": - version: 0.20.2 - resolution: "type-fest@npm:0.20.2" - checksum: 10c0/dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3 - languageName: node - linkType: hard - -"type-fest@npm:^0.21.3": - version: 0.21.3 - resolution: "type-fest@npm:0.21.3" - checksum: 10c0/902bd57bfa30d51d4779b641c2bc403cdf1371fb9c91d3c058b0133694fcfdb817aef07a47f40faf79039eecbaa39ee9d3c532deff244f3a19ce68cea71a61e8 - languageName: node - linkType: hard - -"type-fest@npm:^0.6.0": - version: 0.6.0 - resolution: "type-fest@npm:0.6.0" - checksum: 10c0/0c585c26416fce9ecb5691873a1301b5aff54673c7999b6f925691ed01f5b9232db408cdbb0bd003d19f5ae284322523f44092d1f81ca0a48f11f7cf0be8cd38 - languageName: node - linkType: hard - -"type-fest@npm:^0.8.1": - version: 0.8.1 - resolution: "type-fest@npm:0.8.1" - checksum: 10c0/dffbb99329da2aa840f506d376c863bd55f5636f4741ad6e65e82f5ce47e6914108f44f340a0b74009b0cb5d09d6752ae83203e53e98b1192cf80ecee5651636 - languageName: node - linkType: hard - -"typed-array-buffer@npm:^1.0.2": - version: 1.0.2 - resolution: "typed-array-buffer@npm:1.0.2" - dependencies: - call-bind: "npm:^1.0.7" - es-errors: "npm:^1.3.0" - is-typed-array: "npm:^1.1.13" - checksum: 10c0/9e043eb38e1b4df4ddf9dde1aa64919ae8bb909571c1cc4490ba777d55d23a0c74c7d73afcdd29ec98616d91bb3ae0f705fad4421ea147e1daf9528200b562da - languageName: node - linkType: hard - -"typed-array-byte-length@npm:^1.0.1": - version: 1.0.1 - resolution: "typed-array-byte-length@npm:1.0.1" - dependencies: - call-bind: "npm:^1.0.7" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-proto: "npm:^1.0.3" - is-typed-array: "npm:^1.1.13" - checksum: 10c0/fcebeffb2436c9f355e91bd19e2368273b88c11d1acc0948a2a306792f1ab672bce4cfe524ab9f51a0505c9d7cd1c98eff4235c4f6bfef6a198f6cfc4ff3d4f3 - languageName: node - linkType: hard - -"typed-array-byte-offset@npm:^1.0.2": - version: 1.0.2 - resolution: "typed-array-byte-offset@npm:1.0.2" - dependencies: - available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.7" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-proto: "npm:^1.0.3" - is-typed-array: "npm:^1.1.13" - checksum: 10c0/d2628bc739732072e39269389a758025f75339de2ed40c4f91357023c5512d237f255b633e3106c461ced41907c1bf9a533c7e8578066b0163690ca8bc61b22f - languageName: node - linkType: hard - -"typed-array-length@npm:^1.0.6": - version: 1.0.6 - resolution: "typed-array-length@npm:1.0.6" - dependencies: - call-bind: "npm:^1.0.7" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-proto: "npm:^1.0.3" - is-typed-array: "npm:^1.1.13" - possible-typed-array-names: "npm:^1.0.0" - checksum: 10c0/74253d7dc488eb28b6b2711cf31f5a9dcefc9c41b0681fd1c178ed0a1681b4468581a3626d39cd4df7aee3d3927ab62be06aa9ca74e5baf81827f61641445b77 - languageName: node - linkType: hard - -"typescript@npm:^5.3.3": - version: 5.4.5 - resolution: "typescript@npm:5.4.5" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/2954022ada340fd3d6a9e2b8e534f65d57c92d5f3989a263754a78aba549f7e6529acc1921913560a4b816c46dce7df4a4d29f9f11a3dc0d4213bb76d043251e - languageName: node - linkType: hard - -"typescript@patch:typescript@npm%3A^5.3.3#optional!builtin": - version: 5.4.5 - resolution: "typescript@patch:typescript@npm%3A5.4.5#optional!builtin::version=5.4.5&hash=5adc0c" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/db2ad2a16ca829f50427eeb1da155e7a45e598eec7b086d8b4e8ba44e5a235f758e606d681c66992230d3fc3b8995865e5fd0b22a2c95486d0b3200f83072ec9 - languageName: node - linkType: hard - -"unbox-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "unbox-primitive@npm:1.0.2" - dependencies: - call-bind: "npm:^1.0.2" - has-bigints: "npm:^1.0.2" - has-symbols: "npm:^1.0.3" - which-boxed-primitive: "npm:^1.0.2" - checksum: 10c0/81ca2e81134167cc8f75fa79fbcc8a94379d6c61de67090986a2273850989dd3bae8440c163121b77434b68263e34787a675cbdcb34bb2f764c6b9c843a11b66 - languageName: node - linkType: hard - -"undici-types@npm:~5.26.4": - version: 5.26.5 - resolution: "undici-types@npm:5.26.5" - checksum: 10c0/bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501 - languageName: node - linkType: hard - -"unescape-js@npm:^1.0.5": - version: 1.1.4 - resolution: "unescape-js@npm:1.1.4" - dependencies: - string.fromcodepoint: "npm:^0.2.1" - checksum: 10c0/4f7cda5c524cb4392d482eba11762dbc43ff8cd0d0d88c4deecdacb7ec04d9162595406f66c5fbe9a6a565aabf7f2f1cc1889d44d805b1e8326deb7b3b279484 - languageName: node - linkType: hard - -"unicode-canonical-property-names-ecmascript@npm:^2.0.0": - version: 2.0.0 - resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.0" - checksum: 10c0/0fe812641bcfa3ae433025178a64afb5d9afebc21a922dafa7cba971deebb5e4a37350423890750132a85c936c290fb988146d0b1bd86838ad4897f4fc5bd0de - languageName: node - linkType: hard - -"unicode-match-property-ecmascript@npm:^2.0.0": - version: 2.0.0 - resolution: "unicode-match-property-ecmascript@npm:2.0.0" - dependencies: - unicode-canonical-property-names-ecmascript: "npm:^2.0.0" - unicode-property-aliases-ecmascript: "npm:^2.0.0" - checksum: 10c0/4d05252cecaf5c8e36d78dc5332e03b334c6242faf7cf16b3658525441386c0a03b5f603d42cbec0f09bb63b9fd25c9b3b09667aee75463cac3efadae2cd17ec - languageName: node - linkType: hard - -"unicode-match-property-value-ecmascript@npm:^2.1.0": - version: 2.1.0 - resolution: "unicode-match-property-value-ecmascript@npm:2.1.0" - checksum: 10c0/f5b9499b9e0ffdc6027b744d528f17ec27dd7c15da03254ed06851feec47e0531f20d410910c8a49af4a6a190f4978413794c8d75ce112950b56d583b5d5c7f2 - languageName: node - linkType: hard - -"unicode-property-aliases-ecmascript@npm:^2.0.0": - version: 2.1.0 - resolution: "unicode-property-aliases-ecmascript@npm:2.1.0" - checksum: 10c0/50ded3f8c963c7785e48c510a3b7c6bc4e08a579551489aa0349680a35b1ceceec122e33b2b6c1b579d0be2250f34bb163ac35f5f8695fe10bbc67fb757f0af8 - languageName: node - linkType: hard - -"unique-filename@npm:^3.0.0": - version: 3.0.0 - resolution: "unique-filename@npm:3.0.0" - dependencies: - unique-slug: "npm:^4.0.0" - checksum: 10c0/6363e40b2fa758eb5ec5e21b3c7fb83e5da8dcfbd866cc0c199d5534c42f03b9ea9ab069769cc388e1d7ab93b4eeef28ef506ab5f18d910ef29617715101884f - languageName: node - linkType: hard - -"unique-slug@npm:^4.0.0": - version: 4.0.0 - resolution: "unique-slug@npm:4.0.0" - dependencies: - imurmurhash: "npm:^0.1.4" - checksum: 10c0/cb811d9d54eb5821b81b18205750be84cb015c20a4a44280794e915f5a0a70223ce39066781a354e872df3572e8155c228f43ff0cce94c7cbf4da2cc7cbdd635 - languageName: node - linkType: hard - -"update-browserslist-db@npm:^1.0.13": - version: 1.0.16 - resolution: "update-browserslist-db@npm:1.0.16" - dependencies: - escalade: "npm:^3.1.2" - picocolors: "npm:^1.0.1" - peerDependencies: - browserslist: ">= 4.21.0" - bin: - update-browserslist-db: cli.js - checksum: 10c0/5995399fc202adbb51567e4810e146cdf7af630a92cc969365a099150cb00597e425cc14987ca7080b09a4d0cfd2a3de53fbe72eebff171aed7f9bb81f9bf405 - languageName: node - linkType: hard - -"uri-js@npm:^4.2.2, uri-js@npm:^4.4.1": - version: 4.4.1 - resolution: "uri-js@npm:4.4.1" - dependencies: - punycode: "npm:^2.1.0" - checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c - languageName: node - linkType: hard - -"util-deprecate@npm:^1.0.1": - version: 1.0.2 - resolution: "util-deprecate@npm:1.0.2" - checksum: 10c0/41a5bdd214df2f6c3ecf8622745e4a366c4adced864bc3c833739791aeeeb1838119af7daed4ba36428114b5c67dcda034a79c882e97e43c03e66a4dd7389942 - languageName: node - linkType: hard - -"uuid@npm:^8.3.2": - version: 8.3.2 - resolution: "uuid@npm:8.3.2" - bin: - uuid: dist/bin/uuid - checksum: 10c0/bcbb807a917d374a49f475fae2e87fdca7da5e5530820ef53f65ba1d12131bd81a92ecf259cc7ce317cbe0f289e7d79fdfebcef9bfa3087c8c8a2fa304c9be54 - languageName: node - linkType: hard - -"v8-compile-cache-lib@npm:^3.0.1": - version: 3.0.1 - resolution: "v8-compile-cache-lib@npm:3.0.1" - checksum: 10c0/bdc36fb8095d3b41df197f5fb6f11e3a26adf4059df3213e3baa93810d8f0cc76f9a74aaefc18b73e91fe7e19154ed6f134eda6fded2e0f1c8d2272ed2d2d391 - languageName: node - linkType: hard - -"v8-to-istanbul@npm:^9.0.1": - version: 9.2.0 - resolution: "v8-to-istanbul@npm:9.2.0" - dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.12" - "@types/istanbul-lib-coverage": "npm:^2.0.1" - convert-source-map: "npm:^2.0.0" - checksum: 10c0/e691ba4dd0dea4a884e52c37dbda30cce6f9eeafe9b26721e449429c6bb0f4b6d1e33fabe7711d0f67f7a34c3bfd56c873f7375bba0b1534e6a2843ce99550e5 - languageName: node - linkType: hard - -"validate-npm-package-license@npm:^3.0.1": - version: 3.0.4 - resolution: "validate-npm-package-license@npm:3.0.4" - dependencies: - spdx-correct: "npm:^3.0.0" - spdx-expression-parse: "npm:^3.0.0" - checksum: 10c0/7b91e455a8de9a0beaa9fe961e536b677da7f48c9a493edf4d4d4a87fd80a7a10267d438723364e432c2fcd00b5650b5378275cded362383ef570276e6312f4f - languageName: node - linkType: hard - -"vlq@npm:^0.2.1": - version: 0.2.3 - resolution: "vlq@npm:0.2.3" - checksum: 10c0/d1557b404353ca75c7affaaf403d245a3273a7d1c6b3380ed7f04ae3f080e4658f41ac700d6f48acb3cd4875fe7bc7da4924b3572cd5584a5de83b35b1de5e12 - languageName: node - linkType: hard - -"vscode-languageserver-textdocument@npm:^1.0.11": - version: 1.0.11 - resolution: "vscode-languageserver-textdocument@npm:1.0.11" - checksum: 10c0/1996a38e24571e05aa21dd4f46e0a6849e22301c9a66996762e77d9c6df3622de0bd31cd5742a0c0c47fb9dfd00b310ad08c44d08241873ea571edacd5238da6 - languageName: node - linkType: hard - -"vscode-uri@npm:^3.0.8": - version: 3.0.8 - resolution: "vscode-uri@npm:3.0.8" - checksum: 10c0/f7f217f526bf109589969fe6e66b71e70b937de1385a1d7bb577ca3ee7c5e820d3856a86e9ff2fa9b7a0bc56a3dd8c3a9a557d3fedd7df414bc618d5e6b567f9 - languageName: node - linkType: hard - -"walker@npm:^1.0.8": - version: 1.0.8 - resolution: "walker@npm:1.0.8" - dependencies: - makeerror: "npm:1.0.12" - checksum: 10c0/a17e037bccd3ca8a25a80cb850903facdfed0de4864bd8728f1782370715d679fa72e0a0f5da7c1c1379365159901e5935f35be531229da53bbfc0efdabdb48e - languageName: node - linkType: hard - -"wcwidth@npm:^1.0.1": - version: 1.0.1 - resolution: "wcwidth@npm:1.0.1" - dependencies: - defaults: "npm:^1.0.3" - checksum: 10c0/5b61ca583a95e2dd85d7078400190efd452e05751a64accb8c06ce4db65d7e0b0cde9917d705e826a2e05cc2548f61efde115ffa374c3e436d04be45c889e5b4 - languageName: node - linkType: hard - -"web-streams-polyfill@npm:^3.0.3": - version: 3.3.3 - resolution: "web-streams-polyfill@npm:3.3.3" - checksum: 10c0/64e855c47f6c8330b5436147db1c75cb7e7474d924166800e8e2aab5eb6c76aac4981a84261dd2982b3e754490900b99791c80ae1407a9fa0dcff74f82ea3a7f - languageName: node - linkType: hard - -"which-boxed-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "which-boxed-primitive@npm:1.0.2" - dependencies: - is-bigint: "npm:^1.0.1" - is-boolean-object: "npm:^1.1.0" - is-number-object: "npm:^1.0.4" - is-string: "npm:^1.0.5" - is-symbol: "npm:^1.0.3" - checksum: 10c0/0a62a03c00c91dd4fb1035b2f0733c341d805753b027eebd3a304b9cb70e8ce33e25317add2fe9b5fea6f53a175c0633ae701ff812e604410ddd049777cd435e - languageName: node - linkType: hard - -"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15": - version: 1.1.15 - resolution: "which-typed-array@npm:1.1.15" - dependencies: - available-typed-arrays: "npm:^1.0.7" - call-bind: "npm:^1.0.7" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-tostringtag: "npm:^1.0.2" - checksum: 10c0/4465d5348c044032032251be54d8988270e69c6b7154f8fcb2a47ff706fe36f7624b3a24246b8d9089435a8f4ec48c1c1025c5d6b499456b9e5eff4f48212983 - languageName: node - linkType: hard - -"which@npm:^1.2.9": - version: 1.3.1 - resolution: "which@npm:1.3.1" - dependencies: - isexe: "npm:^2.0.0" - bin: - which: ./bin/which - checksum: 10c0/e945a8b6bbf6821aaaef7f6e0c309d4b615ef35699576d5489b4261da9539f70393c6b2ce700ee4321c18f914ebe5644bc4631b15466ffbaad37d83151f6af59 - languageName: node - linkType: hard - -"which@npm:^2.0.1": - version: 2.0.2 - resolution: "which@npm:2.0.2" - dependencies: - isexe: "npm:^2.0.0" - bin: - node-which: ./bin/node-which - checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f - languageName: node - linkType: hard - -"which@npm:^4.0.0": - version: 4.0.0 - resolution: "which@npm:4.0.0" - dependencies: - isexe: "npm:^3.1.1" - bin: - node-which: bin/which.js - checksum: 10c0/449fa5c44ed120ccecfe18c433296a4978a7583bf2391c50abce13f76878d2476defde04d0f79db8165bdf432853c1f8389d0485ca6e8ebce3bbcded513d5e6a - languageName: node - linkType: hard - -"word-wrap@npm:^1.2.5": - version: 1.2.5 - resolution: "word-wrap@npm:1.2.5" - checksum: 10c0/e0e4a1ca27599c92a6ca4c32260e8a92e8a44f4ef6ef93f803f8ed823f486e0889fc0b93be4db59c8d51b3064951d25e43d434e95dc8c960cc3a63d65d00ba20 - languageName: node - linkType: hard - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": - version: 7.0.0 - resolution: "wrap-ansi@npm:7.0.0" - dependencies: - ansi-styles: "npm:^4.0.0" - string-width: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" - checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da - languageName: node - linkType: hard - -"wrap-ansi@npm:^8.1.0": - version: 8.1.0 - resolution: "wrap-ansi@npm:8.1.0" - dependencies: - ansi-styles: "npm:^6.1.0" - string-width: "npm:^5.0.1" - strip-ansi: "npm:^7.0.1" - checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 - languageName: node - linkType: hard - -"wrap-ansi@npm:^9.0.0": - version: 9.0.0 - resolution: "wrap-ansi@npm:9.0.0" - dependencies: - ansi-styles: "npm:^6.2.1" - string-width: "npm:^7.0.0" - strip-ansi: "npm:^7.1.0" - checksum: 10c0/a139b818da9573677548dd463bd626a5a5286271211eb6e4e82f34a4f643191d74e6d4a9bb0a3c26ec90e6f904f679e0569674ac099ea12378a8b98e20706066 - languageName: node - linkType: hard - -"wrappy@npm:1": - version: 1.0.2 - resolution: "wrappy@npm:1.0.2" - checksum: 10c0/56fece1a4018c6a6c8e28fbc88c87e0fbf4ea8fd64fc6c63b18f4acc4bd13e0ad2515189786dd2c30d3eec9663d70f4ecf699330002f8ccb547e4a18231fc9f0 - languageName: node - linkType: hard - -"write-file-atomic@npm:^4.0.2": - version: 4.0.2 - resolution: "write-file-atomic@npm:4.0.2" - dependencies: - imurmurhash: "npm:^0.1.4" - signal-exit: "npm:^3.0.7" - checksum: 10c0/a2c282c95ef5d8e1c27b335ae897b5eca00e85590d92a3fd69a437919b7b93ff36a69ea04145da55829d2164e724bc62202cdb5f4b208b425aba0807889375c7 - languageName: node - linkType: hard - -"ws@npm:7.4.6": - version: 7.4.6 - resolution: "ws@npm:7.4.6" - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - checksum: 10c0/4b44b59bbc0549c852fb2f0cdb48e40e122a1b6078aeed3d65557cbeb7d37dda7a4f0027afba2e6a7a695de17701226d02b23bd15c97b0837808c16345c62f8e - languageName: node - linkType: hard - -"xdg-basedir@npm:^5.1.0": - version: 5.1.0 - resolution: "xdg-basedir@npm:5.1.0" - checksum: 10c0/c88efabc71ffd996ba9ad8923a8cc1c7c020a03e2c59f0ffa72e06be9e724ad2a0fccef488757bc6ed3d8849d753dd25082d1035d95cb179e79eae4d034d0b80 - languageName: node - linkType: hard - -"xml@npm:^1.0.1": - version: 1.0.1 - resolution: "xml@npm:1.0.1" - checksum: 10c0/04bcc9b8b5e7b49392072fbd9c6b0f0958bd8e8f8606fee460318e43991349a68cbc5384038d179ff15aef7d222285f69ca0f067f53d071084eb14c7fdb30411 - languageName: node - linkType: hard - -"y18n@npm:^5.0.5": - version: 5.0.8 - resolution: "y18n@npm:5.0.8" - checksum: 10c0/4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249 - languageName: node - linkType: hard - -"yallist@npm:^3.0.2": - version: 3.1.1 - resolution: "yallist@npm:3.1.1" - checksum: 10c0/c66a5c46bc89af1625476f7f0f2ec3653c1a1791d2f9407cfb4c2ba812a1e1c9941416d71ba9719876530e3340a99925f697142989371b72d93b9ee628afd8c1 - languageName: node - linkType: hard - -"yallist@npm:^4.0.0": - version: 4.0.0 - resolution: "yallist@npm:4.0.0" - checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a - 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" - bin: - yaml: bin.mjs - checksum: 10c0/280ddb2e43ffa7d91a95738e80c8f33e860749cdc25aa6d9e4d350a28e174fd7e494e4aa023108aaee41388e451e3dc1292261d8f022aabcf90df9c63d647549 - languageName: node - linkType: hard - -"yargs-parser@npm:^20.2.3": - version: 20.2.9 - resolution: "yargs-parser@npm:20.2.9" - checksum: 10c0/0685a8e58bbfb57fab6aefe03c6da904a59769bd803a722bb098bd5b0f29d274a1357762c7258fb487512811b8063fb5d2824a3415a0a4540598335b3b086c72 - languageName: node - linkType: hard - -"yargs-parser@npm:^21.0.1, yargs-parser@npm:^21.1.1": - version: 21.1.1 - resolution: "yargs-parser@npm:21.1.1" - checksum: 10c0/f84b5e48169479d2f402239c59f084cfd1c3acc197a05c59b98bab067452e6b3ea46d4dd8ba2985ba7b3d32a343d77df0debd6b343e5dae3da2aab2cdf5886b2 - languageName: node - linkType: hard - -"yargs@npm:^17.0.0, yargs@npm:^17.3.1": - version: 17.7.2 - resolution: "yargs@npm:17.7.2" - dependencies: - cliui: "npm:^8.0.1" - escalade: "npm:^3.1.1" - get-caller-file: "npm:^2.0.5" - require-directory: "npm:^2.1.1" - string-width: "npm:^4.2.3" - y18n: "npm:^5.0.5" - yargs-parser: "npm:^21.1.1" - checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05 - languageName: node - linkType: hard - -"yn@npm:3.1.1": - version: 3.1.1 - resolution: "yn@npm:3.1.1" - checksum: 10c0/0732468dd7622ed8a274f640f191f3eaf1f39d5349a1b72836df484998d7d9807fbea094e2f5486d6b0cd2414aad5775972df0e68f8604db89a239f0f4bf7443 - languageName: node - linkType: hard - -"yocto-queue@npm:^0.1.0": - version: 0.1.0 - resolution: "yocto-queue@npm:0.1.0" - checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f - languageName: node - linkType: hard - -"zod-validation-error@npm:^3.0.3": - version: 3.3.0 - resolution: "zod-validation-error@npm:3.3.0" - peerDependencies: - zod: ^3.18.0 - checksum: 10c0/a233dca6dc9a2237aa7b677cc8ce022c2b6f90894fd4d1e2c7b239d2aad38f36f3b84bf7f7cfaff5bf97fce31e1010d2736ca1ec539e0e8cb8bb9d05977911a2 - languageName: node - linkType: hard - -"zod@npm:^3.22.4": - version: 3.23.8 - resolution: "zod@npm:3.23.8" - checksum: 10c0/8f14c87d6b1b53c944c25ce7a28616896319d95bc46a9660fe441adc0ed0a81253b02b5abdaeffedbeb23bdd25a0bf1c29d2c12dd919aef6447652dd295e3e69 - languageName: node - linkType: hard +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" + integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== + dependencies: + "@babel/highlight" "^7.24.7" + picocolors "^1.0.0" + +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.7.tgz#d23bbea508c3883ba8251fb4164982c36ea577ed" + integrity sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw== + +"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9", "@babel/core@^7.24.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.7.tgz#b676450141e0b52a3d43bc91da86aa608f950ac4" + integrity sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.24.7" + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helpers" "^7.24.7" + "@babel/parser" "^7.24.7" + "@babel/template" "^7.24.7" + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.24.7", "@babel/generator@^7.7.2": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.7.tgz#1654d01de20ad66b4b4d99c135471bc654c55e6d" + integrity sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA== + dependencies: + "@babel/types" "^7.24.7" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" + integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz#37d66feb012024f2422b762b9b2a7cfe27c7fba3" + integrity sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz#4eb6c4a80d6ffeac25ab8cd9a21b5dfa48d503a9" + integrity sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg== + dependencies: + "@babel/compat-data" "^7.24.7" + "@babel/helper-validator-option" "^7.24.7" + browserslist "^4.22.2" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz#2eaed36b3a1c11c53bdf80d53838b293c52f5b3b" + integrity sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.7" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/helper-replace-supers" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz#be4f435a80dc2b053c76eeb4b7d16dd22cfc89da" + integrity sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + regexpu-core "^5.3.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2": + version "0.6.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" + integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + +"@babel/helper-environment-visitor@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz#4b31ba9551d1f90781ba83491dd59cf9b269f7d9" + integrity sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-function-name@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz#75f1e1725742f39ac6584ee0b16d94513da38dd2" + integrity sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA== + dependencies: + "@babel/template" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-hoist-variables@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz#b4ede1cde2fd89436397f30dc9376ee06b0f25ee" + integrity sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-member-expression-to-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz#67613d068615a70e4ed5101099affc7a41c5225f" + integrity sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-module-imports@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" + integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-module-transforms@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz#31b6c9a2930679498db65b685b1698bfd6c7daf8" + integrity sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-simple-access" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + +"@babel/helper-optimise-call-expression@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" + integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz#98c84fe6fe3d0d3ae7bfc3a5e166a46844feb2a0" + integrity sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg== + +"@babel/helper-remap-async-to-generator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz#b3f0f203628522713849d49403f1a414468be4c7" + integrity sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-wrap-function" "^7.24.7" + +"@babel/helper-replace-supers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz#f933b7eed81a1c0265740edc91491ce51250f765" + integrity sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.7" + "@babel/helper-optimise-call-expression" "^7.24.7" + +"@babel/helper-simple-access@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" + integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-skip-transparent-expression-wrappers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" + integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-split-export-declaration@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz#83949436890e07fa3d6873c61a96e3bbf692d856" + integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-string-parser@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz#4d2d0f14820ede3b9807ea5fc36dfc8cd7da07f2" + integrity sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg== + +"@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + +"@babel/helper-validator-option@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz#24c3bb77c7a425d1742eec8fb433b5a1b38e62f6" + integrity sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw== + +"@babel/helper-wrap-function@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz#52d893af7e42edca7c6d2c6764549826336aae1f" + integrity sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw== + dependencies: + "@babel/helper-function-name" "^7.24.7" + "@babel/template" "^7.24.7" + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helpers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.7.tgz#aa2ccda29f62185acb5d42fb4a3a1b1082107416" + integrity sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg== + dependencies: + "@babel/template" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/highlight@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.7.tgz#9a5226f92f0c5c8ead550b750f5608e766c8ce85" + integrity sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw== + +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz#fd059fd27b184ea2b4c7e646868a9a381bbc3055" + integrity sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz#468096ca44bbcbe8fcc570574e12eb1950e18107" + integrity sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz#e4eabdd5109acc399b38d7999b2ef66fc2022f89" + integrity sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-transform-optional-chaining" "^7.24.7" + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz#71b21bb0286d5810e63a1538aa901c58e87375ec" + integrity sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-import-assertions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz#2a0b406b5871a20a841240586b1300ce2088a778" + integrity sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-import-attributes@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz#b4f9ea95a79e6912480c4b626739f86a076624ca" + integrity sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.24.7", "@babel/plugin-syntax-jsx@^7.7.2": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz#39a1fa4a7e3d3d7f34e2acc6be585b718d30e02d" + integrity sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.24.7", "@babel/plugin-syntax-typescript@^7.7.2": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz#58d458271b4d3b6bb27ee6ac9525acbb259bad1c" + integrity sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz#4f6886c11e423bd69f3ce51dbf42424a5f275514" + integrity sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-async-generator-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz#7330a5c50e05181ca52351b8fd01642000c96cfd" + integrity sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-remap-async-to-generator" "^7.24.7" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-transform-async-to-generator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz#72a3af6c451d575842a7e9b5a02863414355bdcc" + integrity sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-remap-async-to-generator" "^7.24.7" + +"@babel/plugin-transform-block-scoped-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz#a4251d98ea0c0f399dafe1a35801eaba455bbf1f" + integrity sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-block-scoping@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz#42063e4deb850c7bd7c55e626bf4e7ab48e6ce02" + integrity sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-class-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz#256879467b57b0b68c7ddfc5b76584f398cd6834" + integrity sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-class-static-block@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz#c82027ebb7010bc33c116d4b5044fbbf8c05484d" + integrity sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz#4ae6ef43a12492134138c1e45913f7c46c41b4bf" + integrity sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-replace-supers" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz#4cab3214e80bc71fae3853238d13d097b004c707" + integrity sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/template" "^7.24.7" + +"@babel/plugin-transform-destructuring@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz#a097f25292defb6e6cc16d6333a4cfc1e3c72d9e" + integrity sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-dotall-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz#5f8bf8a680f2116a7207e16288a5f974ad47a7a0" + integrity sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-duplicate-keys@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz#dd20102897c9a2324e5adfffb67ff3610359a8ee" + integrity sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-dynamic-import@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz#4d8b95e3bae2b037673091aa09cd33fecd6419f4" + integrity sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz#b629ee22645f412024297d5245bce425c31f9b0d" + integrity sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-export-namespace-from@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz#176d52d8d8ed516aeae7013ee9556d540c53f197" + integrity sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-transform-for-of@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz#f25b33f72df1d8be76399e1b8f3f9d366eb5bc70" + integrity sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + +"@babel/plugin-transform-function-name@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz#6d8601fbffe665c894440ab4470bc721dd9131d6" + integrity sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w== + dependencies: + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-json-strings@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz#f3e9c37c0a373fee86e36880d45b3664cedaf73a" + integrity sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz#36b505c1e655151a9d7607799a9988fc5467d06c" + integrity sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-logical-assignment-operators@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz#a58fb6eda16c9dc8f9ff1c7b1ba6deb7f4694cb0" + integrity sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz#3b4454fb0e302e18ba4945ba3246acb1248315df" + integrity sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-modules-amd@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz#65090ed493c4a834976a3ca1cde776e6ccff32d7" + integrity sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg== + dependencies: + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-modules-commonjs@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz#9fd5f7fdadee9085886b183f1ad13d1ab260f4ab" + integrity sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ== + dependencies: + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-simple-access" "^7.24.7" + +"@babel/plugin-transform-modules-systemjs@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz#f8012316c5098f6e8dee6ecd58e2bc6f003d0ce7" + integrity sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw== + dependencies: + "@babel/helper-hoist-variables" "^7.24.7" + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + +"@babel/plugin-transform-modules-umd@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz#edd9f43ec549099620df7df24e7ba13b5c76efc8" + integrity sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A== + dependencies: + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz#9042e9b856bc6b3688c0c2e4060e9e10b1460923" + integrity sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-new-target@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz#31ff54c4e0555cc549d5816e4ab39241dfb6ab00" + integrity sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz#1de4534c590af9596f53d67f52a92f12db984120" + integrity sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz#bea62b538c80605d8a0fac9b40f48e97efa7de63" + integrity sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz#d13a2b93435aeb8a197e115221cab266ba6e55d6" + integrity sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q== + dependencies: + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.24.7" + +"@babel/plugin-transform-object-super@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz#66eeaff7830bba945dd8989b632a40c04ed625be" + integrity sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-replace-supers" "^7.24.7" + +"@babel/plugin-transform-optional-catch-binding@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz#00eabd883d0dd6a60c1c557548785919b6e717b4" + integrity sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz#b8f6848a80cf2da98a8a204429bec04756c6d454" + integrity sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz#5881f0ae21018400e320fc7eb817e529d1254b68" + integrity sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-private-methods@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz#e6318746b2ae70a59d023d5cc1344a2ba7a75f5e" + integrity sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-private-property-in-object@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz#4eec6bc701288c1fab5f72e6a4bbc9d67faca061" + integrity sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz#f0d2ed8380dfbed949c42d4d790266525d63bbdc" + integrity sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-regenerator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz#021562de4534d8b4b1851759fd7af4e05d2c47f8" + integrity sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + regenerator-transform "^0.15.2" + +"@babel/plugin-transform-reserved-words@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz#80037fe4fbf031fc1125022178ff3938bb3743a4" + integrity sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-shorthand-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz#85448c6b996e122fa9e289746140aaa99da64e73" + integrity sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-spread@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz#e8a38c0fde7882e0fb8f160378f74bd885cc7bb3" + integrity sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + +"@babel/plugin-transform-sticky-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz#96ae80d7a7e5251f657b5cf18f1ea6bf926f5feb" + integrity sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-template-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz#a05debb4a9072ae8f985bcf77f3f215434c8f8c8" + integrity sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-typeof-symbol@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz#f074be466580d47d6e6b27473a840c9f9ca08fb0" + integrity sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-typescript@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.7.tgz#b006b3e0094bf0813d505e0c5485679eeaf4a881" + integrity sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-typescript" "^7.24.7" + +"@babel/plugin-transform-unicode-escapes@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz#2023a82ced1fb4971630a2e079764502c4148e0e" + integrity sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-property-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz#9073a4cd13b86ea71c3264659590ac086605bbcd" + integrity sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz#dfc3d4a51127108099b19817c0963be6a2adf19f" + integrity sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-sets-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz#d40705d67523803a576e29c63cef6e516b858ed9" + integrity sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/preset-env@^7.24.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.7.tgz#ff067b4e30ba4a72f225f12f123173e77b987f37" + integrity sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ== + dependencies: + "@babel/compat-data" "^7.24.7" + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-validator-option" "^7.24.7" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.24.7" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.7" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.7" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.7" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.24.7" + "@babel/plugin-syntax-import-attributes" "^7.24.7" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.24.7" + "@babel/plugin-transform-async-generator-functions" "^7.24.7" + "@babel/plugin-transform-async-to-generator" "^7.24.7" + "@babel/plugin-transform-block-scoped-functions" "^7.24.7" + "@babel/plugin-transform-block-scoping" "^7.24.7" + "@babel/plugin-transform-class-properties" "^7.24.7" + "@babel/plugin-transform-class-static-block" "^7.24.7" + "@babel/plugin-transform-classes" "^7.24.7" + "@babel/plugin-transform-computed-properties" "^7.24.7" + "@babel/plugin-transform-destructuring" "^7.24.7" + "@babel/plugin-transform-dotall-regex" "^7.24.7" + "@babel/plugin-transform-duplicate-keys" "^7.24.7" + "@babel/plugin-transform-dynamic-import" "^7.24.7" + "@babel/plugin-transform-exponentiation-operator" "^7.24.7" + "@babel/plugin-transform-export-namespace-from" "^7.24.7" + "@babel/plugin-transform-for-of" "^7.24.7" + "@babel/plugin-transform-function-name" "^7.24.7" + "@babel/plugin-transform-json-strings" "^7.24.7" + "@babel/plugin-transform-literals" "^7.24.7" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.7" + "@babel/plugin-transform-member-expression-literals" "^7.24.7" + "@babel/plugin-transform-modules-amd" "^7.24.7" + "@babel/plugin-transform-modules-commonjs" "^7.24.7" + "@babel/plugin-transform-modules-systemjs" "^7.24.7" + "@babel/plugin-transform-modules-umd" "^7.24.7" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7" + "@babel/plugin-transform-new-target" "^7.24.7" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7" + "@babel/plugin-transform-numeric-separator" "^7.24.7" + "@babel/plugin-transform-object-rest-spread" "^7.24.7" + "@babel/plugin-transform-object-super" "^7.24.7" + "@babel/plugin-transform-optional-catch-binding" "^7.24.7" + "@babel/plugin-transform-optional-chaining" "^7.24.7" + "@babel/plugin-transform-parameters" "^7.24.7" + "@babel/plugin-transform-private-methods" "^7.24.7" + "@babel/plugin-transform-private-property-in-object" "^7.24.7" + "@babel/plugin-transform-property-literals" "^7.24.7" + "@babel/plugin-transform-regenerator" "^7.24.7" + "@babel/plugin-transform-reserved-words" "^7.24.7" + "@babel/plugin-transform-shorthand-properties" "^7.24.7" + "@babel/plugin-transform-spread" "^7.24.7" + "@babel/plugin-transform-sticky-regex" "^7.24.7" + "@babel/plugin-transform-template-literals" "^7.24.7" + "@babel/plugin-transform-typeof-symbol" "^7.24.7" + "@babel/plugin-transform-unicode-escapes" "^7.24.7" + "@babel/plugin-transform-unicode-property-regex" "^7.24.7" + "@babel/plugin-transform-unicode-regex" "^7.24.7" + "@babel/plugin-transform-unicode-sets-regex" "^7.24.7" + "@babel/preset-modules" "0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.4" + babel-plugin-polyfill-regenerator "^0.6.1" + core-js-compat "^3.31.0" + semver "^6.3.1" + +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/preset-typescript@^7.23.3": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz#66cd86ea8f8c014855671d5ea9a737139cbbfef1" + integrity sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-validator-option" "^7.24.7" + "@babel/plugin-syntax-jsx" "^7.24.7" + "@babel/plugin-transform-modules-commonjs" "^7.24.7" + "@babel/plugin-transform-typescript" "^7.24.7" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.7.tgz#f4f0d5530e8dbdf59b3451b9b3e594b6ba082e12" + integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.24.7", "@babel/template@^7.3.3": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.7.tgz#02efcee317d0609d2c07117cb70ef8fb17ab7315" + integrity sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/parser" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/traverse@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.7.tgz#de2b900163fa741721ba382163fe46a936c40cf5" + integrity sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-hoist-variables" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + "@babel/parser" "^7.24.7" + "@babel/types" "^7.24.7" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.7.tgz#6027fe12bc1aa724cd32ab113fb7f1988f1f66f2" + integrity sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q== + dependencies: + "@babel/helper-string-parser" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + to-fast-properties "^2.0.0" + +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + +"@commitlint/cli@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-18.6.1.tgz#78bffdfa00d6f01425d53096954993d83f2b343d" + integrity sha512-5IDE0a+lWGdkOvKH892HHAZgbAjcj1mT5QrfA/SVbLJV/BbBMGyKN0W5mhgjekPJJwEQdVNvhl9PwUacY58Usw== + dependencies: + "@commitlint/format" "^18.6.1" + "@commitlint/lint" "^18.6.1" + "@commitlint/load" "^18.6.1" + "@commitlint/read" "^18.6.1" + "@commitlint/types" "^18.6.1" + execa "^5.0.0" + lodash.isfunction "^3.0.9" + resolve-from "5.0.0" + resolve-global "1.0.0" + yargs "^17.0.0" + +"@commitlint/config-conventional@^18.6.2": + version "18.6.3" + resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-18.6.3.tgz#1b2740dbe325d76e05924c46bc1504340b701ca1" + integrity sha512-8ZrRHqF6je+TRaFoJVwszwnOXb/VeYrPmTwPhf0WxpzpGTcYy1p0SPyZ2eRn/sRi/obnWAcobtDAq6+gJQQNhQ== + dependencies: + "@commitlint/types" "^18.6.1" + conventional-changelog-conventionalcommits "^7.0.2" + +"@commitlint/config-validator@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-18.6.1.tgz#e0d71a99c984a68586c7ae7afd3f52342022fae8" + integrity sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw== + dependencies: + "@commitlint/types" "^18.6.1" + ajv "^8.11.0" + +"@commitlint/ensure@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-18.6.1.tgz#17141e083200ca94d8480dc23b0e8f8b1fd37b7f" + integrity sha512-BPm6+SspyxQ7ZTsZwXc7TRQL5kh5YWt3euKmEIBZnocMFkJevqs3fbLRb8+8I/cfbVcAo4mxRlpTPfz8zX7SnQ== + dependencies: + "@commitlint/types" "^18.6.1" + lodash.camelcase "^4.3.0" + lodash.kebabcase "^4.1.1" + lodash.snakecase "^4.1.1" + lodash.startcase "^4.4.0" + lodash.upperfirst "^4.3.1" + +"@commitlint/execute-rule@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-18.6.1.tgz#18175e043fe6fb5fceea7b8530316c644f93dfe6" + integrity sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg== + +"@commitlint/format@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-18.6.1.tgz#5f2b8b3ae4d8d80bd9239178e97df63e5b8d280a" + integrity sha512-K8mNcfU/JEFCharj2xVjxGSF+My+FbUHoqR+4GqPGrHNqXOGNio47ziiR4HQUPKtiNs05o8/WyLBoIpMVOP7wg== + dependencies: + "@commitlint/types" "^18.6.1" + chalk "^4.1.0" + +"@commitlint/is-ignored@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-18.6.1.tgz#4ee08ba91ff3defb06e0ef19259a9c6734a8d06e" + integrity sha512-MOfJjkEJj/wOaPBw5jFjTtfnx72RGwqYIROABudOtJKW7isVjFe9j0t8xhceA02QebtYf4P/zea4HIwnXg8rvA== + dependencies: + "@commitlint/types" "^18.6.1" + semver "7.6.0" + +"@commitlint/lint@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-18.6.1.tgz#fe3834636c99ee14534a8eb3832831ac362e9fd8" + integrity sha512-8WwIFo3jAuU+h1PkYe5SfnIOzp+TtBHpFr4S8oJWhu44IWKuVx6GOPux3+9H1iHOan/rGBaiacicZkMZuluhfQ== + dependencies: + "@commitlint/is-ignored" "^18.6.1" + "@commitlint/parse" "^18.6.1" + "@commitlint/rules" "^18.6.1" + "@commitlint/types" "^18.6.1" + +"@commitlint/load@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-18.6.1.tgz#fb79ed7ee8b5897a9b5c274c1e24eda9162df816" + integrity sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA== + dependencies: + "@commitlint/config-validator" "^18.6.1" + "@commitlint/execute-rule" "^18.6.1" + "@commitlint/resolve-extends" "^18.6.1" + "@commitlint/types" "^18.6.1" + chalk "^4.1.0" + cosmiconfig "^8.3.6" + cosmiconfig-typescript-loader "^5.0.0" + lodash.isplainobject "^4.0.6" + lodash.merge "^4.6.2" + lodash.uniq "^4.5.0" + resolve-from "^5.0.0" + +"@commitlint/message@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-18.6.1.tgz#107bd40923ad23d2de56c92a68b179ebfb7e314e" + integrity sha512-VKC10UTMLcpVjMIaHHsY1KwhuTQtdIKPkIdVEwWV+YuzKkzhlI3aNy6oo1eAN6b/D2LTtZkJe2enHmX0corYRw== + +"@commitlint/parse@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-18.6.1.tgz#2946b814125e907b9c4d63d3e71d0c1b54b30b62" + integrity sha512-eS/3GREtvVJqGZrwAGRwR9Gdno3YcZ6Xvuaa+vUF8j++wsmxrA2En3n0ccfVO2qVOLJC41ni7jSZhQiJpMPGOQ== + dependencies: + "@commitlint/types" "^18.6.1" + conventional-changelog-angular "^7.0.0" + conventional-commits-parser "^5.0.0" + +"@commitlint/read@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-18.6.1.tgz#8c138311ed9749427920c369f6276be136f2aa50" + integrity sha512-ia6ODaQFzXrVul07ffSgbZGFajpe8xhnDeLIprLeyfz3ivQU1dIoHp7yz0QIorZ6yuf4nlzg4ZUkluDrGN/J/w== + dependencies: + "@commitlint/top-level" "^18.6.1" + "@commitlint/types" "^18.6.1" + git-raw-commits "^2.0.11" + minimist "^1.2.6" + +"@commitlint/resolve-extends@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-18.6.1.tgz#f0572c682fc24dbabe2e0f42873261e0fa42c91a" + integrity sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ== + dependencies: + "@commitlint/config-validator" "^18.6.1" + "@commitlint/types" "^18.6.1" + import-fresh "^3.0.0" + lodash.mergewith "^4.6.2" + resolve-from "^5.0.0" + resolve-global "^1.0.0" + +"@commitlint/rules@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-18.6.1.tgz#da25aeffe6c0e1c7625e44f46089fb8860986caf" + integrity sha512-kguM6HxZDtz60v/zQYOe0voAtTdGybWXefA1iidjWYmyUUspO1zBPQEmJZ05/plIAqCVyNUTAiRPWIBKLCrGew== + dependencies: + "@commitlint/ensure" "^18.6.1" + "@commitlint/message" "^18.6.1" + "@commitlint/to-lines" "^18.6.1" + "@commitlint/types" "^18.6.1" + execa "^5.0.0" + +"@commitlint/to-lines@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-18.6.1.tgz#d28827a4a540c98eea1aae31dafd66f80b2f1b9e" + integrity sha512-Gl+orGBxYSNphx1+83GYeNy5N0dQsHBQ9PJMriaLQDB51UQHCVLBT/HBdOx5VaYksivSf5Os55TLePbRLlW50Q== + +"@commitlint/top-level@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-18.6.1.tgz#429fcb985e3beaba9b17e05c0ae61926c647baf0" + integrity sha512-HyiHQZUTf0+r0goTCDs/bbVv/LiiQ7AVtz6KIar+8ZrseB9+YJAIo8HQ2IC2QT1y3N1lbW6OqVEsTHjbT6hGSw== + dependencies: + find-up "^5.0.0" + +"@commitlint/types@^18.6.1": + version "18.6.1" + resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-18.6.1.tgz#7eb3ab2d799d9166fbb98b96b0744581e59a4ad4" + integrity sha512-gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg== + dependencies: + chalk "^4.1.0" + +"@cspell/cspell-bundled-dicts@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.9.0.tgz#4c9ecb62a824bd8b21ffd4470302eba20e47c988" + integrity sha512-Dxfuva7zlcI2X/PulDI7bfJBB1De4OuulR2prVpDuGLk3zAiFO7t4d2bmdWxfowhtm1agSqY03uZOTk8fTppuQ== + dependencies: + "@cspell/dict-ada" "^4.0.2" + "@cspell/dict-aws" "^4.0.2" + "@cspell/dict-bash" "^4.1.3" + "@cspell/dict-companies" "^3.1.2" + "@cspell/dict-cpp" "^5.1.10" + "@cspell/dict-cryptocurrencies" "^5.0.0" + "@cspell/dict-csharp" "^4.0.2" + "@cspell/dict-css" "^4.0.12" + "@cspell/dict-dart" "^2.0.3" + "@cspell/dict-django" "^4.1.0" + "@cspell/dict-docker" "^1.1.7" + "@cspell/dict-dotnet" "^5.0.2" + "@cspell/dict-elixir" "^4.0.3" + "@cspell/dict-en-common-misspellings" "^2.0.2" + "@cspell/dict-en-gb" "1.1.33" + "@cspell/dict-en_us" "^4.3.22" + "@cspell/dict-filetypes" "^3.0.4" + "@cspell/dict-fonts" "^4.0.0" + "@cspell/dict-fsharp" "^1.0.1" + "@cspell/dict-fullstack" "^3.1.8" + "@cspell/dict-gaming-terms" "^1.0.5" + "@cspell/dict-git" "^3.0.0" + "@cspell/dict-golang" "^6.0.9" + "@cspell/dict-google" "^1.0.1" + "@cspell/dict-haskell" "^4.0.1" + "@cspell/dict-html" "^4.0.5" + "@cspell/dict-html-symbol-entities" "^4.0.0" + "@cspell/dict-java" "^5.0.7" + "@cspell/dict-julia" "^1.0.1" + "@cspell/dict-k8s" "^1.0.5" + "@cspell/dict-latex" "^4.0.0" + "@cspell/dict-lorem-ipsum" "^4.0.0" + "@cspell/dict-lua" "^4.0.3" + "@cspell/dict-makefile" "^1.0.0" + "@cspell/dict-monkeyc" "^1.0.6" + "@cspell/dict-node" "^5.0.1" + "@cspell/dict-npm" "^5.0.16" + "@cspell/dict-php" "^4.0.8" + "@cspell/dict-powershell" "^5.0.4" + "@cspell/dict-public-licenses" "^2.0.7" + "@cspell/dict-python" "^4.2.1" + "@cspell/dict-r" "^2.0.1" + "@cspell/dict-ruby" "^5.0.2" + "@cspell/dict-rust" "^4.0.4" + "@cspell/dict-scala" "^5.0.2" + "@cspell/dict-software-terms" "^3.4.6" + "@cspell/dict-sql" "^2.1.3" + "@cspell/dict-svelte" "^1.0.2" + "@cspell/dict-swift" "^2.0.1" + "@cspell/dict-terraform" "^1.0.0" + "@cspell/dict-typescript" "^3.1.5" + "@cspell/dict-vue" "^3.0.0" + +"@cspell/cspell-json-reporter@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.9.0.tgz#7ddaa8ba860346f077c641fb71892fc8c04e1be5" + integrity sha512-+m2HoYTqdI76Zt27CyCpFCAxEUlTMnJnC76MpuQEd21C72qXWmaYdcVzJ7GnVXtTY6cofefUy/X3zgkUBW/bqg== + dependencies: + "@cspell/cspell-types" "8.9.0" + +"@cspell/cspell-pipe@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.9.0.tgz#207d4bc993c235dfaa6085473ef150e46905a23c" + integrity sha512-N3Nv9F/1LyUabd1lda+N7tU+UpY7lp8mZvG7ZTxhoB8vfw/Yf3f8NlQ5awSYear2Q+N0RoGyyLaaqUY6nUQvOQ== + +"@cspell/cspell-resolver@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.9.0.tgz#96909ab32714e53c3b2e60ade3b44afecfebd83a" + integrity sha512-52FCYcrZZhdAKkGoHss000nUk2mHkujxHJOfh+KMh2p15igmPW0AR7/VFKSS7zVkkLfAhQfWxoqQLkoE+yvccA== + dependencies: + global-directory "^4.0.1" + +"@cspell/cspell-service-bus@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.9.0.tgz#d2ad4c1327392f38333a98e01be974800f8fff1e" + integrity sha512-R8MlY3dp4my/VZp2xhvkUcXbLsTZUSNuxsOFzpPYLQhtrei0ReEcaDTg2JEU1wfHnREGG8GYlWh9BEryx8AZYA== + +"@cspell/cspell-types@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.9.0.tgz#7b1c3987634391d2c4e0da34497782c51d23d00d" + integrity sha512-YeL14G+tIh92WvO5K9+WBCjckRQAApeSNkIavx+7+IF+MUoGPvVbTA881q15zwoPRPtOJQ8wEbI6zJH5ykKFfw== + +"@cspell/dict-ada@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-ada/-/dict-ada-4.0.2.tgz#8da2216660aeb831a0d9055399a364a01db5805a" + integrity sha512-0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA== + +"@cspell/dict-aws@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-aws/-/dict-aws-4.0.2.tgz#6498f1c983c80499054bb31b772aa9562f3aaaed" + integrity sha512-aNGHWSV7dRLTIn8WJemzLoMF62qOaiUQlgnsCwH5fRCD/00gsWCwg106pnbkmK4AyabyxzneOV4dfecDJWkSxw== + +"@cspell/dict-bash@^4.1.3": + version "4.1.3" + resolved "https://registry.yarnpkg.com/@cspell/dict-bash/-/dict-bash-4.1.3.tgz#25fba40825ac10083676ab2c777e471c3f71b36e" + integrity sha512-tOdI3QVJDbQSwPjUkOiQFhYcu2eedmX/PtEpVWg0aFps/r6AyjUQINtTgpqMYnYuq8O1QUIQqnpx21aovcgZCw== + +"@cspell/dict-companies@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-3.1.2.tgz#b335fe5b8847a23673bc4b964ca584339ca669a2" + integrity sha512-OwR5i1xbYuJX7FtHQySmTy3iJtPV1rZQ3jFCxFGwrA1xRQ4rtRcDQ+sTXBCIAoJHkXa84f9J3zsngOKmMGyS/w== + +"@cspell/dict-cpp@^5.1.10": + version "5.1.10" + resolved "https://registry.yarnpkg.com/@cspell/dict-cpp/-/dict-cpp-5.1.10.tgz#457881ad9425ea0af71e4c1f9b108677a555fe79" + integrity sha512-BmIF0sAz2BgGEOwzYIeEm9ALneDjd1tcTbFbo+A1Hcq3zOKP8yViSgxS9CEN30KOZIyph6Tldp531UPEpoEl0Q== + +"@cspell/dict-cryptocurrencies@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.0.tgz#19fbc7bdbec76ce64daf7d53a6d0f3cfff7d0038" + integrity sha512-Z4ARIw5+bvmShL+4ZrhDzGhnc9znaAGHOEMaB/GURdS/jdoreEDY34wdN0NtdLHDO5KO7GduZnZyqGdRoiSmYA== + +"@cspell/dict-csharp@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz#e55659dbe594e744d86b1baf0f3397fe57b1e283" + integrity sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g== + +"@cspell/dict-css@^4.0.12": + version "4.0.12" + resolved "https://registry.yarnpkg.com/@cspell/dict-css/-/dict-css-4.0.12.tgz#59abf3512ae729835c933c38f64a3d8a5f09ce3d" + integrity sha512-vGBgPM92MkHQF5/2jsWcnaahOZ+C6OE/fPvd5ScBP72oFY9tn5GLuomcyO0z8vWCr2e0nUSX1OGimPtcQAlvSw== + +"@cspell/dict-dart@^2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@cspell/dict-dart/-/dict-dart-2.0.3.tgz#75e7ffe47d5889c2c831af35acdd92ebdbd4cf12" + integrity sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw== + +"@cspell/dict-data-science@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-data-science/-/dict-data-science-2.0.1.tgz#ef8040821567786d76c6153ac3e4bc265ca65b59" + integrity sha512-xeutkzK0eBe+LFXOFU2kJeAYO6IuFUc1g7iRLr7HeCmlC4rsdGclwGHh61KmttL3+YHQytYStxaRBdGAXWC8Lw== + +"@cspell/dict-django@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-django/-/dict-django-4.1.0.tgz#2d4b765daf3c83e733ef3e06887ea34403a4de7a" + integrity sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w== + +"@cspell/dict-docker@^1.1.7": + version "1.1.7" + resolved "https://registry.yarnpkg.com/@cspell/dict-docker/-/dict-docker-1.1.7.tgz#bcf933283fbdfef19c71a642e7e8c38baf9014f2" + integrity sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A== + +"@cspell/dict-dotnet@^5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-dotnet/-/dict-dotnet-5.0.2.tgz#d89ca8fa2e546b5e1b1f1288746d26bb627d9f38" + integrity sha512-UD/pO2A2zia/YZJ8Kck/F6YyDSpCMq0YvItpd4YbtDVzPREfTZ48FjZsbYi4Jhzwfvc6o8R56JusAE58P+4sNQ== + +"@cspell/dict-elixir@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz#57c25843e46cf3463f97da72d9ef8e37c818296f" + integrity sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q== + +"@cspell/dict-en-common-misspellings@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.2.tgz#7620dcfa9b4244b1c044f38c7e123d06b52c81a6" + integrity sha512-LA8BO0RaoJD+ExHzK5mz+t9RQ0HaBPDxgR4JTfG8YKJP5keO+pFMH9ZMZphKPjW46QYUZb6Ta1HIRikBEOZfYw== + +"@cspell/dict-en-gb@1.1.33": + version "1.1.33" + resolved "https://registry.yarnpkg.com/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz#7f1fd90fc364a5cb77111b5438fc9fcf9cc6da0e" + integrity sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g== + +"@cspell/dict-en_us@^4.3.22": + version "4.3.22" + resolved "https://registry.yarnpkg.com/@cspell/dict-en_us/-/dict-en_us-4.3.22.tgz#66aa9de60d97bc58112c68007a145d02f108c428" + integrity sha512-UegkIQhKkTLGarpYNV5ybW2JHzuxhDMOF9q9TW37iG8YoHp5jeVW3C0p3cH9nHWMwEjPinJFfxBd1LPRxGv5dQ== + +"@cspell/dict-filetypes@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@cspell/dict-filetypes/-/dict-filetypes-3.0.4.tgz#aca71c7bb8c8805b54f382d98ded5ec75ebc1e36" + integrity sha512-IBi8eIVdykoGgIv5wQhOURi5lmCNJq0we6DvqKoPQJHthXbgsuO1qrHSiUVydMiQl/XvcnUWTMeAlVUlUClnVg== + +"@cspell/dict-fonts@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-fonts/-/dict-fonts-4.0.0.tgz#9bc8beb2a7b068b4fdb45cb994b36fd184316327" + integrity sha512-t9V4GeN/m517UZn63kZPUYP3OQg5f0OBLSd3Md5CU3eH1IFogSvTzHHnz4Wqqbv8NNRiBZ3HfdY/pqREZ6br3Q== + +"@cspell/dict-fsharp@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-fsharp/-/dict-fsharp-1.0.1.tgz#d62c699550a39174f182f23c8c1330a795ab5f53" + integrity sha512-23xyPcD+j+NnqOjRHgW3IU7Li912SX9wmeefcY0QxukbAxJ/vAN4rBpjSwwYZeQPAn3fxdfdNZs03fg+UM+4yQ== + +"@cspell/dict-fullstack@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@cspell/dict-fullstack/-/dict-fullstack-3.1.8.tgz#1bbfa0a165346f6eff9894cf965bf3ce26552797" + integrity sha512-YRlZupL7uqMCtEBK0bDP9BrcPnjDhz7m4GBqCc1EYqfXauHbLmDT8ELha7T/E7wsFKniHSjzwDZzhNXo2lusRQ== + +"@cspell/dict-gaming-terms@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.5.tgz#d6ca40eb34a4c99847fd58a7354cd2c651065156" + integrity sha512-C3riccZDD3d9caJQQs1+MPfrUrQ+0KHdlj9iUR1QD92FgTOF6UxoBpvHUUZ9YSezslcmpFQK4xQQ5FUGS7uWfw== + +"@cspell/dict-git@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-git/-/dict-git-3.0.0.tgz#c275af86041a2b59a7facce37525e2af05653b95" + integrity sha512-simGS/lIiXbEaqJu9E2VPoYW1OTC2xrwPPXNXFMa2uo/50av56qOuaxDrZ5eH1LidFXwoc8HROCHYeKoNrDLSw== + +"@cspell/dict-golang@^6.0.9": + version "6.0.9" + resolved "https://registry.yarnpkg.com/@cspell/dict-golang/-/dict-golang-6.0.9.tgz#b26ee13fb34a8cd40fb22380de8a46b25739fcab" + integrity sha512-etDt2WQauyEQDA+qPS5QtkYTb2I9l5IfQftAllVoB1aOrT6bxxpHvMEpJ0Hsn/vezxrCqa/BmtUbRxllIxIuSg== + +"@cspell/dict-google@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-google/-/dict-google-1.0.1.tgz#34701471a616011aeaaf480d4834436b6b6b1da5" + integrity sha512-dQr4M3n95uOhtloNSgB9tYYGXGGEGEykkFyRtfcp5pFuEecYUa0BSgtlGKx9RXVtJtKgR+yFT/a5uQSlt8WjqQ== + +"@cspell/dict-haskell@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-haskell/-/dict-haskell-4.0.1.tgz#e9fca7c452411ff11926e23ffed2b50bb9b95e47" + integrity sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ== + +"@cspell/dict-html-symbol-entities@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz#4d86ac18a4a11fdb61dfb6f5929acd768a52564f" + integrity sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw== + +"@cspell/dict-html@^4.0.5": + version "4.0.5" + resolved "https://registry.yarnpkg.com/@cspell/dict-html/-/dict-html-4.0.5.tgz#03a5182148d80e6c25f71339dbb2b7c5b9894ef8" + integrity sha512-p0brEnRybzSSWi8sGbuVEf7jSTDmXPx7XhQUb5bgG6b54uj+Z0Qf0V2n8b/LWwIPJNd1GygaO9l8k3HTCy1h4w== + +"@cspell/dict-java@^5.0.7": + version "5.0.7" + resolved "https://registry.yarnpkg.com/@cspell/dict-java/-/dict-java-5.0.7.tgz#c0b32d3c208b6419a5eddd010e87196976be2694" + integrity sha512-ejQ9iJXYIq7R09BScU2y5OUGrSqwcD+J5mHFOKbduuQ5s/Eh/duz45KOzykeMLI6KHPVxhBKpUPBWIsfewECpQ== + +"@cspell/dict-julia@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-julia/-/dict-julia-1.0.1.tgz#900001417f1c4ea689530adfcc034c848458a0aa" + integrity sha512-4JsCLCRhhLMLiaHpmR7zHFjj1qOauzDI5ZzCNQS31TUMfsOo26jAKDfo0jljFAKgw5M2fEG7sKr8IlPpQAYrmQ== + +"@cspell/dict-k8s@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@cspell/dict-k8s/-/dict-k8s-1.0.5.tgz#4a4011d9f2f3ab628658573c5f16c0e6dbe30c29" + integrity sha512-Cj+/ZV4S+MKlwfocSJZqe/2UAd/sY8YtlZjbK25VN1nCnrsKrBjfkX29vclwSj1U9aJg4Z9jw/uMjoaKu9ZrpQ== + +"@cspell/dict-latex@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-latex/-/dict-latex-4.0.0.tgz#85054903db834ea867174795d162e2a8f0e9c51e" + integrity sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ== + +"@cspell/dict-lorem-ipsum@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.0.tgz#2793a5dbfde474a546b0caecc40c38fdf076306e" + integrity sha512-1l3yjfNvMzZPibW8A7mQU4kTozwVZVw0AvFEdy+NcqtbxH+TvbSkNMqROOFWrkD2PjnKG0+Ea0tHI2Pi6Gchnw== + +"@cspell/dict-lua@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@cspell/dict-lua/-/dict-lua-4.0.3.tgz#2d23c8f7e74b4e62000678d80e7d1ebb10b003e0" + integrity sha512-lDHKjsrrbqPaea13+G9s0rtXjMO06gPXPYRjRYawbNmo4E/e3XFfVzeci3OQDQNDmf2cPOwt9Ef5lu2lDmwfJg== + +"@cspell/dict-makefile@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-makefile/-/dict-makefile-1.0.0.tgz#5afb2910873ebbc01ab8d9c38661c4c93d0e5a40" + integrity sha512-3W9tHPcSbJa6s0bcqWo6VisEDTSN5zOtDbnPabF7rbyjRpNo0uHXHRJQF8gAbFzoTzBBhgkTmrfSiuyQm7vBUQ== + +"@cspell/dict-monkeyc@^1.0.6": + version "1.0.6" + resolved "https://registry.yarnpkg.com/@cspell/dict-monkeyc/-/dict-monkeyc-1.0.6.tgz#042d042fc34a20194c8de032130808f44b241375" + integrity sha512-oO8ZDu/FtZ55aq9Mb67HtaCnsLn59xvhO/t2mLLTHAp667hJFxpp7bCtr2zOrR1NELzFXmKln/2lw/PvxMSvrA== + +"@cspell/dict-node@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@cspell/dict-node/-/dict-node-4.0.3.tgz#5ae0222d72871e82978049f8e11ea627ca42fca3" + integrity sha512-sFlUNI5kOogy49KtPg8SMQYirDGIAoKBO3+cDLIwD4MLdsWy1q0upc7pzGht3mrjuyMiPRUV14Bb0rkVLrxOhg== + +"@cspell/dict-node@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-node/-/dict-node-5.0.1.tgz#77e17c576a897a3391fce01c1cc5da60bb4c2268" + integrity sha512-lax/jGz9h3Dv83v8LHa5G0bf6wm8YVRMzbjJPG/9rp7cAGPtdrga+XANFq+B7bY5+jiSA3zvj10LUFCFjnnCCg== + +"@cspell/dict-npm@^5.0.16": + version "5.0.16" + resolved "https://registry.yarnpkg.com/@cspell/dict-npm/-/dict-npm-5.0.16.tgz#696883918a9876ffd20d5f975bde74a03d27d80e" + integrity sha512-ZWPnLAziEcSCvV0c8k9Qj88pfMu+wZwM5Qks87ShsfBgI8uLZ9tGHravA7gmjH1Gd7Bgxy2ulvXtSqIWPh1lew== + +"@cspell/dict-php@^4.0.8": + version "4.0.8" + resolved "https://registry.yarnpkg.com/@cspell/dict-php/-/dict-php-4.0.8.tgz#fedce3109dff13a0f3d8d88ba604d6edd2b9fb70" + integrity sha512-TBw3won4MCBQ2wdu7kvgOCR3dY2Tb+LJHgDUpuquy3WnzGiSDJ4AVelrZdE1xu7mjFJUr4q48aB21YT5uQqPZA== + +"@cspell/dict-powershell@^5.0.4": + version "5.0.4" + resolved "https://registry.yarnpkg.com/@cspell/dict-powershell/-/dict-powershell-5.0.4.tgz#db2bc6a86700a2f829dc1b3b04f6cb3a916fd928" + integrity sha512-eosDShapDgBWN9ULF7+sRNdUtzRnUdsfEdBSchDm8FZA4HOqxUSZy3b/cX/Rdw0Fnw0AKgk0kzgXw7tS6vwJMQ== + +"@cspell/dict-public-licenses@^2.0.7": + version "2.0.7" + resolved "https://registry.yarnpkg.com/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.7.tgz#ccd67a91a6bd5ed4b5117c2f34e9361accebfcb7" + integrity sha512-KlBXuGcN3LE7tQi/GEqKiDewWGGuopiAD0zRK1QilOx5Co8XAvs044gk4MNIQftc8r0nHeUI+irJKLGcR36DIQ== + +"@cspell/dict-python@^4.2.1": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-python/-/dict-python-4.2.1.tgz#ef0c4cc1b6d096e8ff65faee3fe15eaf6457a92e" + integrity sha512-9X2jRgyM0cxBoFQRo4Zc8oacyWnXi+0/bMI5FGibZNZV4y/o9UoFEr6agjU260/cXHTjIdkX233nN7eb7dtyRg== + dependencies: + "@cspell/dict-data-science" "^2.0.1" + +"@cspell/dict-r@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-r/-/dict-r-2.0.1.tgz#73474fb7cce45deb9094ebf61083fbf5913f440a" + integrity sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA== + +"@cspell/dict-ruby@^5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-ruby/-/dict-ruby-5.0.2.tgz#cf1a71380c633dec0857143d3270cb503b10679a" + integrity sha512-cIh8KTjpldzFzKGgrqUX4bFyav5lC52hXDKo4LbRuMVncs3zg4hcSf4HtURY+f2AfEZzN6ZKzXafQpThq3dl2g== + +"@cspell/dict-rust@^4.0.4": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@cspell/dict-rust/-/dict-rust-4.0.4.tgz#72f21d18aa46288b7da00e7d91b3ed4a23b386e8" + integrity sha512-v9/LcZknt/Xq7m1jdTWiQEtmkVVKdE1etAfGL2sgcWpZYewEa459HeWndNA0gfzQrpWX9sYay18mt7pqClJEdA== + +"@cspell/dict-scala@^5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-scala/-/dict-scala-5.0.2.tgz#d732ab24610cc9f6916fb8148f6ef5bdd945fc47" + integrity sha512-v97ClgidZt99JUm7OjhQugDHmhx4U8fcgunHvD/BsXWjXNj4cTr0m0YjofyZoL44WpICsNuFV9F/sv9OM5HUEw== + +"@cspell/dict-software-terms@^3.3.18", "@cspell/dict-software-terms@^3.4.6": + version "3.4.6" + resolved "https://registry.yarnpkg.com/@cspell/dict-software-terms/-/dict-software-terms-3.4.6.tgz#892562e12acc85b6de849b9390e53765c8a3cbe3" + integrity sha512-Cap+WL4iM9NgwxdVIa93aDEGKGNm1t+DLJTnjoWkGHXxSBPG8Kcbnlss6mTtwLv9/NYPmQsmJi5qHXruuHx2ow== + +"@cspell/dict-sql@^2.1.3": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@cspell/dict-sql/-/dict-sql-2.1.3.tgz#8d9666a82e35b310d0be4064032c0d891fbd2702" + integrity sha512-SEyTNKJrjqD6PAzZ9WpdSu6P7wgdNtGV2RV8Kpuw1x6bV+YsSptuClYG+JSdRExBTE6LwIe1bTklejUp3ZP8TQ== + +"@cspell/dict-svelte@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@cspell/dict-svelte/-/dict-svelte-1.0.2.tgz#0c866b08a7a6b33bbc1a3bdbe6a1b484ca15cdaa" + integrity sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q== + +"@cspell/dict-swift@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@cspell/dict-swift/-/dict-swift-2.0.1.tgz#06ec86e52e9630c441d3c19605657457e33d7bb6" + integrity sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw== + +"@cspell/dict-terraform@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-terraform/-/dict-terraform-1.0.0.tgz#c7b073bb3a03683f64cc70ccaa55ce9742c46086" + integrity sha512-Ak+vy4HP/bOgzf06BAMC30+ZvL9mzv21xLM2XtfnBLTDJGdxlk/nK0U6QT8VfFLqJ0ZZSpyOxGsUebWDCTr/zQ== + +"@cspell/dict-typescript@^3.1.2", "@cspell/dict-typescript@^3.1.5": + version "3.1.5" + resolved "https://registry.yarnpkg.com/@cspell/dict-typescript/-/dict-typescript-3.1.5.tgz#15bd74651fb2cf0eff1150f07afee9543206bfab" + integrity sha512-EkIwwNV/xqEoBPJml2S16RXj65h1kvly8dfDLgXerrKw6puybZdvAHerAph6/uPTYdtLcsPyJYkPt5ISOJYrtw== + +"@cspell/dict-vue@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@cspell/dict-vue/-/dict-vue-3.0.0.tgz#68ccb432ad93fcb0fd665352d075ae9a64ea9250" + integrity sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A== + +"@cspell/dynamic-import@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.9.0.tgz#232d49b6372ff8ece4d5ffce149f988e9350065c" + integrity sha512-UYa2Xlf/Bg9b7lUlKn59Z6XhHtE00z5kgzkKCGAdS0W27i2qUZJHW3FfiKfknWLNLzfj7cVUAq2IHjbumbx9ow== + dependencies: + import-meta-resolve "^4.1.0" + +"@cspell/strong-weak-map@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.9.0.tgz#5aedd8f556c362b444f0a8dc9ed532831bed3c95" + integrity sha512-HE0rkwtJ4/4QuXpJW1r4GIK+jhs2SYK4IACf3EE2mJufOWF4YxgfWwKBgztKE/0RDMJcxyvn/ubLUCnNClNfdg== + +"@cspell/url@8.9.0": + version "8.9.0" + resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.9.0.tgz#313ccde44570b3158cb7baa3eb53e54572d7263f" + integrity sha512-FaHTEx6OBVKlkX7VgAPofBZ5vIdxNWYalb0uZwJ5FCc/PCMIF5l91DQGQxRMas3qzRACR911kJamPdeK/3qilw== + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@ericcornelissen/bash-parser@0.5.3": + version "0.5.3" + resolved "https://registry.yarnpkg.com/@ericcornelissen/bash-parser/-/bash-parser-0.5.3.tgz#cda9f0e9ed3bcf62c29c277de778726425e03b0a" + integrity sha512-9Z0sGuXqf6En19qmwB0Syi1Mc8TYl756dNuuaYal9mrypKa0Jq/IX6aJfh6Rk2S3z66KBisWTqloDo7weYj4zg== + dependencies: + array-last "^1.1.1" + babylon "^6.9.1" + compose-function "^3.0.3" + filter-obj "^1.1.0" + has-own-property "^0.1.0" + identity-function "^1.0.0" + is-iterable "^1.1.0" + iterable-lookahead "^1.0.0" + lodash.curry "^4.1.1" + magic-string "^0.16.0" + map-obj "^2.0.0" + object-pairs "^0.1.0" + object-values "^1.0.0" + reverse-arguments "^1.0.0" + shell-quote-word "^1.0.1" + to-pascal-case "^1.0.0" + unescape-js "^1.0.5" + +"@esbuild/aix-ppc64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" + integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== + +"@esbuild/aix-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" + integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== + +"@esbuild/android-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" + integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== + +"@esbuild/android-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" + integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== + +"@esbuild/android-arm@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" + integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== + +"@esbuild/android-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" + integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== + +"@esbuild/android-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" + integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== + +"@esbuild/android-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" + integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== + +"@esbuild/darwin-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" + integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== + +"@esbuild/darwin-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== + +"@esbuild/darwin-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" + integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== + +"@esbuild/darwin-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" + integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== + +"@esbuild/freebsd-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" + integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== + +"@esbuild/freebsd-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" + integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== + +"@esbuild/freebsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" + integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== + +"@esbuild/freebsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" + integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== + +"@esbuild/linux-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" + integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== + +"@esbuild/linux-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== + +"@esbuild/linux-arm@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" + integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== + +"@esbuild/linux-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" + integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== + +"@esbuild/linux-ia32@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" + integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== + +"@esbuild/linux-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" + integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== + +"@esbuild/linux-loong64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" + integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== + +"@esbuild/linux-loong64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" + integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== + +"@esbuild/linux-mips64el@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" + integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== + +"@esbuild/linux-mips64el@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" + integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + +"@esbuild/linux-ppc64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" + integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== + +"@esbuild/linux-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" + integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== + +"@esbuild/linux-riscv64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" + integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== + +"@esbuild/linux-riscv64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" + integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== + +"@esbuild/linux-s390x@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" + integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== + +"@esbuild/linux-s390x@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" + integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== + +"@esbuild/linux-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" + integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== + +"@esbuild/linux-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" + integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== + +"@esbuild/netbsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" + integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== + +"@esbuild/netbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" + integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== + +"@esbuild/openbsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" + integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== + +"@esbuild/openbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" + integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== + +"@esbuild/sunos-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" + integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== + +"@esbuild/sunos-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" + integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== + +"@esbuild/win32-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" + integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== + +"@esbuild/win32-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" + integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== + +"@esbuild/win32-ia32@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" + integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== + +"@esbuild/win32-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" + integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== + +"@esbuild/win32-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" + integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== + +"@esbuild/win32-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" + integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== + +"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.6.1": + version "4.10.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.1.tgz#361461e5cb3845d874e61731c11cfedd664d83a0" + integrity sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA== + +"@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.6.0" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@8.57.0": + version "8.57.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" + integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== + +"@ethersproject/abstract-provider@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" + integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/networks" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/web" "^5.7.0" + +"@ethersproject/abstract-signer@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" + integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== + dependencies: + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + +"@ethersproject/address@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" + integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + +"@ethersproject/base64@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" + integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== + dependencies: + "@ethersproject/bytes" "^5.7.0" + +"@ethersproject/basex@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" + integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + +"@ethersproject/bignumber@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" + integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + bn.js "^5.2.1" + +"@ethersproject/bytes@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" + integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/constants@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" + integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + +"@ethersproject/hash@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" + integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== + dependencies: + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/base64" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/keccak256@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" + integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== + dependencies: + "@ethersproject/bytes" "^5.7.0" + js-sha3 "0.8.0" + +"@ethersproject/logger@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" + integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== + +"@ethersproject/networks@^5.7.0": + version "5.7.1" + resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" + integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/properties@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" + integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/providers@5.7.2": + version "5.7.2" + resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.7.2.tgz#f8b1a4f275d7ce58cf0a2eec222269a08beb18cb" + integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg== + dependencies: + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/base64" "^5.7.0" + "@ethersproject/basex" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/networks" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/random" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/web" "^5.7.0" + bech32 "1.1.4" + ws "7.4.6" + +"@ethersproject/random@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" + integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/rlp@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" + integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/sha2@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" + integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + hash.js "1.1.7" + +"@ethersproject/signing-key@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" + integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + bn.js "^5.2.1" + elliptic "6.5.4" + hash.js "1.1.7" + +"@ethersproject/strings@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" + integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/transactions@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" + integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== + dependencies: + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + "@ethersproject/signing-key" "^5.7.0" + +"@ethersproject/web@^5.7.0": + version "5.7.1" + resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" + integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== + dependencies: + "@ethersproject/base64" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@humanwhocodes/config-array@^0.11.14": + version "0.11.14" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" + integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== + dependencies: + "@humanwhocodes/object-schema" "^2.0.2" + debug "^4.3.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^2.0.2": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" + integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== + +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" + integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + slash "^3.0.0" + +"@jest/core@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" + integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== + dependencies: + "@jest/console" "^29.7.0" + "@jest/reporters" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + ci-info "^3.2.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-changed-files "^29.7.0" + jest-config "^29.7.0" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-resolve-dependencies "^29.7.0" + jest-runner "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + jest-watcher "^29.7.0" + micromatch "^4.0.4" + pretty-format "^29.7.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + +"@jest/environment@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" + integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== + dependencies: + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-mock "^29.7.0" + +"@jest/expect-utils@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" + integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== + dependencies: + jest-get-type "^29.6.3" + +"@jest/expect@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" + integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== + dependencies: + expect "^29.7.0" + jest-snapshot "^29.7.0" + +"@jest/fake-timers@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" + integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== + dependencies: + "@jest/types" "^29.6.3" + "@sinonjs/fake-timers" "^10.0.2" + "@types/node" "*" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-util "^29.7.0" + +"@jest/globals@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" + integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/types" "^29.6.3" + jest-mock "^29.7.0" + +"@jest/reporters@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" + integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" + "@types/node" "*" + chalk "^4.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^6.0.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.1.3" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + jest-worker "^29.7.0" + slash "^3.0.0" + string-length "^4.0.1" + strip-ansi "^6.0.0" + v8-to-istanbul "^9.0.1" + +"@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== + dependencies: + "@sinclair/typebox" "^0.27.8" + +"@jest/source-map@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" + integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== + dependencies: + "@jridgewell/trace-mapping" "^0.3.18" + callsites "^3.0.0" + graceful-fs "^4.2.9" + +"@jest/test-result@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" + integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== + dependencies: + "@jest/console" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-sequencer@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" + integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== + dependencies: + "@jest/test-result" "^29.7.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + slash "^3.0.0" + +"@jest/transform@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" + integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.2" + +"@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== + dependencies: + "@jest/schemas" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.scandir@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-3.0.0.tgz#91c0a33e1aeaedcd4bab2bf31be5d1962a55d2a7" + integrity sha512-ktI9+PxfHYtKjF3cLTUAh2N+b8MijCRPNwKJNqTVdL0gB0QxLU2rIRaZ1t71oEa3YBDE6bukH1sR0+CDnpp/Mg== + dependencies: + "@nodelib/fs.stat" "3.0.0" + run-parallel "^1.2.0" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.stat@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-3.0.0.tgz#ef6c829f2b05f42595d88854ebd777d4335ff0a9" + integrity sha512-2tQOI38s19P9i7X/Drt0v8iMA+KMsgdhB/dyPER+e+2Y8L1Z7QvnuRdW/uLuf5YRFUYmnj4bMA6qCuZHFI1GDQ== + +"@nodelib/fs.walk@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-2.0.0.tgz#10499ac2210f6399770b465ba728adafc7d44bb1" + integrity sha512-54voNDBobGdMl3BUXSu7UaDh1P85PGHWlJ5e0XhPugo1JulOyCtp2I+5ri4wplGDJ8QGwPEQW7/x3yTLU7yF1A== + dependencies: + "@nodelib/fs.scandir" "3.0.0" + fastq "^1.15.0" + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@pkgr/core@^0.1.0": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.1.1.tgz#1ec17e2edbec25c8306d424ecfbf13c7de1aaa31" + integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA== + +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + +"@sinonjs/commons@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" + integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== + dependencies: + type-detect "4.0.8" + +"@sinonjs/fake-timers@^10.0.2": + version "10.3.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== + dependencies: + "@sinonjs/commons" "^3.0.0" + +"@snyk/github-codeowners@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@snyk/github-codeowners/-/github-codeowners-1.1.0.tgz#45b99732c3c38b5f5b47e43d2b0c9db67a6d2bcc" + integrity sha512-lGFf08pbkEac0NYgVf4hdANpAgApRjNByLXB+WBip3qj1iendOIyAwP2GKkKbQMNVy2r1xxDf0ssfWscoiC+Vw== + dependencies: + commander "^4.1.1" + ignore "^5.1.8" + p-map "^4.0.0" + +"@tsconfig/node10@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.11.tgz#6ee46400685f130e278128c7b38b7e031ff5b2f2" + integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== + +"@types/babel__core@^7.1.14": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.8" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.20.6" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7" + integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg== + dependencies: + "@babel/types" "^7.20.7" + +"@types/graceful-fs@^4.1.3": + version "4.1.9" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== + +"@types/istanbul-lib-report@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/jest@^29.5.12": + version "29.5.12" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.12.tgz#7f7dc6eb4cf246d2474ed78744b05d06ce025544" + integrity sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw== + dependencies: + expect "^29.0.0" + pretty-format "^29.0.0" + +"@types/minimist@^1.2.0": + version "1.2.5" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" + integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== + +"@types/node-fetch@^2.6.11": + version "2.6.11" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz#9b39b78665dae0e82a08f02f4967d62c66f95d24" + integrity sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g== + dependencies: + "@types/node" "*" + form-data "^4.0.0" + +"@types/node@*", "@types/node@^20.11.19": + version "20.14.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.5.tgz#fe35e3022ebe58b8f201580eb24e1fcfc0f2487d" + integrity sha512-aoRR+fJkZT2l0aGOJhuA8frnCSoNX6W7U2mpNq63+BxBIj5BQFt8rHy627kijCmm63ijdSdwvGgpUsU6MBsZZA== + dependencies: + undici-types "~5.26.4" + +"@types/normalize-package-data@^2.4.0": + version "2.4.4" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== + +"@types/stack-utils@^2.0.0": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" + integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== + +"@types/yargs-parser@*": + version "21.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== + +"@types/yargs@^17.0.8": + version "17.0.32" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" + integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== + dependencies: + "@types/yargs-parser" "*" + +"@typescript-eslint/eslint-plugin@^7.0.1": + version "7.13.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.13.1.tgz#cdc521c8bca38b55585cf30db787fb2abad3f9fd" + integrity sha512-kZqi+WZQaZfPKnsflLJQCz6Ze9FFSMfXrrIOcyargekQxG37ES7DJNpJUE9Q/X5n3yTIP/WPutVNzgknQ7biLg== + dependencies: + "@eslint-community/regexpp" "^4.10.0" + "@typescript-eslint/scope-manager" "7.13.1" + "@typescript-eslint/type-utils" "7.13.1" + "@typescript-eslint/utils" "7.13.1" + "@typescript-eslint/visitor-keys" "7.13.1" + graphemer "^1.4.0" + ignore "^5.3.1" + natural-compare "^1.4.0" + ts-api-utils "^1.3.0" + +"@typescript-eslint/parser@^7.0.1": + version "7.13.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.13.1.tgz#fac57811b3e519185f7259bac312291f7b9c4e72" + integrity sha512-1ELDPlnLvDQ5ybTSrMhRTFDfOQEOXNM+eP+3HT/Yq7ruWpciQw+Avi73pdEbA4SooCawEWo3dtYbF68gN7Ed1A== + dependencies: + "@typescript-eslint/scope-manager" "7.13.1" + "@typescript-eslint/types" "7.13.1" + "@typescript-eslint/typescript-estree" "7.13.1" + "@typescript-eslint/visitor-keys" "7.13.1" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@7.13.1": + version "7.13.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.13.1.tgz#c08041206904bf36f0e6997efdb0ca775e0c452e" + integrity sha512-adbXNVEs6GmbzaCpymHQ0MB6E4TqoiVbC0iqG3uijR8ZYfpAXMGttouQzF4Oat3P2GxDVIrg7bMI/P65LiQZdg== + dependencies: + "@typescript-eslint/types" "7.13.1" + "@typescript-eslint/visitor-keys" "7.13.1" + +"@typescript-eslint/type-utils@7.13.1": + version "7.13.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.13.1.tgz#63bec3f1fb43cf0bc409cbdb88ef96d118ca8632" + integrity sha512-aWDbLu1s9bmgPGXSzNCxELu+0+HQOapV/y+60gPXafR8e2g1Bifxzevaa+4L2ytCWm+CHqpELq4CSoN9ELiwCg== + dependencies: + "@typescript-eslint/typescript-estree" "7.13.1" + "@typescript-eslint/utils" "7.13.1" + debug "^4.3.4" + ts-api-utils "^1.3.0" + +"@typescript-eslint/types@7.13.1": + version "7.13.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.13.1.tgz#787db283bd0b58751094c90d5b58bbf5e9fc9bd8" + integrity sha512-7K7HMcSQIAND6RBL4kDl24sG/xKM13cA85dc7JnmQXw2cBDngg7c19B++JzvJHRG3zG36n9j1i451GBzRuHchw== + +"@typescript-eslint/typescript-estree@7.13.1": + version "7.13.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.13.1.tgz#3412841b130e070db2f675e3d9b8cb1ae49e1c3f" + integrity sha512-uxNr51CMV7npU1BxZzYjoVz9iyjckBduFBP0S5sLlh1tXYzHzgZ3BR9SVsNed+LmwKrmnqN3Kdl5t7eZ5TS1Yw== + dependencies: + "@typescript-eslint/types" "7.13.1" + "@typescript-eslint/visitor-keys" "7.13.1" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + minimatch "^9.0.4" + semver "^7.6.0" + ts-api-utils "^1.3.0" + +"@typescript-eslint/utils@7.13.1": + version "7.13.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.13.1.tgz#611083379caa0d3a2c09d126c65065a3e4337ba2" + integrity sha512-h5MzFBD5a/Gh/fvNdp9pTfqJAbuQC4sCN2WzuXme71lqFJsZtLbjxfSk4r3p02WIArOF9N94pdsLiGutpDbrXQ== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + "@typescript-eslint/scope-manager" "7.13.1" + "@typescript-eslint/types" "7.13.1" + "@typescript-eslint/typescript-estree" "7.13.1" + +"@typescript-eslint/visitor-keys@7.13.1": + version "7.13.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.13.1.tgz#9c229a795a919db61f2d7f2337ef584ac05fbe96" + integrity sha512-k/Bfne7lrP7hcb7m9zSsgcBmo+8eicqqfNAJ7uUY+jkTFpKeH2FSkWpFRtimBxgkyvqfu9jTPRbYOvud6isdXA== + dependencies: + "@typescript-eslint/types" "7.13.1" + eslint-visitor-keys "^3.4.3" + +"@ungap/structured-clone@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + +JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1: + version "8.3.3" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.3.tgz#9caeac29eefaa0c41e3d4c65137de4d6f34df43e" + integrity sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw== + dependencies: + acorn "^8.11.0" + +acorn@^8.11.0, acorn@^8.4.1, acorn@^8.9.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.0.tgz#1627bfa2e058148036133b8d9b51a700663c294c" + integrity sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw== + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.11.0: + version "8.16.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.16.0.tgz#22e2a92b94f005f7e0f9c9d39652ef0b8f6f0cb4" + integrity sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw== + dependencies: + fast-deep-equal "^3.1.3" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.4.1" + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-escapes@^6.2.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.1.tgz#76c54ce9b081dad39acec4b5d53377913825fb0f" + integrity sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + +ansi-styles@^6.0.0, ansi-styles@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + +anymatch@^3.0.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +arity-n@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" + integrity sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ== + +array-buffer-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== + dependencies: + call-bind "^1.0.5" + is-array-buffer "^3.0.4" + +array-ify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" + integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== + +array-last@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/array-last/-/array-last-1.3.0.tgz#7aa77073fec565ddab2493f5f88185f404a9d336" + integrity sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg== + dependencies: + is-number "^4.0.0" + +array-timsort@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-timsort/-/array-timsort-1.0.3.tgz#3c9e4199e54fb2b9c3fe5976396a21614ef0d926" + integrity sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ== + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +arraybuffer.prototype.slice@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== + dependencies: + array-buffer-byte-length "^1.0.1" + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.2.1" + get-intrinsic "^1.2.3" + is-array-buffer "^3.0.4" + is-shared-array-buffer "^1.0.2" + +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + +axios@^1.7.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.2.tgz#b625db8a7051fbea61c35a3cbb3a1daa7b9c7621" + integrity sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw== + dependencies: + follow-redirects "^1.15.6" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + +babel-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" + integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== + dependencies: + "@jest/transform" "^29.7.0" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^29.6.3" + chalk "^4.0.0" + graceful-fs "^4.2.9" + slash "^3.0.0" + +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" + integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.1.14" + "@types/babel__traverse" "^7.0.6" + +babel-plugin-polyfill-corejs2@^0.4.10: + version "0.4.11" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" + integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.6.2" + semver "^6.3.1" + +babel-plugin-polyfill-corejs3@^0.10.4: + version "0.10.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77" + integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.1" + core-js-compat "^3.36.1" + +babel-plugin-polyfill-regenerator@^0.6.1: + version "0.6.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" + integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.2" + +babel-preset-current-node-syntax@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" + integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + +babel-preset-jest@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" + integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== + dependencies: + babel-plugin-jest-hoist "^29.6.3" + babel-preset-current-node-syntax "^1.0.0" + +babylon@^6.9.1: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +bech32@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" + integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== + +bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browserslist@^4.22.2, browserslist@^4.23.0: + version "4.23.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.1.tgz#ce4af0534b3d37db5c1a4ca98b9080f985041e96" + integrity sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw== + dependencies: + caniuse-lite "^1.0.30001629" + electron-to-chromium "^1.4.796" + node-releases "^2.0.14" + update-browserslist-db "^1.0.16" + +bs-logger@0.x: + version "0.2.6" + resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" + integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + dependencies: + fast-json-stable-stringify "2.x" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + +callsites@^3.0.0, callsites@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-keys@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" + integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== + dependencies: + camelcase "^5.3.1" + map-obj "^4.0.0" + quick-lru "^4.0.1" + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-lite@^1.0.30001629: + version "1.0.30001636" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz#b15f52d2bdb95fad32c2f53c0b68032b85188a78" + integrity sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg== + +chalk-template@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/chalk-template/-/chalk-template-1.1.0.tgz#ffc55db6dd745e9394b85327c8ac8466edb7a7b1" + integrity sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg== + dependencies: + chalk "^5.2.0" + +chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^5.2.0, chalk@^5.3.0, chalk@~5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" + integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== + +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + +ci-info@^3.2.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== + +cjs-module-lexer@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz#c485341ae8fd999ca4ee5af2d7a1c9ae01e0099c" + integrity sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q== + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +clear-module@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/clear-module/-/clear-module-4.1.2.tgz#5a58a5c9f8dccf363545ad7284cad3c887352a80" + integrity sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw== + dependencies: + parent-module "^2.0.0" + resolve-from "^5.0.0" + +cli-cursor@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-4.0.0.tgz#3cecfe3734bf4fe02a8361cbdc0f6fe28c6a57ea" + integrity sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg== + dependencies: + restore-cursor "^4.0.0" + +cli-truncate@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-4.0.0.tgz#6cc28a2924fee9e25ce91e973db56c7066e6172a" + integrity sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA== + dependencies: + slice-ansi "^5.0.0" + string-width "^7.0.0" + +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== + +collect-v8-coverage@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colorette@^2.0.20: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^12.1.0, commander@~12.1.0: + version "12.1.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-12.1.0.tgz#01423b36f501259fdaac4d0e4d60c96c991585d3" + integrity sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA== + +commander@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +comment-json@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/comment-json/-/comment-json-4.2.3.tgz#50b487ebbf43abe44431f575ebda07d30d015365" + integrity sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw== + dependencies: + array-timsort "^1.0.3" + core-util-is "^1.0.3" + esprima "^4.0.1" + has-own-prop "^2.0.0" + repeat-string "^1.6.1" + +compare-func@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" + integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== + dependencies: + array-ify "^1.0.0" + dot-prop "^5.1.0" + +compose-function@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" + integrity sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg== + dependencies: + arity-n "^1.0.4" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +concurrently@^8.2.2: + version "8.2.2" + resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-8.2.2.tgz#353141985c198cfa5e4a3ef90082c336b5851784" + integrity sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg== + dependencies: + chalk "^4.1.2" + date-fns "^2.30.0" + lodash "^4.17.21" + rxjs "^7.8.1" + shell-quote "^1.8.1" + spawn-command "0.0.2" + supports-color "^8.1.1" + tree-kill "^1.2.2" + yargs "^17.7.2" + +conventional-changelog-angular@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz#5eec8edbff15aa9b1680a8dcfbd53e2d7eb2ba7a" + integrity sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ== + dependencies: + compare-func "^2.0.0" + +conventional-changelog-conventionalcommits@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz#aa5da0f1b2543094889e8cf7616ebe1a8f5c70d5" + integrity sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w== + dependencies: + compare-func "^2.0.0" + +conventional-commits-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz#57f3594b81ad54d40c1b4280f04554df28627d9a" + integrity sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA== + dependencies: + JSONStream "^1.3.5" + is-text-path "^2.0.0" + meow "^12.0.1" + split2 "^4.0.0" + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +core-js-compat@^3.31.0, core-js-compat@^3.36.1: + version "3.37.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.1.tgz#c844310c7852f4bdf49b8d339730b97e17ff09ee" + integrity sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg== + dependencies: + browserslist "^4.23.0" + +core-util-is@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig-typescript-loader@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.0.0.tgz#0d3becfe022a871f7275ceb2397d692e06045dc8" + integrity sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA== + dependencies: + jiti "^1.19.1" + +cosmiconfig@^8.3.6: + version "8.3.6" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" + integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== + dependencies: + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + path-type "^4.0.0" + +create-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" + integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== + dependencies: + "@jest/types" "^29.6.3" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-config "^29.7.0" + jest-util "^29.7.0" + prompts "^2.0.1" + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cspell-config-lib@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.9.0.tgz#df256d9228cdfdc4a081eecec1706b3dd8e4de57" + integrity sha512-1FQketvqo6IktnyC2ishEIzfqSX2DNhsfpb0MIG/nNeG5KvbjSeozOZpfyrALVqhPUJZVWfMP3+N0/hj3AzH+g== + dependencies: + "@cspell/cspell-types" "8.9.0" + comment-json "^4.2.3" + yaml "^2.4.5" + +cspell-dictionary@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.9.0.tgz#57ec639760f4b27cc568c4905f1cd35595655f91" + integrity sha512-IsFyWsn9P979xoJ0PgWHdyjxVcDYe5nVmHMgJRecQ5LLhl2gFkOmsu+aYIh2qlHCLmcbzH31Me2x7Fd+jA6AXw== + dependencies: + "@cspell/cspell-pipe" "8.9.0" + "@cspell/cspell-types" "8.9.0" + cspell-trie-lib "8.9.0" + fast-equals "^5.0.1" + gensequence "^7.0.0" + +cspell-gitignore@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.9.0.tgz#1814a4b3ebdbf995aa1fe2be04c80a45766e5811" + integrity sha512-/iw+iqFLgySqW7xJ+kDHtC0mRjajDM1/jvnu4pUoxU9cRanCEqg2IAA/BET+n3ZEs/etsl8P4MB0lgWE98Z15g== + dependencies: + cspell-glob "8.9.0" + find-up-simple "^1.0.0" + +cspell-glob@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.9.0.tgz#a28b85732abd82e7293bb9d84a05d1f5d3dddf8a" + integrity sha512-j96SMMzT5Nz0nKCUECLkoyPEEms4hXKm/S7Vj80A356TFglTJD/yYiMKfWUamCVPm8UYODCz7W0s/liR7gSBSw== + dependencies: + micromatch "^4.0.7" + +cspell-grammar@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.9.0.tgz#2d22fbcdab8980eae9ab3344d4ab2d76dcc3b3ba" + integrity sha512-oZEOE64lLc0clLGOJeqc5d1Yzc1fUtXQAAeLIrS+uoVM7nA1SqgIEv1JBjp3R++8jQKLjS5n7v16VW5A/yk67w== + dependencies: + "@cspell/cspell-pipe" "8.9.0" + "@cspell/cspell-types" "8.9.0" + +cspell-io@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.9.0.tgz#7b2ffa99af96b742ec584dbc10fab2bc9517a60c" + integrity sha512-8KHERgqlg8KKpn04Owg2VY1Di2dSiwV/v63bUFxsGb8ORGIQ1VcydxtANwWuugUrZvtVrSFsbuU2fK/LRmAnoQ== + dependencies: + "@cspell/cspell-service-bus" "8.9.0" + "@cspell/url" "8.9.0" + +cspell-lib@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.9.0.tgz#b843d7c97360d22df93bea701f7d9eed1b72f934" + integrity sha512-k347TQs1QRUyyHWHYQxPJddApos/irFousr9W/M/jEkYTTKzMMfaXK8m20kBSnlJ+BOUMa+f8d+KPEw6QLwtJQ== + dependencies: + "@cspell/cspell-bundled-dicts" "8.9.0" + "@cspell/cspell-pipe" "8.9.0" + "@cspell/cspell-resolver" "8.9.0" + "@cspell/cspell-types" "8.9.0" + "@cspell/dynamic-import" "8.9.0" + "@cspell/strong-weak-map" "8.9.0" + "@cspell/url" "8.9.0" + clear-module "^4.1.2" + comment-json "^4.2.3" + cspell-config-lib "8.9.0" + cspell-dictionary "8.9.0" + cspell-glob "8.9.0" + cspell-grammar "8.9.0" + cspell-io "8.9.0" + cspell-trie-lib "8.9.0" + env-paths "^3.0.0" + fast-equals "^5.0.1" + gensequence "^7.0.0" + import-fresh "^3.3.0" + resolve-from "^5.0.0" + vscode-languageserver-textdocument "^1.0.11" + vscode-uri "^3.0.8" + xdg-basedir "^5.1.0" + +cspell-trie-lib@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.9.0.tgz#266a1bdf248f075a61851d7cd4bd082458a1780f" + integrity sha512-fQNQyFoeZA7b66jvhGaUYPzsS6gmPRJa6RcEpw2onP41S+IyLO6egubUu/qq8Hn1ebgJe/0Pc4fzkgv6MfV3tQ== + dependencies: + "@cspell/cspell-pipe" "8.9.0" + "@cspell/cspell-types" "8.9.0" + gensequence "^7.0.0" + +cspell@^8.4.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.9.0.tgz#f8a1faa99cc266b94b38744708417ea58e136ffd" + integrity sha512-lDYu5p/XU3rqiNjMV46s92yJ7SfVyzAy03OtCJ94fopegZwFLjqZvqoy509ccP/0sHmiv83oTed8LP6Fm3kjpw== + dependencies: + "@cspell/cspell-json-reporter" "8.9.0" + "@cspell/cspell-pipe" "8.9.0" + "@cspell/cspell-types" "8.9.0" + "@cspell/dynamic-import" "8.9.0" + chalk "^5.3.0" + chalk-template "^1.1.0" + commander "^12.1.0" + cspell-gitignore "8.9.0" + cspell-glob "8.9.0" + cspell-io "8.9.0" + cspell-lib "8.9.0" + fast-glob "^3.3.2" + fast-json-stable-stringify "^2.1.0" + file-entry-cache "^8.0.0" + get-stdin "^9.0.0" + semver "^7.6.2" + strip-ansi "^7.1.0" + vscode-uri "^3.0.8" + +dargs@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" + integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== + +data-uri-to-buffer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" + integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== + +data-view-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +date-fns@^2.30.0: + version "2.30.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" + integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== + dependencies: + "@babel/runtime" "^7.21.0" + +debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@~4.3.4: + version "4.3.5" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" + integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== + dependencies: + ms "2.1.2" + +decamelize-keys@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" + integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== + dependencies: + decamelize "^1.1.0" + map-obj "^1.0.0" + +decamelize@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + +dedent@^1.0.0: + version "1.5.3" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" + integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deepmerge@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +define-data-property@^1.0.1, define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-properties@^1.2.0, define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +detect-newline@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + +diff-sequences@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dot-prop@^5.1.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" + integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + dependencies: + is-obj "^2.0.0" + +easy-table@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/easy-table/-/easy-table-1.2.0.tgz#ba9225d7138fee307bfd4f0b5bc3c04bdc7c54eb" + integrity sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww== + dependencies: + ansi-regex "^5.0.1" + optionalDependencies: + wcwidth "^1.0.1" + +electron-to-chromium@^1.4.796: + version "1.4.805" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.805.tgz#1d526e384c20944a3c68f618f9774edc384c4733" + integrity sha512-8W4UJwX/w9T0QSzINJckTKG6CYpAUTqsaWcWIsdud3I1FYJcMgW9QqT1/4CBff/pP/TihWh13OmiyY8neto6vw== + +elliptic@6.5.4: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emittery@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" + integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== + +emoji-regex@^10.3.0: + version "10.3.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.3.0.tgz#76998b9268409eb3dae3de989254d456e70cfe23" + integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +env-paths@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz#2f1e89c2f6dbd3408e1b1711dd82d62e317f58da" + integrity sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2: + version "1.23.3" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" + integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== + dependencies: + array-buffer-byte-length "^1.0.1" + arraybuffer.prototype.slice "^1.0.3" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + data-view-buffer "^1.0.1" + data-view-byte-length "^1.0.1" + data-view-byte-offset "^1.0.0" + es-define-property "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-set-tostringtag "^2.0.3" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.6" + get-intrinsic "^1.2.4" + get-symbol-description "^1.0.2" + globalthis "^1.0.3" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + has-proto "^1.0.3" + has-symbols "^1.0.3" + hasown "^2.0.2" + internal-slot "^1.0.7" + is-array-buffer "^3.0.4" + is-callable "^1.2.7" + is-data-view "^1.0.1" + is-negative-zero "^2.0.3" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.3" + is-string "^1.0.7" + is-typed-array "^1.1.13" + is-weakref "^1.0.2" + object-inspect "^1.13.1" + object-keys "^1.1.1" + object.assign "^4.1.5" + regexp.prototype.flags "^1.5.2" + safe-array-concat "^1.1.2" + safe-regex-test "^1.0.3" + string.prototype.trim "^1.2.9" + string.prototype.trimend "^1.0.8" + string.prototype.trimstart "^1.0.8" + typed-array-buffer "^1.0.2" + typed-array-byte-length "^1.0.1" + typed-array-byte-offset "^1.0.2" + typed-array-length "^1.0.6" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.15" + +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.2.1, es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== + dependencies: + get-intrinsic "^1.2.4" + has-tostringtag "^1.0.2" + hasown "^2.0.1" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +esbuild@^0.20.1: + version "0.20.2" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" + integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== + optionalDependencies: + "@esbuild/aix-ppc64" "0.20.2" + "@esbuild/android-arm" "0.20.2" + "@esbuild/android-arm64" "0.20.2" + "@esbuild/android-x64" "0.20.2" + "@esbuild/darwin-arm64" "0.20.2" + "@esbuild/darwin-x64" "0.20.2" + "@esbuild/freebsd-arm64" "0.20.2" + "@esbuild/freebsd-x64" "0.20.2" + "@esbuild/linux-arm" "0.20.2" + "@esbuild/linux-arm64" "0.20.2" + "@esbuild/linux-ia32" "0.20.2" + "@esbuild/linux-loong64" "0.20.2" + "@esbuild/linux-mips64el" "0.20.2" + "@esbuild/linux-ppc64" "0.20.2" + "@esbuild/linux-riscv64" "0.20.2" + "@esbuild/linux-s390x" "0.20.2" + "@esbuild/linux-x64" "0.20.2" + "@esbuild/netbsd-x64" "0.20.2" + "@esbuild/openbsd-x64" "0.20.2" + "@esbuild/sunos-x64" "0.20.2" + "@esbuild/win32-arm64" "0.20.2" + "@esbuild/win32-ia32" "0.20.2" + "@esbuild/win32-x64" "0.20.2" + +esbuild@~0.21.4: + version "0.21.5" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== + optionalDependencies: + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" + +escalade@^3.1.1, escalade@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-config-prettier@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f" + integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== + +eslint-plugin-prettier@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz#17cfade9e732cef32b5f5be53bd4e07afd8e67e1" + integrity sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw== + dependencies: + prettier-linter-helpers "^1.0.0" + synckit "^0.8.6" + +eslint-plugin-sonarjs@^0.24.0: + version "0.24.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.24.0.tgz#b594ccb9b1d6123edd3c3fe3a45b4392e14932d7" + integrity sha512-87zp50mbbNrSTuoEOebdRQBPa0mdejA5UEjyuScyIw8hEpEjfWP89Qhkq5xVZfVyVSRQKZc9alVm7yRKQvvUmg== + +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint@^8.56.0: + version "8.57.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" + integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.57.0" + "@humanwhocodes/config-array" "^0.11.14" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + "@ungap/structured-clone" "^1.2.0" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + dependencies: + acorn "^8.9.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" + +esprima@^4.0.0, esprima@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +eventemitter3@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" + integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +execa@~8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c" + integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^8.0.1" + human-signals "^5.0.0" + is-stream "^3.0.0" + merge-stream "^2.0.0" + npm-run-path "^5.1.0" + onetime "^6.0.0" + signal-exit "^4.1.0" + strip-final-newline "^3.0.0" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== + +expect@^29.0.0, expect@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" + integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== + dependencies: + "@jest/expect-utils" "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-diff@^1.1.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" + integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== + +fast-equals@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/fast-equals/-/fast-equals-5.0.1.tgz#a4eefe3c5d1c0d021aeed0bc10ba5e0c12ee405d" + integrity sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ== + +fast-glob@^3.2.9, fast-glob@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.15.0, fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-entry-cache@8.0.0, file-entry-cache@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f" + integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== + dependencies: + flat-cache "^4.0.0" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + +filter-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" + integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== + +find-up-simple@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/find-up-simple/-/find-up-simple-1.0.0.tgz#21d035fde9fdbd56c8f4d2f63f32fd93a1cfc368" + integrity sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw== + +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.3" + rimraf "^3.0.2" + +flat-cache@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c" + integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.4" + +flatted@^3.2.9: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + +follow-redirects@^1.15.6: + version "1.15.6" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" + integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@^2.3.2, fsevents@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +function.prototype.name@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + functions-have-names "^1.2.3" + +functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gensequence@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/gensequence/-/gensequence-7.0.0.tgz#bb6aedec8ff665e3a6c42f92823121e3a6ea7718" + integrity sha512-47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-east-asian-width@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz#5e6ebd9baee6fb8b7b6bd505221065f0cd91f64e" + integrity sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA== + +get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-stdin@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-9.0.0.tgz#3983ff82e03d56f1b2ea0d3e60325f39d703a575" + integrity sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA== + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-stream@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2" + integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== + +get-symbol-description@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== + dependencies: + call-bind "^1.0.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + +get-tsconfig@^4.7.5: + version "4.7.5" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.5.tgz#5e012498579e9a6947511ed0cd403272c7acbbaf" + integrity sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw== + dependencies: + resolve-pkg-maps "^1.0.0" + +git-raw-commits@^2.0.11: + version "2.0.11" + resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" + integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== + dependencies: + dargs "^7.0.0" + lodash "^4.17.15" + meow "^8.0.0" + split2 "^3.0.0" + through2 "^4.0.0" + +glob-parent@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@^7.1.3, glob@^7.1.4: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-directory@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/global-directory/-/global-directory-4.0.1.tgz#4d7ac7cfd2cb73f304c53b8810891748df5e361e" + integrity sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q== + dependencies: + ini "4.1.1" + +global-dirs@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" + integrity sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg== + dependencies: + ini "^1.3.4" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^13.19.0: + version "13.24.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== + dependencies: + type-fest "^0.20.2" + +globalthis@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" + integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== + dependencies: + define-properties "^1.2.1" + gopd "^1.0.1" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.2, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + +hard-rejection@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" + integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-own-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-own-prop/-/has-own-prop-2.0.0.tgz#f0f95d58f65804f5d218db32563bb85b8e0417af" + integrity sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ== + +has-own-property@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/has-own-property/-/has-own-property-0.1.0.tgz#992b0f5bb3a25416f8d4d0cde53f497b9d7b1ea5" + integrity sha512-14qdBKoonU99XDhWcFKZTShK+QV47qU97u8zzoVo9cL5TZ3BmBHXogItSt9qJjR0KUMFRhcCW8uGIGl8nkl7Aw== + +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-proto@^1.0.1, has-proto@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + +hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hosted-git-info@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" + integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== + dependencies: + lru-cache "^6.0.0" + +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +human-signals@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28" + integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== + +husky@^9.0.11: + version "9.0.11" + resolved "https://registry.yarnpkg.com/husky/-/husky-9.0.11.tgz#fc91df4c756050de41b3e478b2158b87c1e79af9" + integrity sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw== + +identity-function@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/identity-function/-/identity-function-1.0.0.tgz#bea1159f0985239be3ca348edf40ce2f0dd2c21d" + integrity sha512-kNrgUK0qI+9qLTBidsH85HjDLpZfrrS0ElquKKe/fJFdB3D7VeKdXXEvOPDUHSHOzdZKCAAaQIWWyp0l2yq6pw== + +ignore@^5.1.8, ignore@^5.2.0, ignore@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + +import-fresh@^3.0.0, import-fresh@^3.2.1, import-fresh@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + +import-meta-resolve@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz#f9db8bead9fafa61adb811db77a2bf22c5399706" + integrity sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw== + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ini@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1" + integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g== + +ini@^1.3.4: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +internal-slot@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== + dependencies: + es-errors "^1.3.0" + hasown "^2.0.0" + side-channel "^1.0.4" + +is-array-buffer@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.13.0, is-core-module@^2.5.0: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== + dependencies: + hasown "^2.0.0" + +is-data-view@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== + dependencies: + is-typed-array "^1.1.13" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-fullwidth-code-point@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" + integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== + +is-fullwidth-code-point@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz#9609efced7c2f97da7b60145ef481c787c7ba704" + integrity sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA== + dependencies: + get-east-asian-width "^1.0.0" + +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-iterable@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-iterable/-/is-iterable-1.1.1.tgz#71f9aa6f113e1d968ebe1d41cff4c8fb23a817bc" + integrity sha512-EdOZCr0NsGE00Pot+x1ZFx9MJK3C6wy91geZpXwvwexDLJvA4nzYyZf7r+EIwSeVsOLDdBz7ATg9NqKTzuNYuQ== + +is-negative-zero@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" + integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== + dependencies: + call-bind "^1.0.7" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-text-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-2.0.0.tgz#b2484e2b720a633feb2e85b67dc193ff72c75636" + integrity sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw== + dependencies: + text-extensions "^2.0.0" + +is-typed-array@^1.1.13: + version "1.1.13" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== + dependencies: + which-typed-array "^1.1.14" + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== + +istanbul-lib-instrument@^5.0.4: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-instrument@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz#91655936cf7380e4e473383081e38478b69993b1" + integrity sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw== + dependencies: + "@babel/core" "^7.23.9" + "@babel/parser" "^7.23.9" + "@istanbuljs/schema" "^0.1.3" + istanbul-lib-coverage "^3.2.0" + semver "^7.5.4" + +istanbul-lib-report@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^4.0.0" + supports-color "^7.1.0" + +istanbul-lib-source-maps@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + +istanbul-reports@^3.1.3: + version "3.1.7" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" + integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + +iterable-lookahead@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/iterable-lookahead/-/iterable-lookahead-1.0.0.tgz#896dfcb78680bdb50036e97edb034c8b68a9737f" + integrity sha512-hJnEP2Xk4+44DDwJqUQGdXal5VbyeWLaPyDl2AQc242Zr7iqz4DgpQOrEzglWVMGHMDCkguLHEKxd1+rOsmgSQ== + +jest-changed-files@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" + integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== + dependencies: + execa "^5.0.0" + jest-util "^29.7.0" + p-limit "^3.1.0" + +jest-circus@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" + integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + dedent "^1.0.0" + is-generator-fn "^2.0.0" + jest-each "^29.7.0" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + p-limit "^3.1.0" + pretty-format "^29.7.0" + pure-rand "^6.0.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-cli@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" + integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== + dependencies: + "@jest/core" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + chalk "^4.0.0" + create-jest "^29.7.0" + exit "^0.1.2" + import-local "^3.0.2" + jest-config "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + yargs "^17.3.1" + +jest-config@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" + integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== + dependencies: + "@babel/core" "^7.11.6" + "@jest/test-sequencer" "^29.7.0" + "@jest/types" "^29.6.3" + babel-jest "^29.7.0" + chalk "^4.0.0" + ci-info "^3.2.0" + deepmerge "^4.2.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-circus "^29.7.0" + jest-environment-node "^29.7.0" + jest-get-type "^29.6.3" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-runner "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + micromatch "^4.0.4" + parse-json "^5.2.0" + pretty-format "^29.7.0" + slash "^3.0.0" + strip-json-comments "^3.1.1" + +jest-diff@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" + integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== + dependencies: + chalk "^4.0.0" + diff-sequences "^29.6.3" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-docblock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" + integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== + dependencies: + detect-newline "^3.0.0" + +jest-each@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" + integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== + dependencies: + "@jest/types" "^29.6.3" + chalk "^4.0.0" + jest-get-type "^29.6.3" + jest-util "^29.7.0" + pretty-format "^29.7.0" + +jest-environment-node@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" + integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-mock "^29.7.0" + jest-util "^29.7.0" + +jest-get-type@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" + integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== + +jest-haste-map@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" + integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== + dependencies: + "@jest/types" "^29.6.3" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + jest-worker "^29.7.0" + micromatch "^4.0.4" + walker "^1.0.8" + optionalDependencies: + fsevents "^2.3.2" + +jest-junit@16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-16.0.0.tgz#d838e8c561cf9fdd7eb54f63020777eee4136785" + integrity sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ== + dependencies: + mkdirp "^1.0.4" + strip-ansi "^6.0.1" + uuid "^8.3.2" + xml "^1.0.1" + +jest-leak-detector@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" + integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== + dependencies: + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-matcher-utils@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" + integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== + dependencies: + chalk "^4.0.0" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-message-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" + integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^29.6.3" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^29.7.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-mock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" + integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-util "^29.7.0" + +jest-pnp-resolver@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + +jest-regex-util@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" + integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== + +jest-resolve-dependencies@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" + integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== + dependencies: + jest-regex-util "^29.6.3" + jest-snapshot "^29.7.0" + +jest-resolve@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" + integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== + dependencies: + chalk "^4.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-pnp-resolver "^1.2.2" + jest-util "^29.7.0" + jest-validate "^29.7.0" + resolve "^1.20.0" + resolve.exports "^2.0.0" + slash "^3.0.0" + +jest-runner@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" + integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== + dependencies: + "@jest/console" "^29.7.0" + "@jest/environment" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + emittery "^0.13.1" + graceful-fs "^4.2.9" + jest-docblock "^29.7.0" + jest-environment-node "^29.7.0" + jest-haste-map "^29.7.0" + jest-leak-detector "^29.7.0" + jest-message-util "^29.7.0" + jest-resolve "^29.7.0" + jest-runtime "^29.7.0" + jest-util "^29.7.0" + jest-watcher "^29.7.0" + jest-worker "^29.7.0" + p-limit "^3.1.0" + source-map-support "0.5.13" + +jest-runtime@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" + integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/globals" "^29.7.0" + "@jest/source-map" "^29.6.3" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + cjs-module-lexer "^1.0.0" + collect-v8-coverage "^1.0.0" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + slash "^3.0.0" + strip-bom "^4.0.0" + +jest-snapshot@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" + integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== + dependencies: + "@babel/core" "^7.11.6" + "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-jsx" "^7.7.2" + "@babel/plugin-syntax-typescript" "^7.7.2" + "@babel/types" "^7.3.3" + "@jest/expect-utils" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + babel-preset-current-node-syntax "^1.0.0" + chalk "^4.0.0" + expect "^29.7.0" + graceful-fs "^4.2.9" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + natural-compare "^1.4.0" + pretty-format "^29.7.0" + semver "^7.5.3" + +jest-util@^29.0.0, jest-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-validate@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" + integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== + dependencies: + "@jest/types" "^29.6.3" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^29.6.3" + leven "^3.1.0" + pretty-format "^29.7.0" + +jest-watcher@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" + integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== + dependencies: + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + emittery "^0.13.1" + jest-util "^29.7.0" + string-length "^4.0.1" + +jest-worker@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== + dependencies: + "@types/node" "*" + jest-util "^29.7.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" + integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== + dependencies: + "@jest/core" "^29.7.0" + "@jest/types" "^29.6.3" + import-local "^3.0.2" + jest-cli "^29.7.0" + +jiti@^1.19.1, jiti@^1.21.0: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== + +js-sha3@0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" + integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^2.2.2, json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +keyv@^4.5.3, keyv@^4.5.4: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +kind-of@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +knip@^5.0.1: + version "5.21.2" + resolved "https://registry.yarnpkg.com/knip/-/knip-5.21.2.tgz#0b25001ee645882784c652cd14c3a3e7ff50ec37" + integrity sha512-V8bzHWjQyhkN0cxajxyHqaD8CPOkNtSwo4+Zue3z//4fbWO79xXLVp61fuaaTcT9O7I7E2ZjuHENtRkBrjSzCg== + dependencies: + "@ericcornelissen/bash-parser" "0.5.3" + "@nodelib/fs.walk" "2.0.0" + "@snyk/github-codeowners" "1.1.0" + easy-table "1.2.0" + fast-glob "^3.3.2" + file-entry-cache "8.0.0" + jiti "^1.21.0" + js-yaml "^4.1.0" + minimist "^1.2.8" + picocolors "^1.0.0" + picomatch "^4.0.1" + pretty-ms "^9.0.0" + resolve "^1.22.8" + smol-toml "^1.1.4" + strip-json-comments "5.0.1" + summary "2.1.0" + tsconfig-paths "^4.2.0" + zod "^3.22.4" + zod-validation-error "^3.0.3" + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lilconfig@~3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" + integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +lint-staged@^15.2.2: + version "15.2.7" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-15.2.7.tgz#97867e29ed632820c0fb90be06cd9ed384025649" + integrity sha512-+FdVbbCZ+yoh7E/RosSdqKJyUM2OEjTciH0TFNkawKgvFp1zbGlEC39RADg+xKBG1R4mhoH2j85myBQZ5wR+lw== + dependencies: + chalk "~5.3.0" + commander "~12.1.0" + debug "~4.3.4" + execa "~8.0.1" + lilconfig "~3.1.1" + listr2 "~8.2.1" + micromatch "~4.0.7" + pidtree "~0.6.0" + string-argv "~0.3.2" + yaml "~2.4.2" + +listr2@~8.2.1: + version "8.2.1" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.2.1.tgz#06a1a6efe85f23c5324180d7c1ddbd96b5eefd6d" + integrity sha512-irTfvpib/rNiD637xeevjO2l3Z5loZmuaRi0L0YE5LfijwVY96oyVn0DFD3o/teAok7nfobMG1THvvcHh/BP6g== + dependencies: + cli-truncate "^4.0.0" + colorette "^2.0.20" + eventemitter3 "^5.0.1" + log-update "^6.0.0" + rfdc "^1.3.1" + wrap-ansi "^9.0.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + +lodash.curry@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" + integrity sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA== + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.isfunction@^3.0.9: + version "3.0.9" + resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" + integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw== + +lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== + +lodash.kebabcase@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" + integrity sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== + +lodash.memoize@4.x: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.mergewith@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" + integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== + +lodash.snakecase@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" + integrity sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw== + +lodash.startcase@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" + integrity sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== + +lodash.upperfirst@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" + integrity sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== + +lodash@^4.17.15, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-update@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-6.0.0.tgz#0ddeb7ac6ad658c944c1de902993fce7c33f5e59" + integrity sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw== + dependencies: + ansi-escapes "^6.2.0" + cli-cursor "^4.0.0" + slice-ansi "^7.0.0" + strip-ansi "^7.1.0" + wrap-ansi "^9.0.0" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +magic-string@^0.16.0: + version "0.16.0" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.16.0.tgz#970ebb0da7193301285fb1aa650f39bdd81eb45a" + integrity sha512-c4BEos3y6G2qO0B9X7K0FVLOPT9uGrjYwYRLFmDqyl5YMboUviyecnXWp94fJTSMwPw2/sf+CEYt5AGpmklkkQ== + dependencies: + vlq "^0.2.1" + +make-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== + dependencies: + semver "^7.5.3" + +make-error@1.x, make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +map-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== + +map-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" + integrity sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ== + +map-obj@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" + integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== + +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== + +meow@^12.0.1: + version "12.1.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-12.1.1.tgz#e558dddbab12477b69b2e9a2728c327f191bace6" + integrity sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw== + +meow@^8.0.0: + version "8.1.2" + resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" + integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== + dependencies: + "@types/minimist" "^1.2.0" + camelcase-keys "^6.2.2" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "4.1.0" + normalize-package-data "^3.0.0" + read-pkg-up "^7.0.1" + redent "^3.0.0" + trim-newlines "^3.0.0" + type-fest "^0.18.0" + yargs-parser "^20.2.3" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4, micromatch@^4.0.7, micromatch@~4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" + integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^9.0.4: + version "9.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51" + integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw== + dependencies: + brace-expansion "^2.0.1" + +minimist-options@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" + integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + kind-of "^6.0.3" + +minimist@^1.2.6, minimist@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b" + integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + +normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-package-data@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" + integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== + dependencies: + hosted-git-info "^4.0.1" + is-core-module "^2.5.0" + semver "^7.3.4" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npm-run-path@^5.1.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.3.0.tgz#e23353d0ebb9317f174e93417e4a4d82d0249e9f" + integrity sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ== + dependencies: + path-key "^4.0.0" + +object-inspect@^1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-pairs@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-pairs/-/object-pairs-0.1.0.tgz#8276eed81d60b8549d69c5f73a682ab9da4ff32f" + integrity sha512-3ECr6K831I4xX/Mduxr9UC+HPOz/d6WKKYj9p4cmC8Lg8p7g8gitzsxNX5IWlSIgFWN/a4JgrJaoAMKn20oKwA== + +object-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/object-values/-/object-values-1.0.0.tgz#72af839630119e5b98c3b02bb8c27e3237158105" + integrity sha512-+8hwcz/JnQ9EpLIXzN0Rs7DLsBpJNT/xYehtB/jU93tHYr5BFEO8E+JGQNOSqE7opVzz5cGksKFHt7uUJVLSjQ== + +object.assign@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +onetime@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + dependencies: + mimic-fn "^4.0.0" + +optionator@^0.9.3: + version "0.9.4" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" + integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.5" + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2, p-limit@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parent-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-2.0.0.tgz#fa71f88ff1a50c27e15d8ff74e0e3a9523bf8708" + integrity sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg== + dependencies: + callsites "^3.1.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.0.0, parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse-ms@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-4.0.0.tgz#c0c058edd47c2a590151a718990533fd62803df4" + integrity sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0, picocolors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" + integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + +picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +picomatch@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab" + integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== + +pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + +pidtree@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" + integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +pirates@^4.0.4: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +possible-typed-array-names@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^3.2.5: + version "3.3.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.2.tgz#03ff86dc7c835f2d2559ee76876a3914cec4a90a" + integrity sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA== + +pretty-format@^29.0.0, pretty-format@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== + dependencies: + "@jest/schemas" "^29.6.3" + ansi-styles "^5.0.0" + react-is "^18.0.0" + +pretty-ms@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-9.0.0.tgz#53c57f81171c53be7ce3fd20bdd4265422bc5929" + integrity sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng== + dependencies: + parse-ms "^4.0.0" + +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + +punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +pure-rand@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" + integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +quick-lru@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" + integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== + +react-is@^18.0.0: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" + integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== + +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +readable-stream@3, readable-stream@^3.0.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + +regenerate-unicode-properties@^10.1.0: + version "10.1.1" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" + integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + +regexp.prototype.flags@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" + integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + dependencies: + call-bind "^1.0.6" + define-properties "^1.2.1" + es-errors "^1.3.0" + set-function-name "^2.0.1" + +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@5.0.0, resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-global@1.0.0, resolve-global@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255" + integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw== + dependencies: + global-dirs "^0.1.1" + +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + +resolve.exports@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" + integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + +resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.8: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +restore-cursor@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-4.0.0.tgz#519560a4318975096def6e609d44100edaa4ccb9" + integrity sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +reverse-arguments@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/reverse-arguments/-/reverse-arguments-1.0.0.tgz#c28095a3a921ac715d61834ddece9027992667cd" + integrity sha512-/x8uIPdTafBqakK0TmPNJzgkLP+3H+yxpUJhCQHsLBg1rYEVNR2D8BRYNWQhVBjyOd7oo1dZRVzIkwMY2oqfYQ== + +rfdc@^1.3.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca" + integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +run-parallel@^1.1.9, run-parallel@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rxjs@^7.8.1: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +safe-array-concat@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-regex-test@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-regex "^1.1.4" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0: + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@7.6.0: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + +semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.2: + version "7.6.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13" + integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== + +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +set-function-name@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.2" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote-word@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/shell-quote-word/-/shell-quote-word-1.0.1.tgz#e2bdfd22d599fd68886491677e38f560f9d469c9" + integrity sha512-lT297f1WLAdq0A4O+AknIFRP6kkiI3s8C913eJ0XqBxJbZPGWUNkRQk2u8zk4bEAjUJ5i+fSLwB6z1HzeT+DEg== + +shell-quote@^1.6.1, shell-quote@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + +side-channel@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + +signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +signal-exit@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" + integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== + dependencies: + ansi-styles "^6.0.0" + is-fullwidth-code-point "^4.0.0" + +slice-ansi@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.0.tgz#cd6b4655e298a8d1bdeb04250a433094b347b9a9" + integrity sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg== + dependencies: + ansi-styles "^6.2.1" + is-fullwidth-code-point "^5.0.0" + +smol-toml@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.2.1.tgz#6216334548763d4aac76cafff19f8914937ee13a" + integrity sha512-OtZKrVrGIT+m++lxyF0z5n68nkwdgZotPhy89bfA4T7nSWe0xeQtfbjM1z5VLTilJdWXH46g8i0oAcpQNkzZTg== + +source-map-support@0.5.13: + version "0.5.13" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spawn-command@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2.tgz#9544e1a43ca045f8531aac1a48cb29bdae62338e" + integrity sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ== + +spdx-correct@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" + integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.18" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz#22aa922dcf2f2885a6494a261f2d8b75345d0326" + integrity sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ== + +split2@^3.0.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" + integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== + dependencies: + readable-stream "^3.0.0" + +split2@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/split2/-/split2-4.2.0.tgz#c9c5920904d148bab0b9f67145f245a86aadbfa4" + integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +stack-utils@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== + dependencies: + escape-string-regexp "^2.0.0" + +string-argv@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" + integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== + +string-length@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== + dependencies: + char-regex "^1.0.2" + strip-ansi "^6.0.0" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.1.0.tgz#d994252935224729ea3719c49f7206dc9c46550a" + integrity sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw== + dependencies: + emoji-regex "^10.3.0" + get-east-asian-width "^1.0.0" + strip-ansi "^7.1.0" + +string.fromcodepoint@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/string.fromcodepoint/-/string.fromcodepoint-0.2.1.tgz#8d978333c0bc92538f50f383e4888f3e5619d653" + integrity sha512-n69H31OnxSGSZyZbgBlvYIXlrMhJQ0dQAX1js1QDhpaUH6zmU3QYlj07bCwCNlPOu3oRXIubGPl2gDGnHsiCqg== + +string.prototype.padend@^3.0.0: + version "3.1.6" + resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.6.tgz#ba79cf8992609a91c872daa47c6bb144ee7f62a5" + integrity sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + +string.prototype.trim@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.0" + es-object-atoms "^1.0.0" + +string.prototype.trimend@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string.prototype.trimstart@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-final-newline@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + +strip-json-comments@5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.1.tgz#0d8b7d01b23848ed7dbdf4baaaa31a8250d8cfa0" + integrity sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +summary@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/summary/-/summary-2.1.0.tgz#be8a49a0aa34eb6ceea56042cae88f8add4b0885" + integrity sha512-nMIjMrd5Z2nuB2RZCKJfFMjgS3fygbeyGk9PxPPaJR1RIcyN9yn4A63Isovzm3ZtQuEkLBVgMdPup8UeLH7aQw== + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0, supports-color@^8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +synckit@^0.8.6: + version "0.8.8" + resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.8.tgz#fe7fe446518e3d3d49f5e429f443cf08b6edfcd7" + integrity sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ== + dependencies: + "@pkgr/core" "^0.1.0" + tslib "^2.6.2" + +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + +text-extensions@^2.0.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-2.4.0.tgz#a1cfcc50cf34da41bfd047cc744f804d1680ea34" + integrity sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +through2@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" + integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== + dependencies: + readable-stream "3" + +"through@>=2.2.7 <3": + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-no-case@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/to-no-case/-/to-no-case-1.0.2.tgz#c722907164ef6b178132c8e69930212d1b4aa16a" + integrity sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg== + +to-pascal-case@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/to-pascal-case/-/to-pascal-case-1.0.0.tgz#0bbdc8df448886ba01535e543327048d0aa1ce78" + integrity sha512-QGMWHqM6xPrcQW57S23c5/3BbYb0Tbe9p+ur98ckRnGDwD4wbbtDiYI38CfmMKNB5Iv0REjs5SNDntTwvDxzZA== + dependencies: + to-space-case "^1.0.0" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +to-space-case@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/to-space-case/-/to-space-case-1.0.0.tgz#b052daafb1b2b29dc770cea0163e5ec0ebc9fc17" + integrity sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA== + dependencies: + to-no-case "^1.0.0" + +tree-kill@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" + integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== + +trim-newlines@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" + integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== + +ts-api-utils@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" + integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== + +ts-jest@^29.1.2: + version "29.1.5" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.5.tgz#d6c0471cc78bffa2cb4664a0a6741ef36cfe8f69" + integrity sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg== + dependencies: + bs-logger "0.x" + fast-json-stable-stringify "2.x" + jest-util "^29.0.0" + json5 "^2.2.3" + lodash.memoize "4.x" + make-error "1.x" + semver "^7.5.3" + yargs-parser "^21.0.1" + +ts-node@10.9.2: + version "10.9.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" + integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tsconfig-paths@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c" + integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== + dependencies: + json5 "^2.2.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.1.0, tslib@^2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0" + integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== + +tsx@^4.7.1: + version "4.15.6" + resolved "https://registry.yarnpkg.com/tsx/-/tsx-4.15.6.tgz#4522ed093f7fa54f031a7a999274e8b35dbf3165" + integrity sha512-is0VQQlfNZRHEuSSTKA6m4xw74IU4AizmuB6lAYLRt9XtuyeQnyJYexhNZOPCB59SqC4JzmSzPnHGBXxf3k0hA== + dependencies: + esbuild "~0.21.4" + get-tsconfig "^4.7.5" + optionalDependencies: + fsevents "~2.3.3" + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.18.0: + version "0.18.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" + integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +typed-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-typed-array "^1.1.13" + +typed-array-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-byte-offset@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" + integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-length@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" + integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + possible-typed-array-names "^1.0.0" + +typescript@^5.3.3: + version "5.4.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" + integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + +unescape-js@^1.0.5: + version "1.1.4" + resolved "https://registry.yarnpkg.com/unescape-js/-/unescape-js-1.1.4.tgz#4bc6389c499cb055a98364a0b3094e1c3d5da395" + integrity sha512-42SD8NOQEhdYntEiUQdYq/1V/YHwr1HLwlHuTJB5InVVdOSbgI6xu8jK5q65yIzuFCfczzyDF/7hbGzVbyCw0g== + dependencies: + string.fromcodepoint "^0.2.1" + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +update-browserslist-db@^1.0.16: + version "1.0.16" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz#f6d489ed90fb2f07d67784eb3f53d7891f736356" + integrity sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ== + dependencies: + escalade "^3.1.2" + picocolors "^1.0.1" + +uri-js@^4.2.2, uri-js@^4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +v8-to-istanbul@^9.0.1: + version "9.2.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz#2ed7644a245cddd83d4e087b9b33b3e62dfd10ad" + integrity sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== + dependencies: + "@jridgewell/trace-mapping" "^0.3.12" + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^2.0.0" + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vlq@^0.2.1: + version "0.2.3" + resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" + integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow== + +vscode-languageserver-textdocument@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz#0822a000e7d4dc083312580d7575fe9e3ba2e2bf" + integrity sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA== + +vscode-uri@^3.0.8: + version "3.0.8" + resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f" + integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw== + +walker@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +web-streams-polyfill@^3.0.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b" + integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw== + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-typed-array@^1.1.14, which-typed-array@^1.1.15: + version "1.1.15" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" + integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.2" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.0.tgz#1a3dc8b70d85eeb8398ddfb1e4a02cd186e58b3e" + integrity sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q== + dependencies: + ansi-styles "^6.2.1" + string-width "^7.0.0" + strip-ansi "^7.1.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + +ws@7.4.6: + version "7.4.6" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" + integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== + +xdg-basedir@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-5.1.0.tgz#1efba19425e73be1bc6f2a6ceb52a3d2c884c0c9" + integrity sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ== + +xml@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" + integrity sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^2.4.5, yaml@~2.4.2: + version "2.4.5" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.5.tgz#60630b206dd6d84df97003d33fc1ddf6296cca5e" + integrity sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg== + +yargs-parser@^20.2.3: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.1, yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs@^17.0.0, yargs@^17.3.1, yargs@^17.7.2: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zod-validation-error@^3.0.3: + version "3.3.0" + resolved "https://registry.yarnpkg.com/zod-validation-error/-/zod-validation-error-3.3.0.tgz#2cfe81b62d044e0453d1aa3ae7c32a2f36dde9af" + integrity sha512-Syib9oumw1NTqEv4LT0e6U83Td9aVRk9iTXPUQr1otyV1PuXQKOvOwhMNqZIq5hluzHP2pMgnOmHEo7kPdI2mw== + +zod@^3.22.4: + version "3.23.8" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" + integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== From a6acc3ff4ea709ead55a71491845663d297e760f Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Tue, 18 Jun 2024 19:36:25 +0100 Subject: [PATCH 10/14] chore: split test commands --- package.json | 3 +- types/dynamic.ts | 3200 +++++++++++++++++++++++----------------------- 2 files changed, 1602 insertions(+), 1601 deletions(-) diff --git a/package.json b/package.json index 8e86ff6..c012753 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,8 @@ "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", - "test": "concurrently yarn:clean yarn:build:tests jest", + "pretest": "concurrently yarn:clean yarn:build:tests", + "test": "jest", "clean": "rm -rf dist" }, "keywords": [ diff --git a/types/dynamic.ts b/types/dynamic.ts index a531320..0d07847 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -1,1606 +1,6 @@ /* eslint-disable sonarjs/no-duplicate-string */ -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, - "rootstock-mainnet": 30, - "fantom-opera": 250, - "celo-mainnet": 42220, - "fusion-mainnet": 32659, - "metis-andromeda-mainnet": 1088, - "core-blockchain-mainnet": 1116, - "klaytn-mainnet-cypress": 8217, - "manta-pacific-mainnet": 169, - "moonbeam": 1284, - "telos-evm-mainnet": 40, - "iotex-network-mainnet": 4689, - "astar": 592, - "canto": 7700, - "conflux-espace": 1030, - "aurora-mainnet": 1313161554, - "xdc-network": 50, - "meter-mainnet": 82, - "okxchain-mainnet": 66, - "moonriver": 1285, - "carbon-evm": 9790, - "boba-network": 288, - "smart-bitcoin-cash": 10000, - "ultron-mainnet": 1231, - "songbird-canary-network": 19, - "vision---mainnet": 888888, - "wanchain": 888, - "beam": 4337, - "zilliqa-evm": 32769, - "elastos-smart-chain": 20, - "oasys-mainnet": 248, - "evmos": 9001, - "onus-chain-mainnet": 1975, - "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, - "huobi-eco-chain-mainnet": 128, - "oasis-emerald": 42262, - "rollux-mainnet": 570, - "neon-evm-mainnet": 245022934, - "thundercore-mainnet": 108, - "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, - "high-performance-blockchain": 269, - "rei-network": 47805, - "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 CHAINS_IDS = { "1": "ethereum-mainnet", "2": "expanse-network", @@ -3201,6 +1601,1606 @@ export const CHAINS_IDS = { "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, + "rootstock-mainnet": 30, + "fantom-opera": 250, + "celo-mainnet": 42220, + "fusion-mainnet": 32659, + "metis-andromeda-mainnet": 1088, + "core-blockchain-mainnet": 1116, + "klaytn-mainnet-cypress": 8217, + "manta-pacific-mainnet": 169, + "moonbeam": 1284, + "telos-evm-mainnet": 40, + "iotex-network-mainnet": 4689, + "astar": 592, + "canto": 7700, + "conflux-espace": 1030, + "aurora-mainnet": 1313161554, + "xdc-network": 50, + "meter-mainnet": 82, + "okxchain-mainnet": 66, + "moonriver": 1285, + "carbon-evm": 9790, + "boba-network": 288, + "smart-bitcoin-cash": 10000, + "ultron-mainnet": 1231, + "songbird-canary-network": 19, + "vision---mainnet": 888888, + "wanchain": 888, + "beam": 4337, + "zilliqa-evm": 32769, + "elastos-smart-chain": 20, + "oasys-mainnet": 248, + "evmos": 9001, + "onus-chain-mainnet": 1975, + "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, + "huobi-eco-chain-mainnet": 128, + "oasis-emerald": 42262, + "rollux-mainnet": 570, + "neon-evm-mainnet": 245022934, + "thundercore-mainnet": 108, + "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, + "high-performance-blockchain": 269, + "rei-network": 47805, + "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": [ { From e46a21735b663ec6639dfc0bd6f07c1440f0e687 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:31:45 +0100 Subject: [PATCH 11/14] chore: remove concurrently --- build/dynamic-types.ts | 20 +- build/esbuild-build-tests.ts | 5 +- build/esbuild-build.ts | 4 +- package.json | 7 +- types/dynamic.ts | 30713 ++++++++++++++------------------- yarn.lock | 53 +- 6 files changed, 13344 insertions(+), 17458 deletions(-) diff --git a/build/dynamic-types.ts b/build/dynamic-types.ts index 6c9ccf0..f400d1d 100644 --- a/build/dynamic-types.ts +++ b/build/dynamic-types.ts @@ -42,13 +42,15 @@ export async function createDynamicTypes() { idToNativeCurrency[chainId] = nativeCurrency; } + const filename = "types/dynamic.ts"; + // Clear the file - await writeFile("types/dynamic.ts", "/* eslint-disable sonarjs/no-duplicate-string */\n\n"); - - appendFile("types/dynamic.ts", `\nexport const CHAINS_IDS = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); - appendFile("types/dynamic.ts", `\nexport const NETWORKS = ${JSON.stringify(networkToId, null, 2)} as const;\n`); - appendFile("types/dynamic.ts", `\nexport const NETWORK_FAUCETS = ${JSON.stringify(idToFaucet, null, 2)};\n`); - appendFile("types/dynamic.ts", `\nexport const NETWORK_EXPLORERS = ${JSON.stringify(idToExplorers, null, 2)};\n`); - appendFile("types/dynamic.ts", `\nexport const NETWORK_CURRENCIES = ${JSON.stringify(idToNativeCurrency, null, 2)};\n`); - appendFile("types/dynamic.ts", `\nexport const EXTRA_RPCS = ${JSON.stringify(extraRpcs, null, 2)};\n`); -} \ No newline at end of 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 3b6e2d4..4279b78 100644 --- a/build/esbuild-build-tests.ts +++ b/build/esbuild-build-tests.ts @@ -60,7 +60,4 @@ function ensureDistDir() { } } - -createDynamicTypes().then(async () => - await main() -).catch(console.error); \ No newline at end of file +createDynamicTypes().then(main).catch(console.error); diff --git a/build/esbuild-build.ts b/build/esbuild-build.ts index 2f107be..f91c410 100644 --- a/build/esbuild-build.ts +++ b/build/esbuild-build.ts @@ -75,6 +75,4 @@ function ensureDistDir() { } } -createDynamicTypes().then(async () => - await main() -).catch(console.error); \ No newline at end of file +createDynamicTypes().then(main).catch(console.error); diff --git a/package.json b/package.json index c012753..c0d51b7 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "node": ">=20.10.0" }, "scripts": { - "format": "concurrently yarn:format:*", + "format": "run-p format:*", "format:lint": "eslint --fix .", "format:prettier": "prettier --write .", "format:cspell": "cspell **/*", @@ -22,11 +22,11 @@ "knip-ci": "knip --no-exit-code --reporter json", "prepare": "husky install", "postinstall": "git submodule update --init --recursive", - "build": "concurrently yarn:clean yarn:build:types", + "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": "concurrently yarn:clean yarn:build:tests", + "pretest": "run-s clean build:tests", "test": "jest", "clean": "rm -rf dist" }, @@ -56,7 +56,6 @@ "@types/node-fetch": "^2.6.11", "@typescript-eslint/eslint-plugin": "^7.0.1", "@typescript-eslint/parser": "^7.0.1", - "concurrently": "^8.2.2", "cspell": "^8.4.0", "esbuild": "^0.20.1", "eslint": "^8.56.0", diff --git a/types/dynamic.ts b/types/dynamic.ts index 0d07847..eecd695 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -1,6 +1,5 @@ /* eslint-disable sonarjs/no-duplicate-string */ - export const CHAINS_IDS = { "1": "ethereum-mainnet", "2": "expanse-network", @@ -1598,55 +1597,55 @@ export const CHAINS_IDS = { "666301171999": "pdc-mainnet", "6022140761023": "molereum-network", "2713017997578000": "dchain-testnet", - "2716446429837000": "dchain" + "2716446429837000": "dchain", } as const; export const NETWORKS = { "ethereum-mainnet": 1, "bnb-smart-chain-mainnet": 56, "arbitrum-one": 42161, - "base": 8453, + base: 8453, "avalanche-c-chain": 43114, "polygon-mainnet": 137, - "linea": 59144, + linea: 59144, "op-mainnet": 10, "cronos-mainnet": 25, - "mantle": 5000, - "gnosis": 100, - "pulsechain": 369, + mantle: 5000, + gnosis: 100, + pulsechain: 369, "filecoin---mainnet": 314, - "kava": 2222, - "rootstock-mainnet": 30, + 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, + moonbeam: 1284, "telos-evm-mainnet": 40, "iotex-network-mainnet": 4689, - "astar": 592, - "canto": 7700, + astar: 592, + canto: 7700, "conflux-espace": 1030, "aurora-mainnet": 1313161554, "xdc-network": 50, "meter-mainnet": 82, "okxchain-mainnet": 66, - "moonriver": 1285, + moonriver: 1285, "carbon-evm": 9790, "boba-network": 288, "smart-bitcoin-cash": 10000, "ultron-mainnet": 1231, "songbird-canary-network": 19, "vision---mainnet": 888888, - "wanchain": 888, - "beam": 4337, + wanchain: 888, + beam: 4337, "zilliqa-evm": 32769, "elastos-smart-chain": 20, "oasys-mainnet": 248, - "evmos": 9001, + evmos: 9001, "onus-chain-mainnet": 1975, "dogechain-mainnet": 2000, "coinex-smart-chain-mainnet": 52, @@ -1668,23 +1667,24 @@ export const NETWORKS = { "tomb-chain-mainnet": 6969, "godwoken-mainnet": 71402, "loopnetwork-mainnet": 15551, - "shiden": 336, - "ubiq": 8, + "omax-mainnet": 311, + shiden: 336, + ubiq: 8, "syscoin-mainnet": 57, "jibchain-l1": 8899, - "high-performance-blockchain": 269, "rei-network": 47805, + "high-performance-blockchain": 269, "callisto-mainnet": 1, - "tenet": 1559, - "gochain": 60, + tenet: 1559, + gochain: 60, "bitgert-mainnet": 32520, "rei-chain-mainnet": 55555, - "palm": 11297108109, + palm: 11297108109, "expanse-network": 1, - "ropsten": 3, - "rinkeby": 4, - "goerli": 5, - "thaichain": 7, + ropsten: 3, + rinkeby: 4, + goerli: 5, + thaichain: 7, "ubiq-network-testnet": 2, "metadium-mainnet": 11, "metadium-testnet": 12, @@ -1699,7 +1699,7 @@ export const NETWORKS = { "ela-did-sidechain-testnet": 23, "kardiachain-mainnet": 0, "genesis-l1-testnet": 26, - "shibachain": 27, + shibachain: 27, "genesis-l1": 29, "rootstock-testnet": 31, "gooddata-testnet": 32, @@ -1708,7 +1708,7 @@ export const NETWORKS = { "tbwg-chain": 35, "dxchain-mainnet": 36, "xpla-mainnet": 37, - "valorbit": 38, + valorbit: 38, "u2u-solaris-mainnet": 39, "telos-evm-testnet": 41, "lukso-mainnet": 42, @@ -1725,7 +1725,7 @@ export const NETWORKS = { "zyx-mainnet": 55, "ontology-mainnet": 58, "mordor-testnet": 7, - "ellaism": 64, + ellaism: 64, "okexchain-testnet": 65, "dbchain-testnet": 67, "soterone-mainnet": 68, @@ -1733,43 +1733,43 @@ export const NETWORKS = { "hoo-smart-chain": 70, "conflux-espace-(testnet)": 71, "dxchain-testnet": 72, - "fncy": 73, + fncy: 73, "idchain-mainnet": 74, "decimal-smart-chain-mainnet": 75, - "mix": 76, + mix: 76, "poa-network-sokol": 77, "primuschain-mainnet": 78, "zenith-mainnet": 79, - "genechain": 80, + 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: 88, "viction-testnet": 89, "garizon-stage0": 90, "garizon-stage1": 91, "garizon-stage2": 92, "garizon-stage3": 93, - "swissdlt": 94, + swissdlt: 94, "camdl-mainnet": 95, "bitkub-chain": 96, "bnb-smart-chain-testnet": 97, "six-protocol": 98, "poa-network-core": 99, - "etherinc": 1, + etherinc: 1, "web3games-testnet": 102, "worldland-mainnet": 103, "kaiba-lightning-chain-testnet": 104, "web3games-devnet": 105, "nebula-testnet": 107, - "shibarium": 109, + shibarium: 109, "proton-testnet": 110, "etherlite-chain": 111, "coinbit-mainnet": 112, - "dehvo": 113, + dehvo: 113, "flare-testnet-coston2": 114, "uptick-mainnet": 117, "arcology-testnet": 118, @@ -1796,7 +1796,7 @@ export const NETWORKS = { "phi-network-v2": 144, "soraai-testnet": 145, "flag-mainnet": 147, - "shimmerevm": 148, + shimmerevm: 148, "six-protocol-testnet": 150, "redbelly-network-mainnet": 151, "redbelly-network-devnet": 152, @@ -1812,7 +1812,7 @@ export const NETWORKS = { "lightstreams-testnet": 162, "lightstreams-mainnet": 163, "omni-testnet": 164, - "omni": 166, + omni: 166, "atoshi-testnet": 167, "aioz-network": 168, "hoo-smart-chain-testnet": 170, @@ -1824,7 +1824,7 @@ export const NETWORKS = { "seele-mainnet": 186, "bmc-mainnet": 188, "bmc-testnet": 189, - "filefilego": 191, + filefilego: 191, "crypto-emergency": 193, "x-layer-testnet": 195, "x-layer-mainnet": 196, @@ -1837,7 +1837,7 @@ export const NETWORKS = { "vinuchain-testnet": 206, "vinuchain-network": 207, "structx-mainnet": 208, - "bitnet": 210, + bitnet: 210, "freight-trust-network": 0, "mapo-makalu": 212, "b2-hub-mainnet": 213, @@ -1849,21 +1849,21 @@ export const NETWORKS = { "lachain-mainnet": 225, "lachain-testnet": 226, "mind-network-mainnet": 228, - "swapdex": 230, + swapdex: 230, "protojumbo-testnet": 234, "deamchain-testnet": 236, "plinga-mainnet": 242, - "fraxtal": 252, - "kroma": 255, + fraxtal: 252, + kroma: 255, "huobi-eco-chain-testnet": 256, - "setheum": 258, + setheum: 258, "neonlink-mainnet": 259, "sur-blockchain-network": 1, - "neura": 266, + neura: 266, "neura-testnet": 267, "neura-devnet": 268, "egoncoin-mainnet": 271, - "lachain": 274, + lachain: 274, "xfair.ai-mainnet": 278, "bpx-blockchain": 279, "cronos-zkevm-testnet": 282, @@ -1877,9 +1877,8 @@ export const NETWORKS = { "neurochain-testnet": 303, "zksats-mainnet": 305, "lovely-network-testnet": 307, - "furtheon": 308, + furtheon: 308, "wyzth-testnet": 309, - "omax-mainnet": 311, "neurochain-mainnet": 313, "kcc-testnet": 322, "cosvm-mainnet": 323, @@ -1894,7 +1893,7 @@ export const NETWORKS = { "consta-testnet": 371, "zkamoeba-testnet": 380, "zkamoeba-mainnet": 381, - "lisinski": 385, + lisinski: 385, "camdl-testnet": 395, "near-mainnet": 397, "near-testnet": 398, @@ -1904,7 +1903,7 @@ export const NETWORKS = { "syndr-l3": 404, "pepe-chain-mainnet": 411, "sx-network-mainnet": 416, - "latestnet": 418, + latestnet: 418, "optimism-goerli-testnet": 420, "viridis-mainnet": 422, "pgn-(public-goods-network)": 424, @@ -1916,7 +1915,7 @@ export const NETWORKS = { "arzio-chain": 456, "areon-network-testnet": 462, "areon-network-mainnet": 463, - "rupaya": 499, + rupaya: 499, "camino-c-chain": 1000, "columbus-test-network": 1001, "syndicate-chain": 510, @@ -1926,10 +1925,10 @@ export const NETWORKS = { "xt-smart-chain-mainnet": 1024, "firechain-mainnet": 529, "f(x)core-mainnet-network": 530, - "candle": 534, + candle: 534, "optrust-mainnet": 537, "pawchain-testnet": 542, - "testnet": 545, + testnet: 545, "vela1-chain-mainnet": 555, "tao-network": 558, "dogechain-testnet": 568, @@ -1942,42 +1941,42 @@ export const NETWORKS = { "vine-testnet": 601, "eiob-mainnet": 612, "graphlinq-blockchain-mainnet": 614, - "avocado": 634, - "previewnet": 646, + avocado: 634, + previewnet: 646, "sx-network-testnet": 647, "endurance-smart-chain-mainnet": 648, "kalichain-testnet": 653, - "kalichain": 654, - "ultronsmartchain": 662, + kalichain: 654, + ultronsmartchain: 662, "pixie-chain-testnet": 666, "laos-arrakis": 667, - "juncachain": 668, + juncachain: 668, "juncachain-testnet": 669, "karura-network": 686, - "redstone": 690, + redstone: 690, "star-social-testnet": 700, "darwinia-koi-testnet": 701, "blockchain-station-mainnet": 707, "blockchain-station-testnet": 708, - "highbury": 710, + highbury: 710, "vrcscan-mainnet": 713, "shibarium-beta": 719, "lycan-chain": 721, - "blucrates": 727, + blucrates: 727, "lovely-network-mainnet": 730, "vention-smart-chain-testnet": 741, "script-testnet": 742, - "mainnet": 747, - "ql1": 766, + mainnet: 747, + ql1: 766, "openchain-testnet": 776, - "cheapeth": 777, + cheapeth: 777, "maal-chain": 786, "acala-network": 787, "aerochain-testnet": 788, - "patex": 789, + patex: 789, "rupaya-testnet": 799, "lucid-blockchain": 800, - "haic": 803, + haic: 803, "portal-fantasy-chain-test": 808, "haven1-testnet": 810, "qitmeer-network-mainnet": 813, @@ -2008,7 +2007,7 @@ export const NETWORKS = { "munode-testnet": 956, "lyra-chain": 957, "btc20-smart-chain": 963, - "ethxy": 969, + ethxy: 969, "oort-mainnet": 970, "oort-huygens": 971, "oort-ascraeus": 972, @@ -2030,8 +2029,8 @@ export const NETWORKS = { "jumbochain-mainnet": 1009, "evrice-network": 1010, "rebus-mainnet": 1011, - "newton": 1012, - "sakura": 1022, + newton: 1012, + sakura: 1022, "clover-testnet": 1023, "clv-parachain": 1024, "bittorrent-chain-testnet": 1028, @@ -2044,7 +2043,7 @@ export const NETWORKS = { "mintara-mainnet": 1080, "humans.ai-mainnet": 1089, "moac-mainnet": 1099, - "dymension": 1100, + dymension: 1100, "polygon-zkevm": 1101, "blxq-testnet": 1107, "blxq-mainnet": 1108, @@ -2057,9 +2056,9 @@ export const NETWORKS = { "defichain-evm-network-mainnet": 1130, "defichain-evm-network-testnet": 1131, "defimetachain-changi-testnet": 1133, - "lisk": 1135, + lisk: 1135, "amstar-testnet": 1138, - "mathchain": 1139, + mathchain: 1139, "mathchain-testnet": 1140, "flag-testnet": 1147, "symplexia-smart-chain": 1149, @@ -2086,7 +2085,7 @@ export const NETWORKS = { "cic-chain-testnet": 1252, "halo-mainnet": 1280, "moonbase-alpha": 1287, - "moonrock": 1288, + moonrock: 1288, "swisstronik-testnet": 1291, "dos-fuji-subnet": 1311, "alyx-mainnet": 1314, @@ -2120,10 +2119,10 @@ export const NETWORKS = { "beagle-messaging-chain": 1515, "ethereum-inscription-mainnet": 1617, "catecoin-chain-mainnet": 1618, - "atheios": 11235813, + atheios: 11235813, "gravity-alpha-mainnet": 1625, - "btachain": 1657, - "liquichain": 1662, + btachain: 1657, + liquichain: 1662, "horizen-gobi-testnet": 1663, "mint-testnet": 1686, "mint-sepolia-testnet": 1687, @@ -2136,16 +2135,16 @@ export const NETWORKS = { "reya-network": 1729, "metal-l2-testnet": 1740, "metal-l2": 1750, - "partychain": 1773, + partychain: 1773, "gauss-mainnet": 1777, "zkbase-sepolia-testnet": 1789, - "kerleano": 1804, + kerleano: 1804, "rabbit-analog-testnet-chain": 1807, "cube-chain-mainnet": 1818, "cube-chain-testnet": 1819, "ruby-smart-chain-mainnet": 1821, - "teslafunds": 1, - "whitechain": 1875, + teslafunds: 1, + whitechain: 1875, "gitshock-cartenz-testnet": 1881, "lightlink-phoenix-mainnet": 1890, "lightlink-pegasus-testnet": 1891, @@ -2154,7 +2153,7 @@ export const NETWORKS = { "bitcichain-mainnet": 1907, "bitcichain-testnet": 1908, "merkle-scan": 1909, - "scalind": 1911, + scalind: 1911, "ruby-smart-chain-testnet": 1912, "upb-crescdi-testnet": 1918, "onus-chain-testnet": 1945, @@ -2163,30 +2162,30 @@ export const NETWORKS = { "dexilla-testnet": 1954, "aiw3-testnet": 1956, "selendra-network-mainnet": 1961, - "eleanor": 1967, + eleanor: 1967, "super-smart-chain-testnet": 1969, "super-smart-chain-mainnet": 1970, - "atelier": 1971, - "redecoin": 1972, + atelier: 1971, + redecoin: 1972, "eurus-testnet": 1984, - "satoshie": 1985, + satoshie: 1985, "satoshie-testnet": 1986, - "ethergem": 1987, + ethergem: 1987, "hubble-exchange": 1992, - "ekta": 1994, + ekta: 1994, "edexa-testnet": 1995, - "sanko": 1996, - "kyoto": 1997, + 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, + panarchy: 1, "now-chain": 2014, "mainnetz-mainnet": 2016, - "adiri": 2017, + adiri: 2017, "publicmint-devnet": 2018, "publicmint-testnet": 2019, "publicmint-mainnet": 2020, @@ -2196,21 +2195,21 @@ export const NETWORKS = { "swan-saturn-testnet": 2024, "rangers-protocol-mainnet": 2025, "edgeless-network": 2026, - "centrifuge": 2031, - "catalyst": 2032, + centrifuge: 2031, + catalyst: 2032, "phala-network": 2035, "kiwi-subnet": 2037, "shrapnel-testnet": 2038, "aleph-zero-testnet": 2039, "vanar-mainnet": 2040, - "neuroweb": 2043, + neuroweb: 2043, "shrapnel-subnet": 2044, "aiw3-mainnet": 2045, "stratos-testnet": 2047, - "stratos": 2048, + stratos: 2048, "movo-smart-chain-mainnet": 2049, "quokkacoin-mainnet": 2077, - "altair": 2088, + altair: 2088, "ecoball-mainnet": 2100, "ecoball-testnet-espuma": 2101, "exosama-network": 2109, @@ -2219,7 +2218,7 @@ export const NETWORKS = { "metaplayerone-mainnet": 2122, "metaplayerone-dubai-testnet": 2124, "bigshortbets-testnet": 2136, - "bigshortbets": 2137, + bigshortbets: 2137, "defi-oracle-meta-testnet": 21, "oneness-network": 2140, "oneness-testnet": 2141, @@ -2236,9 +2235,9 @@ export const NETWORKS = { "krest-network": 2241, "bomb-chain": 2300, "ebro-network": 2306, - "arevia": 2309, + arevia: 2309, "soma-network-testnet": 2323, - "altcoinchain": 2330, + altcoinchain: 2330, "rss3-vsl-sepolia-testnet": 2331, "soma-network-mainnet": 2332, "atleta-olympia": 2340, @@ -2249,7 +2248,7 @@ export const NETWORKS = { "bomb-chain-testnet": 2399, "tcg-verse-mainnet": 2400, "karak-mainnet": 2410, - "xodex": 10, + xodex: 10, "king-of-legends-devnet": 2425, "polygon-zkevm-cardona-testnet": 2442, "hybrid-chain-network-testnet": 2458, @@ -2259,23 +2258,23 @@ export const NETWORKS = { "inevm-mainnet": 2525, "kortho-mainnet": 2559, "techpay-mainnet": 2569, - "pocrnet": 2606, + 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, + apex: 2662, "morph-testnet": 2710, "k-laos": 2718, "xr-sepolia": 2730, "elizabeth-testnet": 2731, - "nanon": 2748, + nanon: 2748, "gm-network-mainnet": 2777, "morph-holesky": 2810, "elux-chain": 2907, - "hychain": 2911, + hychain: 2911, "xenon-chain-testnet": 2941, "bityuan-mainnet": 2999, "cennznet-rata": 3000, @@ -2301,12 +2300,12 @@ export const NETWORKS = { "evolve-mainnet": 3424, "securechain-testnet": 3434, "layeredge-testnet": 3456, - "gtcscan": 3490, + gtcscan: 3490, "paribu-net-testnet": 3500, "jfin-chain": 3501, "pandoproject-mainnet": 3601, "pandoproject-testnet": 3602, - "tycooncoin": 3630, + tycooncoin: 3630, "botanix-testnet": 3636, "botanix-mainnet": 3637, "ichain-network": 3639, @@ -2316,7 +2315,7 @@ export const NETWORKS = { "empire-network": 3693, "senjepowers-testnet": 3698, "senjepowers-mainnet": 3699, - "crossbell": 3737, + crossbell: 3737, "astar-zkevm": 3776, "alveychain-mainnet": 3797, "tangle-testnet": 3799, @@ -2381,8 +2380,8 @@ export const NETWORKS = { "charmverse-testnet": 5104, "superloyalty-testnet": 5105, "azra-testnet": 5106, - "ham": 5112, - "bahamut": 5165, + ham: 5112, + bahamut: 5165, "smart-layer-network": 5169, "tlchain-network-mainnet": 5177, "eraswap-mainnet": 5197, @@ -2393,7 +2392,7 @@ export const NETWORKS = { "tritanium-testnet": 5353, "settlus-testnet": 5372, "edexa-mainnet": 5424, - "egochain": 5439, + egochain: 5439, "vex-evm-testnet": 5522, "chain-verse-mainnet": 5555, "opbnb-testnet": 5611, @@ -2405,8 +2404,8 @@ export const NETWORKS = { "syscoin-tanenbaum-testnet": 5700, "hika-network-testnet": 5729, "satoshichain-testnet": 5758, - "ganache": 5777, - "tangle": 5845, + ganache: 5777, + tangle: 5845, "ontology-testnet": 5851, "wegochain-rubidium-mainnet": 5869, "bouncebit-testnet": 6000, @@ -2415,35 +2414,35 @@ export const NETWORKS = { "tres-mainnet": 6066, "cascadia-testnet": 6102, "uptn-testnet": 6118, - "uptn": 6119, + uptn: 6119, "aura-euphoria-testnet": 6321, "aura-mainnet": 6322, "digit-soul-smart-chain": 6363, - "peerpay": 6502, + 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, + irishub: 6688, "ox-chain": 6699, "paxb-mainnet": 6701, "compverse-mainnet": 6779, "gold-smart-chain-mainnet": 6789, "pools-mainnet": 6868, - "polysmartchain": 6999, + 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, + nume: 7100, "help-the-homeless": 7118, "bitrock-mainnet": 7171, "xpla-verse": 7300, - "klyntar": 7331, + klyntar: 7331, "horizen-eon-mainnet": 7332, "shyft-mainnet": 7341, "raba-network-mainnet": 7484, @@ -2466,7 +2465,7 @@ export const NETWORKS = { "dot-blox": 7923, "mo-mainnet": 7924, "dos-chain": 7979, - "teleport": 8000, + teleport: 8000, "teleport-testnet": 8001, "mdgl-testnet": 8029, "boat-mainnet": 8047, @@ -2480,16 +2479,16 @@ export const NETWORKS = { "qitmeer-network-testnet": 8131, "qitmeer-network-mixnet": 8132, "qitmeer-network-privnet": 8133, - "amana": 8134, - "flana": 8135, - "mizana": 8136, + 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, + korthotest: 8285, + lorenzo: 8329, "dracones-financial-services": 8387, "toki-network": 8654, "toki-testnet": 8655, @@ -2503,21 +2502,21 @@ export const NETWORKS = { "iota-evm": 8822, "hydra-chain-testnet": 8844, "maro-blockchain-mainnet": 8848, - "superlumio": 8866, - "unique": 8880, + superlumio: 8866, + unique: 8880, "quartz-by-unique": 8881, "opal-testnet-by-unique": 8882, "sapphire-by-unique": 8883, - "xanachain": 8888, + xanachain: 8888, "vyvo-smart-chain": 8889, "orenium-testnet-protocol": 8890, "mammoth-mainnet": 8898, - "algen": 8911, + algen: 8911, "algen-testnet": 8912, "algen-layer2": 8921, "algen-layer2-testnet": 8922, "giant-mammoth-mainnet": 8989, - "bloxberg": 8995, + bloxberg: 8995, "evmos-testnet": 9000, "shido-testnet-block": 9007, "shido-mainnet-block": 9008, @@ -2555,11 +2554,11 @@ export const NETWORKS = { "smart-bitcoin-cash-testnet": 10001, "gon-chain": 10024, "japan-open-chain-testnet": 10081, - "sjatsh": 10086, + sjatsh: 10086, "blockchain-genesis-mainnet": 10101, "gnosis-chiado-testnet": 10200, "maxxchain-mainnet": 10201, - "glscan": 10222, + glscan: 10222, "arthera-mainnet": 10242, "arthera-testnet": 10243, "0xtade": 10248, @@ -2568,13 +2567,13 @@ export const NETWORKS = { "worldland-testnet": 10395, "numbers-mainnet": 10507, "numbers-testnet": 10508, - "cryptocoinpay": 10823, - "lamina1": 10849, + cryptocoinpay: 10823, + lamina1: 10849, "lamina1-identity": 10850, "quadrans-blockchain": 10946, "quadrans-blockchain-testnet": 10947, - "astra": 11110, - "wagmi": 11111, + astra: 11110, + wagmi: 11111, "astra-testnet": 11115, "hashbit-mainnet": 11119, "shine-chain": 11221, @@ -2587,7 +2586,7 @@ export const NETWORKS = { "artela-testnet": 11822, "polygon-supernet-arianee": 11891, "satoshichain-mainnet": 12009, - "aternos": 12020, + aternos: 12020, "singularity-zero-testnet": 12051, "singularity-zero-mainnet": 12052, "brc-chain-mainnet": 12123, @@ -2601,16 +2600,16 @@ export const NETWORKS = { "playdapp-testnet": 12781, "quantum-chain-testnet": 12890, "playfair-testnet-subnet": 12898, - "sps": 13000, + sps: 13000, "credit-smart-chain": 13308, "beam-testnet": 13337, "immutable-zkevm": 13371, "phoenix-mainnet": 13381, - "masa": 13396, + masa: 13396, "immutable-zkevm-testnet": 13473, "gravity-alpha-testnet-sepolia": 13505, "kronobit-mainnet": 13600, - "susono": 13812, + susono: 13812, "sps-testnet": 14000, "evolve-testnet": 14324, "vitruveo-testnet": 14333, @@ -2628,7 +2627,7 @@ export const NETWORKS = { "irishub-testnet": 16688, "airdao-mainnet": 16718, "ivar-chain-testnet": 16888, - "holesky": 17000, + holesky: 17000, "garnet-holesky": 17069, "defiverse-testnet": 17117, "g8chain-mainnet": 17171, @@ -2640,7 +2639,7 @@ export const NETWORKS = { "smart-trade-networks": 18122, "proof-of-memes": 18159, "g8chain-testnet": 18181, - "unreal": 18233, + unreal: 18233, "mxc-zkevm-moonchain": 18686, "titan-(tkx)": 18888, "titan-(tkx)-testnet": 18889, @@ -2655,14 +2654,14 @@ export const NETWORKS = { "callisto-testnet": 79, "p12-chain": 20736, "jono11-subnet": 20765, - "c4ei": 21004, + c4ei: 21004, "all-about-healthy": 21133, "dcpay-mainnet": 21223, "dcpay-testnet": 21224, "cennznet-azalea": 21337, "omchain-mainnet": 21816, "bsl-mainnet": 21912, - "taycan": 22023, + taycan: 22023, "airdao-testnet": 22040, "nautilus-mainnet": 22222, "goldxchain-testnet": 22324, @@ -2674,7 +2673,7 @@ export const NETWORKS = { "dreyerx-mainnet": 23451, "dreyerx-testnet": 23452, "blast-testnet": 23888, - "webchain": 37129, + webchain: 37129, "mintme.com-coin": 37480, "liquidlayer-mainnet": 25186, "alveychain-testnet": 25839, @@ -2716,18 +2715,18 @@ export const NETWORKS = { "aves-mainnet": 33333, "zilliqa-evm-devnet": 33385, "zilliqa-2-evm-devnet": 33469, - "funki": 33979, - "mode": 34443, + funki: 33979, + mode: 34443, "j2o-taro": 35011, "q-mainnet": 35441, "q-testnet": 35443, - "connectormanager": 38400, + connectormanager: 38400, "connectormanager-robin": 38401, "prm-mainnet": 39656, "energi-mainnet": 39797, "oho-mainnet": 39815, "opulent-x-beta": 41500, - "pegglecoin": 42069, + pegglecoin: 42069, "agentlayer-testnet": 42072, "arbitrum-nova": 42170, "oasis-emerald-testnet": 42261, @@ -2736,11 +2735,11 @@ export const NETWORKS = { "etherlink-mainnet": 42793, "gesoten-verse-testnet": 42801, "kinto-testnet": 42888, - "athereum": 43110, + athereum: 43110, "hemi-network": 43111, "avalanche-fuji-testnet": 1, "zkfair-testnet": 43851, - "frenchain": 44444, + frenchain: 44444, "quantum-network": 44445, "celo-alfajores-testnet": 44787, "autobahn-network": 45000, @@ -2760,14 +2759,14 @@ export const NETWORKS = { "lumoz-testnet-alpha": 51178, "sardis-mainnet": 51712, "electroneum-mainnet": 52014, - "doid": 53277, + doid: 53277, "superseed-sepolia-testnet": 53302, "dodochain-testnet": 53457, "dfk-chain": 53935, "haqq-chain-testnet": 54211, "toronet-testnet": 54321, "photon-testnet": 54555, - "titan": 55004, + titan: 55004, "rei-chain-testnet": 55556, "lambda-chain-mainnet": 56026, "boba-bnb-mainnet": 56288, @@ -2784,8 +2783,8 @@ export const NETWORKS = { "thinkium-testnet-chain-1": 60001, "thinkium-testnet-chain-2": 60002, "thinkium-testnet-chain-103": 60103, - "bob": 60808, - "kaichain": 61406, + bob: 60808, + kaichain: 61406, "axelchain-dev-net": 61800, "etica-mainnet": 61803, "doken-super-chain-mainnet": 61916, @@ -2801,13 +2800,13 @@ export const NETWORKS = { "janus-testnet": 66988, "cosmic-chain": 3344, "dm2-verse-mainnet": 68770, - "condrieu": 69420, + 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, + guapcoinx: 71111, "polyjuice-testnet": 1, "godwoken-testnet-v1": 71401, "caga-crypto-ankara-testnet": 72778, @@ -2828,10 +2827,10 @@ export const NETWORKS = { "amplify-subnet": 78430, "bulletin-subnet": 78431, "conduit-subnet": 78432, - "vanguard": 78600, + vanguard: 78600, "gold-smart-chain-testnet": 79879, - "mumbai": 80001, - "amoy": 80002, + mumbai: 80001, + amoy: 80002, "berachain-bartio": 80084, "berachain-artio": 80085, "hizoco-mainnet": 80096, @@ -2845,14 +2844,14 @@ export const NETWORKS = { "mizana-testnet": 81361, "mizana-mixnet": 81362, "mizana-privnet": 81363, - "blast": 81457, + blast: 81457, "quantum-chain-mainnet": 81720, "smart-layer-network-testnet": 82459, - "zedxion": 83872, + zedxion: 83872, "base-goerli-testnet": 84531, "base-sepolia-testnet": 84532, "aerie-network": 84886, - "cybertrust": 48501, + cybertrust: 48501, "nautilus-proteus-testnet": 88002, "inoai-network": 88559, "unit-zero-testnet": 88817, @@ -2883,12 +2882,12 @@ export const NETWORKS = { "quarkchain-mainnet-shard-5": 100006, "quarkchain-mainnet-shard-6": 100007, "quarkchain-mainnet-shard-7": 100008, - "vechain": 100009, + vechain: 100009, "vechain-testnet": 100010, "quarkchain-l2-mainnet": 100011, "global-trust-network": 101010, "creditcoin-testnet": 102031, - "crystaleum": 1, + crystaleum: 1, "masa-testnet": 103454, "kaspaclassic-mainnet": 104566, "stratis-mainnet": 105105, @@ -2926,7 +2925,7 @@ export const NETWORKS = { "xfair.ai-testnet": 200000, "milkomeda-c1-testnet": 200101, "milkomeda-a1-testnet": 200202, - "akroma": 200625, + akroma: 200625, "bitlayer-testnet": 200810, "bitlayer-mainnet": 200901, "alaya-mainnet": 1, @@ -2935,7 +2934,7 @@ export const NETWORKS = { "decimal-smart-chain-testnet": 202020, "x1-devnet": 202212, "ymtech-besu-testnet": 202401, - "jellie": 202624, + jellie: 202624, "x1-network": 204005, "auroria-testnet": 205205, "gitagi-atlas-testnet": 210049, @@ -2943,7 +2942,7 @@ export const NETWORKS = { "mas-mainnet": 220315, "reapchain-mainnet": 221230, "reapchain-testnet": 221231, - "hydradx": 222222, + hydradx: 222222, "deepl-mainnet": 222555, "deepl-testnet": 222666, "taf-eco-chain-mainnet": 224168, @@ -2985,7 +2984,7 @@ export const NETWORKS = { "metal-tahoe-c-chain": 381932, "tipboxcoin-mainnet": 404040, "aie-testnet": 413413, - "kekchain": 103090, + kekchain: 103090, "kekchain-(kektest)": 1, "alterium-l2-testnet": 420692, "arbitrum-rinkeby": 421611, @@ -3002,17 +3001,17 @@ export const NETWORKS = { "openchain-mainnet": 474142, "playdapp-network": 504441, "cmp-testnet": 512512, - "dischain": 513100, + dischain: 513100, "docoin-community-chain": 526916, "scroll-sepolia-testnet": 534351, - "scroll": 534352, + scroll: 534352, "shinarium-beta": 534849, "beaneco-smartchain": 535037, "one-world-chain-testnet": 552981, "pentagon-testnet": 555555, "eclipse-testnet": 555666, "hypra-mainnet": 622277, - "atlas": 622463, + atlas: 622463, "bear-network-chain-mainnet": 641230, "all-mainnet": 651940, "open-campus-codex": 656476, @@ -3029,8 +3028,8 @@ export const NETWORKS = { "miexs-smartchain": 761412, "lamina1-testnet": 764984, "lamina1-identity-testnet": 767368, - "modularium": 776877, - "octaspace": 800001, + modularium: 776877, + octaspace: 800001, "biz-smart-chain-testnet": 808080, "zklink-nova-mainnet": 810180, "zklink-nova-sepolia-testnet": 810181, @@ -3039,7 +3038,7 @@ export const NETWORKS = { "curve-mainnet": 827431, "prm-testnet": 839320, "4goodnetwork": 846000, - "dodao": 855456, + dodao: 855456, "blocx-mainnet": 879151, "rexx-mainnet": 888882, "posichain-mainnet-shard-0": 900000, @@ -3051,19 +3050,19 @@ export const NETWORKS = { "jono12-subnet": 955081, "eluvio-content-fabric": 955305, "treasure-ruby": 978657, - "forma": 984122, + forma: 984122, "forma-sketchpad": 984123, "ecrox-chain-mainnet": 988207, "supernet-testnet": 998899, - "amchain": 999999, + amchain: 999999, "netmind-chain-testnet": 1100789, "tiltyard-subnet": 1127469, - "zkatana": 1261120, + zkatana: 1261120, "etho-protocol": 1313114, - "xerom": 1313500, - "kintsugi": 1337702, - "kiln": 1337802, - "zhejiang": 1337803, + xerom: 1313500, + kintsugi: 1337702, + kiln: 1337802, + zhejiang: 1337803, "automata-testnet": 1398243, "playfi-albireo-testnet": 1612127, "xterio-testnet": 1637450, @@ -3090,33 +3089,33 @@ export const NETWORKS = { "safe(anwang)-mainnet": 6666665, "safe(anwang)-testnet": 6666666, "saakuru-mainnet": 7225878, - "openvessel": 7355310, + openvessel: 7355310, "ql1-testnet": 7668378, - "musicoin": 7762959, - "zora": 7777777, + musicoin: 7762959, + zora: 7777777, "plian-mainnet-subchain-1": 8007736, "fhenix-helium": 8008135, - "hokum": 8080808, + hokum: 8080808, "waterfall-8-test-network": 8601152, - "hapchain": 8794598, + hapchain: 8794598, "quarix-testnet": 8888881, - "quarix": 8888888, - "xcap": 9322252, - "milvine": 9322253, + quarix: 8888888, + xcap: 9322252, + milvine: 9322253, "plian-testnet-subchain-1": 10067275, "soverun-mainnet": 10101010, "alienx-hal-testnet": 10241025, - "sepolia": 11155111, + 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, + iolite: 18289463, "stability-testnet": 20180427, "smartmesh-mainnet": 1, - "quarkblockchain": 20181205, + quarkblockchain: 20181205, "pego-network": 20201022, "debank-sepolia-testnet": 20240324, "swan-proxima-testnet": 20241133, @@ -3131,8 +3130,8 @@ export const NETWORKS = { "joys-digital-mainnet": 35855456, "skale-nebula-hub-testnet": 37084624, "kingdom-chain": 39916801, - "maistestsubnet": 43214913, - "aquachain": 61717561, + maistestsubnet: 43214913, + aquachain: 61717561, "autonity-bakerloo-(sumida)-testnet": 65010002, "autonity-piccadilly-(sumida)-testnet": 65100002, "frame-testnet": 68840142, @@ -3146,31 +3145,31 @@ export const NETWORKS = { "plume-testnet": 161221135, "blast-sepolia-testnet": 168587773, "gather-mainnet-network": 192837465, - "kanazawa": 222000222, + kanazawa: 222000222, "neon-evm-devnet": 245022926, "razor-skale-chain": 278611351, "oneledger-mainnet": 311752642, "nal-sepolia-testnet": 328527624, - "meld": 333000333, + meld: 333000333, "gather-testnet-network": 356256156, "gather-devnet-network": 486217935, "degen-chain": 666666666, - "ancient8": 888888888, + 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, + cyberdecknet: 1146703430, "human-protocol": 1273227453, "aurora-testnet": 1313161555, "aurora-betanet": 1313161556, - "powergold": 1313161560, + powergold: 1313161560, "skale-titan-hub": 1350216234, "chaos-(skale-testnet)": 1351057110, "rari-chain-mainnet": 1380012617, - "raptorchain": 1380996178, + raptorchain: 1380996178, "skale-europa-hub-testnet": 1444673419, "skale-nebula-hub": 1482601649, "skale-calypso-hub": 1564830818, @@ -3181,9 +3180,9 @@ export const NETWORKS = { "harmony-devnet-shard-1": 1666900001, "kakarot-sepolia": 1802203764, "rari-chain-testnet": 1918988905, - "datahopper": 2021121117, + datahopper: 2021121117, "skale-europa-hub": 2046399126, - "pirl": 3125659152, + pirl: 3125659152, "oneledger-testnet-frankenstein": 4216137055, "palm-testnet": 11297108099, "gitswarm-test-network": 28872323069, @@ -3194,18406 +3193,18406 @@ export const NETWORKS = { "ntity-mainnet": 197710212030, "haradev-testnet": 197710212031, "gm-network-testnet": 202402181627, - "zeniq": 383414847825, + zeniq: 383414847825, "pdc-mainnet": 666301171999, "molereum-network": 6022140761023, "dchain-testnet": 2713017997578000, - "dchain": 2716446429837000 + dchain: 2716446429837000, } as const; export const NETWORK_EXPLORERS = { "1": [ { - "name": "etherscan", - "url": "https://etherscan.io", - "standard": "EIP3091" + name: "etherscan", + url: "https://etherscan.io", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://eth.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "blockscout", + url: "https://eth.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://ethereum.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + name: "dexguru", + url: "https://ethereum.dex.guru", + icon: "dexguru", + standard: "EIP3091", + }, ], "3": [ { - "name": "etherscan", - "url": "https://ropsten.etherscan.io", - "standard": "EIP3091" - } + name: "etherscan", + url: "https://ropsten.etherscan.io", + standard: "EIP3091", + }, ], "4": [ { - "name": "etherscan-rinkeby", - "url": "https://rinkeby.etherscan.io", - "standard": "EIP3091" - } + name: "etherscan-rinkeby", + url: "https://rinkeby.etherscan.io", + standard: "EIP3091", + }, ], "5": [ { - "name": "etherscan-goerli", - "url": "https://goerli.etherscan.io", - "standard": "EIP3091" + name: "etherscan-goerli", + url: "https://goerli.etherscan.io", + standard: "EIP3091", }, { - "name": "blockscout-goerli", - "url": "https://eth-goerli.blockscout.com", - "icon": "blockscout", - "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" - } + name: "Thaichain Explorer", + url: "https://exp.thaichain.org", + standard: "EIP3091", + }, ], "8": [ { - "name": "ubiqscan", - "url": "https://ubiqscan.io", - "standard": "EIP3091" - } + name: "ubiqscan", + url: "https://ubiqscan.io", + standard: "EIP3091", + }, ], "10": [ { - "name": "etherscan", - "url": "https://optimistic.etherscan.io", - "standard": "EIP3091" + name: "etherscan", + url: "https://optimistic.etherscan.io", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://optimism.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "blockscout", + url: "https://optimism.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://optimism.dex.guru", - "icon": "dexguru", - "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: "blockscout", + url: "https://flare-explorer.flare.network", + standard: "EIP3091", }, { - "name": "flarescan", - "url": "https://mainnet.flarescan.com", - "standard": "EIP3091" - } + name: "flarescan", + url: "https://mainnet.flarescan.com", + standard: "EIP3091", + }, ], "16": [ { - "name": "blockscout", - "url": "https://coston-explorer.flare.network", - "standard": "EIP3091" + name: "blockscout", + url: "https://coston-explorer.flare.network", + standard: "EIP3091", }, { - "name": "flarescan", - "url": "https://coston.testnet.flarescan.com", - "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" - } + name: "thundercore-blockscout-testnet", + url: "https://explorer-testnet.thundercore.com", + standard: "EIP3091", + }, ], "19": [ { - "name": "blockscout", - "url": "https://songbird-explorer.flare.network", - "standard": "EIP3091" + name: "blockscout", + url: "https://songbird-explorer.flare.network", + standard: "EIP3091", }, { - "name": "flarescan", - "url": "https://songbird.flarescan.com", - "standard": "EIP3091" - } + name: "flarescan", + url: "https://songbird.flarescan.com", + standard: "EIP3091", + }, ], "20": [ { - "name": "elastos esc explorer", - "url": "https://esc.elastos.io", - "standard": "EIP3091" - } + name: "elastos esc explorer", + url: "https://esc.elastos.io", + standard: "EIP3091", + }, ], "21": [ { - "name": "elastos esc explorer", - "url": "https://esc-testnet.elastos.io", - "standard": "EIP3091" - } + name: "elastos esc explorer", + url: "https://esc-testnet.elastos.io", + standard: "EIP3091", + }, ], "25": [ { - "name": "Cronos Explorer", - "url": "https://explorer.cronos.org", - "standard": "none" - } + name: "Cronos Explorer", + url: "https://explorer.cronos.org", + standard: "none", + }, ], "26": [ { - "name": "Genesis L1 testnet explorer", - "url": "https://testnet.genesisl1.org", - "standard": "none" - } + name: "Genesis L1 testnet explorer", + url: "https://testnet.genesisl1.org", + standard: "none", + }, ], "27": [ { - "name": "Shiba Explorer", - "url": "https://exp.shibchain.org", - "standard": "none" - } + name: "Shiba Explorer", + url: "https://exp.shibchain.org", + standard: "none", + }, ], "29": [ { - "name": "Genesis L1 blockchain explorer", - "url": "https://explorer.genesisl1.org", - "standard": "none" - } + name: "Genesis L1 blockchain explorer", + url: "https://explorer.genesisl1.org", + standard: "none", + }, ], "30": [ { - "name": "Rootstock Explorer", - "url": "https://explorer.rsk.co", - "standard": "EIP3091" + name: "Rootstock Explorer", + url: "https://explorer.rsk.co", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://rootstock.blockscout.com", - "icon": "blockscout", - "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" - } + name: "RSK Testnet Explorer", + url: "https://explorer.testnet.rsk.co", + standard: "EIP3091", + }, ], "34": [ { - "name": "SecureChain Mainnet", - "url": "https://explorer.securechain.ai", - "standard": "EIP3091" - } + name: "SecureChain Mainnet", + url: "https://explorer.securechain.ai", + standard: "EIP3091", + }, ], "36": [ { - "name": "dxscan", - "url": "https://dxscan.io", - "standard": "EIP3091" - } + name: "dxscan", + url: "https://dxscan.io", + standard: "EIP3091", + }, ], "37": [ { - "name": "XPLA Explorer", - "url": "https://explorer.xpla.io/mainnet", - "standard": "EIP3091" - } + name: "XPLA Explorer", + url: "https://explorer.xpla.io/mainnet", + standard: "EIP3091", + }, ], "39": [ { - "icon": "u2u", - "name": "U2U Explorer", - "url": "https://u2uscan.xyz", - "standard": "EIP3091" - } + icon: "u2u", + name: "U2U Explorer", + url: "https://u2uscan.xyz", + standard: "EIP3091", + }, ], "40": [ { - "name": "teloscan", - "url": "https://teloscan.io", - "standard": "EIP3091" - } + name: "teloscan", + url: "https://teloscan.io", + standard: "EIP3091", + }, ], "41": [ { - "name": "teloscan", - "url": "https://testnet.teloscan.io", - "standard": "EIP3091" - } + name: "teloscan", + url: "https://testnet.teloscan.io", + standard: "EIP3091", + }, ], "42": [ { - "name": "Blockscout", - "url": "https://explorer.execution.mainnet.lukso.network", - "standard": "EIP3091" - } + name: "Blockscout", + url: "https://explorer.execution.mainnet.lukso.network", + standard: "EIP3091", + }, ], "43": [ { - "name": "subscan", - "url": "https://pangolin.subscan.io", - "standard": "EIP3091" - } + name: "subscan", + url: "https://pangolin.subscan.io", + standard: "EIP3091", + }, ], "44": [ { - "name": "blockscout", - "url": "https://crab-scan.darwinia.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://crab-scan.darwinia.network", + standard: "EIP3091", + }, ], "45": [ { - "name": "subscan", - "url": "https://pangoro.subscan.io", - "standard": "none" - } + name: "subscan", + url: "https://pangoro.subscan.io", + standard: "none", + }, ], "46": [ { - "name": "subscan", - "url": "https://darwinia.subscan.io", - "standard": "EIP3091" - } + name: "subscan", + url: "https://darwinia.subscan.io", + standard: "EIP3091", + }, ], "47": [ { - "name": "Acria IntelliChain-Explorer", - "url": "https://explorer.acria.ai", - "standard": "EIP3091" - } + name: "Acria IntelliChain-Explorer", + url: "https://explorer.acria.ai", + standard: "EIP3091", + }, ], "48": [ { - "name": "etmpscan", - "url": "https://etmscan.network", - "icon": "etmp", - "standard": "EIP3091" - } + name: "etmpscan", + url: "https://etmscan.network", + icon: "etmp", + standard: "EIP3091", + }, ], "49": [ { - "name": "etmp", - "url": "https://pioneer.etmscan.network", - "standard": "EIP3091" - } + name: "etmp", + url: "https://pioneer.etmscan.network", + standard: "EIP3091", + }, ], "50": [ { - "name": "xdcscan", - "url": "https://xdcscan.io", - "icon": "blocksscan", - "standard": "EIP3091" + name: "xdcscan", + url: "https://xdcscan.io", + icon: "blocksscan", + standard: "EIP3091", }, { - "name": "blocksscan", - "url": "https://xdc.blocksscan.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: "xdcscan", + url: "https://apothem.xinfinscan.com", + icon: "blocksscan", + standard: "EIP3091", }, { - "name": "blocksscan", - "url": "https://apothem.blocksscan.io", - "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" - } + name: "coinexscan", + url: "https://www.coinex.net", + standard: "none", + }, ], "53": [ { - "name": "coinexscan", - "url": "https://testnet.coinex.net", - "standard": "none" - } + name: "coinexscan", + url: "https://testnet.coinex.net", + standard: "none", + }, ], "54": [ { - "name": "Belly Scan", - "url": "https://bellyscan.com", - "standard": "none" - } + name: "Belly Scan", + url: "https://bellyscan.com", + standard: "none", + }, ], "55": [ { - "name": "zyxscan", - "url": "https://zyxscan.com", - "standard": "none" - } + name: "zyxscan", + url: "https://zyxscan.com", + standard: "none", + }, ], "56": [ { - "name": "bscscan", - "url": "https://bscscan.com", - "standard": "EIP3091" + name: "bscscan", + url: "https://bscscan.com", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://bnb.dex.guru", - "icon": "dexguru", - "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" - } + name: "Syscoin Block Explorer", + url: "https://explorer.syscoin.org", + standard: "EIP3091", + }, ], "58": [ { - "name": "explorer", - "url": "https://explorer.ont.io", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.ont.io", + standard: "EIP3091", + }, ], "60": [ { - "name": "GoChain Explorer", - "url": "https://explorer.gochain.io", - "standard": "EIP3091" - } + name: "GoChain Explorer", + url: "https://explorer.gochain.io", + standard: "EIP3091", + }, ], "61": [ { - "name": "blockscout-ethereum-classic", - "url": "https://etc.blockscout.com", - "standard": "EIP3091" + 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-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-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: "etcnetworkinfo-expedition-ethereum-classic", + url: "https://explorer-expedition.etc-network.info", + standard: "none", }, { - "name": "hebeblock-ethereum-classic", - "url": "https://etcerscan.com", - "standard": "EIP3091" + name: "hebeblock-ethereum-classic", + url: "https://etcerscan.com", + standard: "EIP3091", }, { - "name": "oklink-ethereum-classic", - "url": "https://www.oklink.com/etc", - "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" - } + name: "tokenview-ethereum-classic", + url: "https://etc.tokenview.io", + standard: "EIP3091", + }, ], "63": [ { - "name": "blockscout-mordor", - "url": "https://etc-mordor.blockscout.com", - "standard": "EIP3091" + 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" - } + 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" - } + name: "OKLink", + url: "https://www.oklink.com/okexchain-test", + standard: "EIP3091", + }, ], "66": [ { - "name": "OKLink", - "url": "https://www.oklink.com/en/okc", - "standard": "EIP3091" - } + name: "OKLink", + url: "https://www.oklink.com/en/okc", + standard: "EIP3091", + }, ], "69": [ { - "name": "etherscan", - "url": "https://kovan-optimistic.etherscan.io", - "standard": "EIP3091" - } + name: "etherscan", + url: "https://kovan-optimistic.etherscan.io", + standard: "EIP3091", + }, ], "70": [ { - "name": "hooscan", - "url": "https://www.hooscan.com", - "standard": "EIP3091" - } + name: "hooscan", + url: "https://www.hooscan.com", + standard: "EIP3091", + }, ], "71": [ { - "name": "Conflux Scan", - "url": "https://evmtestnet.confluxscan.net", - "standard": "none" - } + name: "Conflux Scan", + url: "https://evmtestnet.confluxscan.net", + standard: "none", + }, ], "73": [ { - "name": "fncy scan", - "url": "https://fncyscan.fncy.world", - "icon": "fncy", - "standard": "EIP3091" - } + name: "fncy scan", + url: "https://fncyscan.fncy.world", + icon: "fncy", + standard: "EIP3091", + }, ], "74": [ { - "name": "explorer", - "url": "https://explorer.idchain.one", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.idchain.one", + standard: "EIP3091", + }, ], "75": [ { - "name": "DSC Explorer Mainnet", - "url": "https://explorer.decimalchain.com", - "icon": "dsc", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://blockscout.com/poa/sokol", + icon: "blockscout", + standard: "EIP3091", + }, ], "79": [ { - "name": "zenith scan", - "url": "https://scan.zenithchain.co", - "standard": "EIP3091" - } + name: "zenith scan", + url: "https://scan.zenithchain.co", + standard: "EIP3091", + }, ], "80": [ { - "name": "GeneChain Scan", - "url": "https://scan.genechain.io", - "standard": "EIP3091" - } + name: "GeneChain Scan", + url: "https://scan.genechain.io", + standard: "EIP3091", + }, ], "81": [ { - "name": "Block Explorer", - "url": "https://explorer.japanopenchain.org", - "standard": "EIP3091", - "icon": "joc" - } + name: "Block Explorer", + url: "https://explorer.japanopenchain.org", + standard: "EIP3091", + icon: "joc", + }, ], "82": [ { - "name": "Meter Mainnet Scan", - "url": "https://scan.meter.io", - "standard": "EIP3091" - } + name: "Meter Mainnet Scan", + url: "https://scan.meter.io", + standard: "EIP3091", + }, ], "83": [ { - "name": "Meter Testnet Scan", - "url": "https://scan-warringstakes.meter.io", - "standard": "EIP3091" - } + 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" - } + name: "Linqto Devnet Explorer", + url: "https://explorer.linqto-dev.com", + standard: "EIP3091", + }, ], "85": [ { - "name": "GateScan", - "url": "https://www.gatescan.org/testnet", - "standard": "EIP3091" - } + name: "GateScan", + url: "https://www.gatescan.org/testnet", + standard: "EIP3091", + }, ], "86": [ { - "name": "GateScan", - "url": "https://www.gatescan.org", - "standard": "EIP3091" - } + name: "GateScan", + url: "https://www.gatescan.org", + standard: "EIP3091", + }, ], "87": [ { - "name": "novanetwork", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } + name: "novanetwork", + url: "https://explorer.novanetwork.io", + standard: "EIP3091", + }, ], "90": [ { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.garizon.com", + icon: "garizon", + standard: "EIP3091", + }, ], "91": [ { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.garizon.com", + icon: "garizon", + standard: "EIP3091", + }, ], "92": [ { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.garizon.com", + icon: "garizon", + standard: "EIP3091", + }, ], "93": [ { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.garizon.com", + icon: "garizon", + standard: "EIP3091", + }, ], "94": [ { - "name": "SwissDLT Explorer", - "url": "https://explorer.swissdlt.ch", - "icon": "bcts", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Bitkub Chain Explorer", + url: "https://bkcscan.com", + standard: "none", + icon: "bkc", + }, ], "97": [ { - "name": "bscscan-testnet", - "url": "https://testnet.bscscan.com", - "standard": "EIP3091" - } + name: "bscscan-testnet", + url: "https://testnet.bscscan.com", + standard: "EIP3091", + }, ], "98": [ { - "name": "SIX Scan", - "url": "https://sixscan.io/sixnet", - "standard": "none", - "icon": "six" - } + 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" - } + name: "blockscout", + url: "https://blockscout.com/poa/core", + icon: "blockscout", + standard: "EIP3091", + }, ], "100": [ { - "name": "gnosisscan", - "url": "https://gnosisscan.io", - "standard": "EIP3091" + name: "gnosisscan", + url: "https://gnosisscan.io", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://gnosis.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "blockscout", + url: "https://gnosis.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://gnosis.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + name: "dexguru", + url: "https://gnosis.dex.guru", + icon: "dexguru", + standard: "EIP3091", + }, ], "103": [ { - "name": "Worldland Explorer", - "url": "https://scan.worldland.foundation", - "standard": "EIP3091" - } + name: "Worldland Explorer", + url: "https://scan.worldland.foundation", + standard: "EIP3091", + }, ], "104": [ { - "name": "kaibascan", - "url": "https://kaibascan.io", - "icon": "kaibascan", - "standard": "EIP3091" - } + name: "kaibascan", + url: "https://kaibascan.io", + icon: "kaibascan", + standard: "EIP3091", + }, ], "105": [ { - "name": "Web3Games Explorer", - "url": "https://explorer-devnet.web3games.org", - "standard": "none" - } + name: "Web3Games Explorer", + url: "https://explorer-devnet.web3games.org", + standard: "none", + }, ], "106": [ { - "name": "Velas Explorer", - "url": "https://evmexplorer.velas.com", - "standard": "EIP3091" - } + name: "Velas Explorer", + url: "https://evmexplorer.velas.com", + standard: "EIP3091", + }, ], "107": [ { - "name": "nebulatestnet", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } + name: "nebulatestnet", + url: "https://explorer.novanetwork.io", + standard: "EIP3091", + }, ], "108": [ { - "name": "thundercore-viewblock", - "url": "https://viewblock.io/thundercore", - "standard": "EIP3091" - } + name: "thundercore-viewblock", + url: "https://viewblock.io/thundercore", + standard: "EIP3091", + }, ], "109": [ { - "name": "shibariumscan", - "url": "https://www.shibariumscan.io", - "standard": "none" - } + name: "shibariumscan", + url: "https://www.shibariumscan.io", + standard: "none", + }, ], "112": [ { - "name": "blockscout", - "url": "https://coinbit-explorer.chain.sbcrypto.app", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://coinbit-explorer.chain.sbcrypto.app", + icon: "blockscout", + standard: "EIP3091", + }, ], "113": [ { - "name": "Dehvo Explorer", - "url": "https://explorer.dehvo.com", - "standard": "EIP3091" - } + name: "Dehvo Explorer", + url: "https://explorer.dehvo.com", + standard: "EIP3091", + }, ], "114": [ { - "name": "blockscout", - "url": "https://coston2-explorer.flare.network", - "standard": "EIP3091" + name: "blockscout", + url: "https://coston2-explorer.flare.network", + standard: "EIP3091", }, { - "name": "flarescan", - "url": "https://coston2.testnet.flarescan.com", - "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" - } + name: "Uptick Explorer", + url: "https://evm-explorer.uptick.network", + icon: "uptick", + standard: "none", + }, ], "118": [ { - "name": "arcology", - "url": "https://testnet.arcology.network/explorer", - "standard": "none" - } + name: "arcology", + url: "https://testnet.arcology.network/explorer", + standard: "none", + }, ], "119": [ { - "name": "enulsscan", - "url": "https://evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } + name: "enulsscan", + url: "https://evmscan.nuls.io", + icon: "enuls", + standard: "EIP3091", + }, ], "120": [ { - "name": "enulsscan", - "url": "https://beta.evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } + name: "enulsscan", + url: "https://beta.evmscan.nuls.io", + icon: "enuls", + standard: "EIP3091", + }, ], "121": [ { - "name": "realscan", - "url": "https://rclscan.com", - "standard": "EIP3091" - } + name: "realscan", + url: "https://rclscan.com", + standard: "EIP3091", + }, ], "122": [ { - "name": "blockscout", - "url": "https://explorer.fuse.io", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.fuse.io", + icon: "blockscout", + standard: "EIP3091", + }, ], "125": [ { - "name": "OYchain Testnet Explorer", - "url": "https://explorer.testnet.oychain.io", - "standard": "none" - } + name: "OYchain Testnet Explorer", + url: "https://explorer.testnet.oychain.io", + standard: "none", + }, ], "126": [ { - "name": "OYchain Mainnet Explorer", - "url": "https://explorer.oychain.io", - "standard": "none" - } + name: "OYchain Mainnet Explorer", + url: "https://explorer.oychain.io", + standard: "none", + }, ], "128": [ { - "name": "hecoinfo", - "url": "https://hecoinfo.com", - "standard": "EIP3091" - } + name: "hecoinfo", + url: "https://hecoinfo.com", + standard: "EIP3091", + }, ], "129": [ { - "name": "Innovator Explorer", - "url": "https://evm.innovatorchain.com", - "icon": "blockscout", - "standard": "none" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://blockscout.bellecour.iex.ec", + icon: "blockscout", + standard: "EIP3091", + }, ], "135": [ { - "name": "alyx testnet scan", - "url": "https://testnet.alyxscan.com", - "standard": "EIP3091" - } + 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" - } + name: "Deamchain Block Explorer", + url: "https://scan.deamchain.com", + standard: "EIP3091", + icon: "deam", + }, ], "137": [ { - "name": "polygonscan", - "url": "https://polygonscan.com", - "standard": "EIP3091" + name: "polygonscan", + url: "https://polygonscan.com", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://polygon.dex.guru", - "icon": "dexguru", - "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: "Blockscout Explorer", + url: "https://blockscout.defi-oracle.io", + standard: "none", }, { - "name": "Quorum Explorer", - "url": "https://explorer.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" - } + name: "wikiwoop", + url: "https://explorer.wikiwoop.com", + standard: "EIP3091", + }, ], "141": [ { - "name": "Belly Scan", - "url": "https://testnet.bellyscan.com", - "standard": "none" - } + name: "Belly Scan", + url: "https://testnet.bellyscan.com", + standard: "none", + }, ], "144": [ { - "name": "Phiscan", - "url": "https://phiscan.com", - "icon": "phi", - "standard": "none" - } + name: "Phiscan", + url: "https://phiscan.com", + icon: "phi", + standard: "none", + }, ], "145": [ { - "name": "blockscout", - "url": "https://explorer.soraai.bot", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.soraai.bot", + icon: "blockscout", + standard: "EIP3091", + }, ], "147": [ { - "name": "Flag Mainnet Explorer", - "url": "https://flagscan.xyz", - "standard": "EIP3091" - } + name: "Flag Mainnet Explorer", + url: "https://flagscan.xyz", + standard: "EIP3091", + }, ], "148": [ { - "name": "explorer", - "url": "https://explorer.evm.shimmer.network", - "icon": "shimmerevm", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "TenetScan Testnet", + url: "https://testnet.tenetscan.io", + icon: "tenet", + standard: "EIP3091", + }, ], "156": [ { - "name": "OEScan explorer", - "url": "https://testnet.oescan.io", - "standard": "EIP3091" - } + name: "OEScan explorer", + url: "https://testnet.oescan.io", + standard: "EIP3091", + }, ], "157": [ { - "name": "puppyscan", - "url": "https://puppyscan.shib.io", - "standard": "none" - } + name: "puppyscan", + url: "https://puppyscan.shib.io", + standard: "none", + }, ], "158": [ { - "name": "Rbascan Explorer", - "url": "https://rbascan.com", - "standard": "EIP3091" - } + name: "Rbascan Explorer", + url: "https://rbascan.com", + standard: "EIP3091", + }, ], "159": [ { - "name": "Rbascan Testnet Explorer", - "url": "https://testnet.rbascan.com", - "standard": "EIP3091" - } + name: "Rbascan Testnet Explorer", + url: "https://testnet.rbascan.com", + standard: "EIP3091", + }, ], "161": [ { - "name": "blockscout - evascan", - "url": "https://testnet.evascan.io", - "standard": "EIP3091" - } + 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 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 Blockscout", + url: "https://omni-testnet.blockscout.com", + standard: "EIP3091", }, { - "name": "Omni EVM Explorer on Routescan", - "url": "https://testnet.omniscan.network", - "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" - } + name: "atoshiscan", + url: "https://scan.atoverse.info", + standard: "EIP3091", + }, ], "168": [ { - "name": "AIOZ Network Explorer", - "url": "https://explorer.aioz.network", - "standard": "EIP3091" - } + name: "AIOZ Network Explorer", + url: "https://explorer.aioz.network", + standard: "EIP3091", + }, ], "169": [ { - "name": "manta-pacific Explorer", - "url": "https://pacific-explorer.manta.network", - "standard": "EIP3091" - } + name: "manta-pacific Explorer", + url: "https://pacific-explorer.manta.network", + standard: "EIP3091", + }, ], "176": [ { - "name": "dcscan", - "url": "https://exp.dcnetio.cloud", - "standard": "none" - } + name: "dcscan", + url: "https://exp.dcnetio.cloud", + standard: "none", + }, ], "180": [ { - "name": "AME Scan", - "url": "https://amescan.io", - "standard": "EIP3091" - } + name: "AME Scan", + url: "https://amescan.io", + standard: "EIP3091", + }, ], "185": [ { - "name": "blockscout", - "url": "https://explorer.mintchain.io", - "icon": "mint", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.mintchain.io", + icon: "mint", + standard: "EIP3091", + }, ], "186": [ { - "name": "seeleview", - "url": "https://seeleview.net", - "standard": "none" - } + name: "seeleview", + url: "https://seeleview.net", + standard: "none", + }, ], "188": [ { - "name": "Blockmeta", - "url": "https://bmc.blockmeta.com", - "standard": "none" - } + name: "Blockmeta", + url: "https://bmc.blockmeta.com", + standard: "none", + }, ], "189": [ { - "name": "Blockmeta", - "url": "https://bmctestnet.blockmeta.com", - "standard": "none" - } + name: "Blockmeta", + url: "https://bmctestnet.blockmeta.com", + standard: "none", + }, ], "193": [ { - "name": "cemscan", - "url": "https://cemscan.com", - "standard": "EIP3091" - } + name: "cemscan", + url: "https://cemscan.com", + standard: "EIP3091", + }, ], "195": [ { - "name": "OKLink", - "url": "https://www.oklink.com/xlayer-test", - "standard": "EIP3091" - } + name: "OKLink", + url: "https://www.oklink.com/xlayer-test", + standard: "EIP3091", + }, ], "196": [ { - "name": "OKLink", - "url": "https://www.oklink.com/xlayer", - "standard": "EIP3091" - } + name: "OKLink", + url: "https://www.oklink.com/xlayer", + standard: "EIP3091", + }, ], "197": [ { - "name": "blockscout", - "url": "https://testnet.neutrinoschain.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.neutrinoschain.com", + standard: "EIP3091", + }, ], "198": [ { - "name": "Bitchain Scan", - "url": "https://explorer.bitchain.biz", - "standard": "EIP3091" - } + name: "Bitchain Scan", + url: "https://explorer.bitchain.biz", + standard: "EIP3091", + }, ], "199": [ { - "name": "BitTorrent Chain Explorer", - "url": "https://bttcscan.com", - "standard": "EIP3091" - } + name: "BitTorrent Chain Explorer", + url: "https://bttcscan.com", + standard: "EIP3091", + }, ], "200": [ { - "name": "blockscout", - "url": "https://blockscout.com/xdai/arbitrum", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.com/xdai/arbitrum", + standard: "EIP3091", + }, ], "201": [ { - "name": "moac testnet explorer", - "url": "https://testnet.moac.io", - "standard": "none" - } + name: "moac testnet explorer", + url: "https://testnet.moac.io", + standard: "none", + }, ], "202": [ { - "name": "Edgeless Explorer", - "url": "https://testnet.explorer.edgeless.network", - "standard": "EIP3091" - } + name: "Edgeless Explorer", + url: "https://testnet.explorer.edgeless.network", + standard: "EIP3091", + }, ], "204": [ { - "name": "opbnbscan", - "url": "https://mainnet.opbnbscan.com", - "standard": "EIP3091" - } + name: "opbnbscan", + url: "https://mainnet.opbnbscan.com", + standard: "EIP3091", + }, ], "206": [ { - "name": "VinuScan Testnet", - "url": "https://testnet.vinuscan.com", - "icon": "vinuscan-testnet", - "standard": "none" - } + name: "VinuScan Testnet", + url: "https://testnet.vinuscan.com", + icon: "vinuscan-testnet", + standard: "none", + }, ], "207": [ { - "name": "VinuScan", - "url": "https://vinuscan.com", - "icon": "vinuscan", - "standard": "none" - } + name: "VinuScan", + url: "https://vinuscan.com", + icon: "vinuscan", + standard: "none", + }, ], "210": [ { - "name": "Bitnet Explorer", - "url": "https://btnscan.com", - "standard": "EIP3091" - } + name: "Bitnet Explorer", + url: "https://btnscan.com", + standard: "EIP3091", + }, ], "212": [ { - "name": "maposcan", - "url": "https://testnet.maposcan.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "shinascan", + url: "https://shinascan.shinarium.org", + standard: "EIP3091", + }, ], "217": [ { - "name": "siriusnet explorer", - "url": "https://scan.siriusnet.io", - "standard": "none" - } + name: "siriusnet explorer", + url: "https://scan.siriusnet.io", + standard: "none", + }, ], "220": [ { - "name": "scalind", - "url": "https://explorer-sepolia.scalind.com", - "standard": "EIP3091" - } + name: "scalind", + url: "https://explorer-sepolia.scalind.com", + standard: "EIP3091", + }, ], "223": [ { - "name": "blockscout", - "url": "https://explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.bsquared.network", + icon: "bsquare", + standard: "EIP3091", + }, ], "224": [ { - "name": "Viridis Testnet", - "url": "https://testnet.vrd.network", - "standard": "EIP3091" - } + name: "Viridis Testnet", + url: "https://testnet.vrd.network", + standard: "EIP3091", + }, ], "225": [ { - "name": "blockscout", - "url": "https://scan.lachain.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.lachain.io", + standard: "EIP3091", + }, ], "226": [ { - "name": "blockscout", - "url": "https://scan-test.lachain.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan-test.lachain.io", + standard: "EIP3091", + }, ], "230": [ { - "name": "SwapDEX", - "url": "https://evm.swapdex.network", - "standard": "none" - } + name: "SwapDEX", + url: "https://evm.swapdex.network", + standard: "none", + }, ], "234": [ { - "name": "ProtoJumbo", - "url": "https://protojumbo.jumbochain.org", - "standard": "EIP3091" - } + name: "ProtoJumbo", + url: "https://protojumbo.jumbochain.org", + standard: "EIP3091", + }, ], "236": [ { - "name": "Deamchain Testnet Explorer", - "url": "https://testnet-scan.deamchain.com", - "standard": "EIP3091", - "icon": "deam" - } + name: "Deamchain Testnet Explorer", + url: "https://testnet-scan.deamchain.com", + standard: "EIP3091", + icon: "deam", + }, ], "242": [ { - "name": "plgscan", - "url": "https://www.plgscan.com", - "standard": "EIP3091" - } + name: "plgscan", + url: "https://www.plgscan.com", + standard: "EIP3091", + }, ], "246": [ { - "name": "blockscout", - "url": "https://explorer.energyweb.org", - "standard": "none" - } + name: "blockscout", + url: "https://explorer.energyweb.org", + standard: "none", + }, ], "248": [ { - "name": "blockscout", - "url": "https://explorer.oasys.games", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.oasys.games", + standard: "EIP3091", + }, ], "250": [ { - "name": "ftmscan", - "url": "https://ftmscan.com", - "icon": "ftmscan", - "standard": "EIP3091" + name: "ftmscan", + url: "https://ftmscan.com", + icon: "ftmscan", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://fantom.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + name: "dexguru", + url: "https://fantom.dex.guru", + icon: "dexguru", + standard: "EIP3091", + }, ], "252": [ { - "name": "fraxscan", - "url": "https://fraxscan.com", - "standard": "EIP3091" - } + name: "fraxscan", + url: "https://fraxscan.com", + standard: "EIP3091", + }, ], "255": [ { - "name": "blockscout", - "url": "https://blockscout.kroma.network", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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: "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" - } + name: "blockscout", + url: "https://explorer.neura-testnet.ankr.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "269": [ { - "name": "hscan", - "url": "https://hscan.org", - "standard": "EIP3091" - } + name: "hscan", + url: "https://hscan.org", + standard: "EIP3091", + }, ], "271": [ { - "name": "EgonCoin Mainnet", - "url": "https://egonscan.com", - "standard": "EIP3091" - } + name: "EgonCoin Mainnet", + url: "https://egonscan.com", + standard: "EIP3091", + }, ], "274": [ { - "name": "LaChain Explorer", - "url": "https://explorer.lachain.network", - "standard": "EIP3091" - } + 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" - } + name: "Cronos zkEVM Testnet Explorer", + url: "https://explorer.zkevm.cronos.org/testnet", + standard: "none", + }, ], "288": [ { - "name": "Bobascan", - "url": "https://bobascan.com", - "standard": "none" - } + name: "Bobascan", + url: "https://bobascan.com", + standard: "none", + }, ], "291": [ { - "name": "orderlyscout", - "url": "https://explorer.orderly.network", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "orderlyscout", + url: "https://explorer.orderly.network", + icon: "blockscout", + standard: "EIP3091", + }, ], "295": [ { - "name": "HashScan", - "url": "https://hashscan.io/mainnet", - "standard": "EIP3091" + name: "HashScan", + url: "https://hashscan.io/mainnet", + standard: "EIP3091", }, { - "name": "Arkhia Explorer", - "url": "https://explorer.arkhia.io", - "standard": "none" + name: "Arkhia Explorer", + url: "https://explorer.arkhia.io", + standard: "none", }, { - "name": "DragonGlass", - "url": "https://app.dragonglass.me", - "standard": "none" + name: "DragonGlass", + url: "https://app.dragonglass.me", + standard: "none", }, { - "name": "Hedera Explorer", - "url": "https://hederaexplorer.io", - "standard": "none" + name: "Hedera Explorer", + url: "https://hederaexplorer.io", + standard: "none", }, { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.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: "HashScan", + url: "https://hashscan.io/testnet", + standard: "EIP3091", }, { - "name": "Arkhia Explorer", - "url": "https://explorer.arkhia.io", - "standard": "none" + name: "Arkhia Explorer", + url: "https://explorer.arkhia.io", + standard: "none", }, { - "name": "DragonGlass", - "url": "https://app.dragonglass.me", - "standard": "none" + name: "DragonGlass", + url: "https://app.dragonglass.me", + standard: "none", }, { - "name": "Hedera Explorer", - "url": "https://hederaexplorer.io", - "standard": "none" + name: "Hedera Explorer", + url: "https://hederaexplorer.io", + standard: "none", }, { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.io", - "standard": "none" - } + name: "Ledger Works Explore", + url: "https://explore.lworks.io", + standard: "none", + }, ], "297": [ { - "name": "HashScan", - "url": "https://hashscan.io/previewnet", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "zkCandy Block Explorer", + url: "https://sepolia.explorer.zkcandy.io", + icon: "zkcandy", + standard: "EIP3091", + }, ], "303": [ { - "name": "neuroscan", - "url": "https://testnet.ncnscan.com", - "standard": "EIP3091" - } + name: "neuroscan", + url: "https://testnet.ncnscan.com", + standard: "EIP3091", + }, ], "305": [ { - "name": "blockscout", - "url": "https://explorer.zksats.io", - "icon": "zksats", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.zksats.io", + icon: "zksats", + standard: "EIP3091", + }, ], "307": [ { - "name": "Lovely Network Testnet", - "url": "https://tscan.lovely.network", - "standard": "EIP3091" - } + name: "Lovely Network Testnet", + url: "https://tscan.lovely.network", + standard: "EIP3091", + }, ], "308": [ { - "name": "furthscan", - "url": "http://furthscan.com", - "standard": "EIP3091" - } + name: "furthscan", + url: "http://furthscan.com", + standard: "EIP3091", + }, ], "309": [ { - "name": "wyzth", - "url": "http://24.199.108.65:4000", - "icon": "wyzth", - "standard": "EIP3091" - } + 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" - } + name: "Omax Chain Explorer", + url: "https://omaxray.com", + icon: "omaxray", + standard: "EIP3091", + }, ], "313": [ { - "name": "neuroscan", - "url": "https://ncnscan.com", - "standard": "EIP3091" - } + name: "neuroscan", + url: "https://ncnscan.com", + standard: "EIP3091", + }, ], "314": [ { - "name": "Filfox", - "url": "https://filfox.info/en", - "standard": "none" + name: "Filfox", + url: "https://filfox.info/en", + standard: "none", }, { - "name": "Beryx", - "url": "https://beryx.zondax.ch", - "standard": "none" + name: "Beryx", + url: "https://beryx.zondax.ch", + standard: "none", }, { - "name": "Glif Explorer", - "url": "https://explorer.glif.io", - "standard": "EIP3091" + name: "Glif Explorer", + url: "https://explorer.glif.io", + standard: "EIP3091", }, { - "name": "Dev.storage", - "url": "https://dev.storage", - "standard": "none" + name: "Dev.storage", + url: "https://dev.storage", + standard: "none", }, { - "name": "Filscan", - "url": "https://filscan.io", - "standard": "none" + name: "Filscan", + url: "https://filscan.io", + standard: "none", }, { - "name": "Filscout", - "url": "https://filscout.io/en", - "standard": "none" - } + name: "Filscout", + url: "https://filscout.io/en", + standard: "none", + }, ], "321": [ { - "name": "KCC Explorer", - "url": "https://explorer.kcc.io/en", - "standard": "EIP3091" - } + name: "KCC Explorer", + url: "https://explorer.kcc.io/en", + standard: "EIP3091", + }, ], "322": [ { - "name": "kcc-scan-testnet", - "url": "https://scan-testnet.kcc.network", - "standard": "EIP3091" - } + name: "kcc-scan-testnet", + url: "https://scan-testnet.kcc.network", + standard: "EIP3091", + }, ], "323": [ { - "name": "Blockscout", - "url": "https://explorer.cosvm.net", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "w3q-mainnet", + url: "https://explorer.mainnet.web3q.io", + standard: "EIP3091", + }, ], "335": [ { - "name": "ethernal", - "url": "https://explorer-test.dfkchain.com", - "icon": "ethereum", - "standard": "none" - } + 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: "subscan", + url: "https://shiden.subscan.io", + standard: "none", + icon: "subscan", }, { - "name": "blockscout", - "url": "https://blockscout.com/shiden", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.com/shiden", + icon: "blockscout", + standard: "EIP3091", + }, ], "338": [ { - "name": "Cronos Testnet Explorer", - "url": "https://explorer.cronos.org/testnet", - "standard": "none" - } + name: "Cronos Testnet Explorer", + url: "https://explorer.cronos.org/testnet", + standard: "none", + }, ], "345": [ { - "name": "tscscan", - "url": "https://www.tscscan.io", - "icon": "netxscan", - "standard": "none" - } + name: "tscscan", + url: "https://www.tscscan.io", + icon: "netxscan", + standard: "none", + }, ], "361": [ { - "name": "Theta Mainnet Explorer", - "url": "https://explorer.thetatoken.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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: "blockscout", + url: "https://scan.pulsechain.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "otterscan", - "url": "https://otter.pulsechain.com", - "standard": "EIP3091" - } + name: "otterscan", + url: "https://otter.pulsechain.com", + standard: "EIP3091", + }, ], "371": [ { - "name": "blockscout", - "url": "https://explorer-testnet.theconsta.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "CamDL Testnet Explorer", + url: "https://explorer.testnet.camdl.gov.kh", + standard: "EIP3091", + }, ], "397": [ { - "name": "Near Blocks", - "url": "https://nearblocks.io", - "standard": "none" - } + name: "Near Blocks", + url: "https://nearblocks.io", + standard: "none", + }, ], "398": [ { - "name": "Near blocks", - "url": "https://testnet.nearblocks.io", - "standard": "none" - } + name: "Near blocks", + url: "https://testnet.nearblocks.io", + standard: "none", + }, ], "399": [ { - "name": "N3scan", - "url": "https://scan.nativ3.network", - "standard": "EIP3091" - } + name: "N3scan", + url: "https://scan.nativ3.network", + standard: "EIP3091", + }, ], "400": [ { - "name": "blockscout", - "url": "https://testnet.hyperonchain.com", - "icon": "hyperonchain", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.hyperonchain.com", + icon: "hyperonchain", + standard: "EIP3091", + }, ], "401": [ { - "name": "OZONE Scan", - "url": "https://testnet.ozonescan.io", - "standard": "EIP3091" - } + name: "OZONE Scan", + url: "https://testnet.ozonescan.io", + standard: "EIP3091", + }, ], "404": [ { - "name": "Syndr L3 Explorer", - "url": "https://explorer.syndr.com", - "standard": "EIP3091" - } + name: "Syndr L3 Explorer", + url: "https://explorer.syndr.com", + standard: "EIP3091", + }, ], "411": [ { - "name": "pepechain explorer", - "url": "https://explorer.pepe-chain.vip", - "standard": "EIP3091" - } + name: "pepechain explorer", + url: "https://explorer.pepe-chain.vip", + standard: "EIP3091", + }, ], "416": [ { - "name": "SX Network Explorer", - "url": "https://explorer.sx.technology", - "standard": "EIP3091" - } + name: "SX Network Explorer", + url: "https://explorer.sx.technology", + standard: "EIP3091", + }, ], "418": [ { - "name": "LaTestnet Explorer", - "url": "https://testexplorer.lachain.network", - "standard": "EIP3091" - } + name: "LaTestnet Explorer", + url: "https://testexplorer.lachain.network", + standard: "EIP3091", + }, ], "420": [ { - "name": "blockscout", - "url": "https://optimism-goerli.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://optimism-goerli.blockscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "422": [ { - "name": "Viridis Mainnet", - "url": "https://explorer.vrd.network", - "standard": "EIP3091" - } + name: "Viridis Mainnet", + url: "https://explorer.vrd.network", + standard: "EIP3091", + }, ], "424": [ { - "name": "blockscout", - "url": "https://explorer.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.publicgoods.network", + icon: "blockscout", + standard: "EIP3091", + }, ], "427": [ { - "name": "Zeeth Explorer", - "url": "https://explorer.zeeth.io", - "standard": "none" - } + name: "Zeeth Explorer", + url: "https://explorer.zeeth.io", + standard: "none", + }, ], "428": [ { - "name": "Geso Verse Explorer", - "url": "https://explorer.verse.gesoten.com", - "standard": "EIP3091" - } + name: "Geso Verse Explorer", + url: "https://explorer.verse.gesoten.com", + standard: "EIP3091", + }, ], "434": [ { - "name": "Boyaa explorer", - "url": "https://explorer.mainnet.boyaa.network", - "standard": "EIP3091" - } + name: "Boyaa explorer", + url: "https://explorer.mainnet.boyaa.network", + standard: "EIP3091", + }, ], "443": [ { - "name": "Ten Sepolia Rollup Explorer", - "url": "https://tenscan.io", - "standard": "none" - } + name: "Ten Sepolia Rollup Explorer", + url: "https://tenscan.io", + standard: "none", + }, ], "444": [ { - "name": "Synapse Chain Sepolia", - "url": "https://sepolia.synapsescan.com", - "standard": "EIP3091" - } + name: "Synapse Chain Sepolia", + url: "https://sepolia.synapsescan.com", + standard: "EIP3091", + }, ], "456": [ { - "name": "ARZIO Scan", - "url": "https://scan.arzio.co", - "standard": "EIP3091" - } + name: "ARZIO Scan", + url: "https://scan.arzio.co", + standard: "EIP3091", + }, ], "462": [ { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } + name: "AreonScan", + url: "https://areonscan.com", + standard: "none", + }, ], "463": [ { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } + name: "AreonScan", + url: "https://areonscan.com", + standard: "none", + }, ], "500": [ { - "name": "blockexplorer", - "url": "https://suite.camino.network/explorer", - "standard": "none" - } + name: "blockexplorer", + url: "https://suite.camino.network/explorer", + standard: "none", + }, ], "501": [ { - "name": "blockexplorer", - "url": "https://suite.camino.network/explorer", - "standard": "none" - } + name: "blockexplorer", + url: "https://suite.camino.network/explorer", + standard: "none", + }, ], "512": [ { - "name": "aacscan", - "url": "https://scan.acuteangle.com", - "standard": "EIP3091" - } + name: "aacscan", + url: "https://scan.acuteangle.com", + standard: "EIP3091", + }, ], "513": [ { - "name": "aacscan-testnet", - "url": "https://scan-testnet.acuteangle.com", - "standard": "EIP3091" - } + name: "aacscan-testnet", + url: "https://scan-testnet.acuteangle.com", + standard: "EIP3091", + }, ], "520": [ { - "name": "xscscan", - "url": "https://xscscan.pub", - "standard": "EIP3091" - } + name: "xscscan", + url: "https://xscscan.pub", + standard: "EIP3091", + }, ], "530": [ { - "name": "FunctionX Explorer", - "url": "https://fx-evm.functionx.io", - "standard": "EIP3091" - } + name: "FunctionX Explorer", + url: "https://fx-evm.functionx.io", + standard: "EIP3091", + }, ], "534": [ { - "name": "candleexplorer", - "url": "https://candleexplorer.com", - "standard": "EIP3091" - } + name: "candleexplorer", + url: "https://candleexplorer.com", + standard: "EIP3091", + }, ], "537": [ { - "name": "OpTrust explorer", - "url": "https://scan.optrust.io", - "icon": "optrust", - "standard": "none" - } + name: "OpTrust explorer", + url: "https://scan.optrust.io", + icon: "optrust", + standard: "none", + }, ], "542": [ { - "name": "PAWCHAIN Testnet", - "url": "https://pawscan.io", - "standard": "none" - } + name: "PAWCHAIN Testnet", + url: "https://pawscan.io", + standard: "none", + }, ], "545": [ { - "name": "Flow Diver", - "url": "https://testnet.flowdiver.io", - "standard": "none" - } + name: "Flow Diver", + url: "https://testnet.flowdiver.io", + standard: "none", + }, ], "555": [ { - "name": "Vela1 Chain Mainnet Explorer", - "url": "https://exp.velaverse.io", - "standard": "EIP3091" - } + 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" - } + name: "dogechain testnet explorer", + url: "https://explorer-testnet.dogechain.dog", + standard: "EIP3091", + }, ], "570": [ { - "name": "Rollux Explorer", - "url": "https://explorer.rollux.com", - "standard": "EIP3091" - } + name: "Rollux Explorer", + url: "https://explorer.rollux.com", + standard: "EIP3091", + }, ], "571": [ { - "name": "MetaExplorer", - "url": "https://explorer.metatime.com", - "standard": "EIP3091" - } + name: "MetaExplorer", + url: "https://explorer.metatime.com", + standard: "EIP3091", + }, ], "579": [ { - "name": "filenova explorer", - "url": "https://scan.filenova.org", - "icon": "filenova", - "standard": "none" - } + 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: "subscan", + url: "https://astar.subscan.io", + standard: "none", + icon: "subscan", }, { - "name": "blockscout", - "url": "https://blockscout.com/astar", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.com/astar", + icon: "blockscout", + standard: "EIP3091", + }, ], "595": [ { - "name": "blockscout", - "url": "https://blockscout.mandala.aca-staging.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.mandala.aca-staging.network", + standard: "EIP3091", + }, ], "596": [ { - "name": "blockscout", - "url": "https://blockscout.karura-testnet.aca-staging.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Vine Explorer", + url: "https://vne.network/rose", + standard: "none", + icon: "vine", + }, ], "612": [ { - "name": "EIOB Explorer", - "url": "https://explorer.eiob.xyz", - "standard": "none" - } + name: "EIOB Explorer", + url: "https://explorer.eiob.xyz", + standard: "none", + }, ], "614": [ { - "name": "GLQ Explorer", - "url": "https://explorer.graphlinq.io", - "standard": "none" - } + name: "GLQ Explorer", + url: "https://explorer.graphlinq.io", + standard: "none", + }, ], "634": [ { - "name": "avoscan", - "url": "https://avoscan.co", - "icon": "avocado", - "standard": "none" - } + name: "avoscan", + url: "https://avoscan.co", + icon: "avocado", + standard: "none", + }, ], "646": [ { - "name": "Flow Diver", - "url": "https://previewnet.flowdiver.io", - "standard": "none" - } + name: "Flow Diver", + url: "https://previewnet.flowdiver.io", + standard: "none", + }, ], "647": [ { - "name": "SX Network Toronto Explorer", - "url": "https://explorer.toronto.sx.technology", - "standard": "EIP3091" - } + 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" - } + name: "Endurance Scan", + url: "https://explorer.endurance.fusionist.io", + standard: "EIP3091", + }, ], "653": [ { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } + name: "kalichain explorer", + url: "https://explorer.kalichain.com", + standard: "EIP3091", + }, ], "654": [ { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } + name: "kalichain explorer", + url: "https://explorer.kalichain.com", + standard: "EIP3091", + }, ], "662": [ { - "name": "ultronsmartchain explorer", - "url": "https://scan.ultronsmartchain.io", - "standard": "EIP3091" - } + name: "ultronsmartchain explorer", + url: "https://scan.ultronsmartchain.io", + standard: "EIP3091", + }, ], "667": [ { - "name": "blockscout", - "url": "https://arrakis.gorengine.com", - "icon": "laos", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://arrakis.gorengine.com", + icon: "laos", + standard: "EIP3091", + }, ], "668": [ { - "name": "JuncaScan", - "url": "https://scan.juncachain.com", - "standard": "EIP3091" - } + name: "JuncaScan", + url: "https://scan.juncachain.com", + standard: "EIP3091", + }, ], "669": [ { - "name": "JuncaScan", - "url": "https://scan-testnet.juncachain.com", - "standard": "EIP3091" - } + name: "JuncaScan", + url: "https://scan-testnet.juncachain.com", + standard: "EIP3091", + }, ], "686": [ { - "name": "blockscout", - "url": "https://blockscout.karura.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.karura.network", + standard: "EIP3091", + }, ], "690": [ { - "name": "blockscout", - "url": "https://explorer.redstone.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.redstone.xyz", + icon: "blockscout", + standard: "EIP3091", + }, ], "700": [ { - "name": "starscan", - "url": "https://avastar.info", - "standard": "EIP3091" - } + name: "starscan", + url: "https://avastar.info", + standard: "EIP3091", + }, ], "701": [ { - "name": "blockscout", - "url": "https://koi-scan.darwinia.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://koi-scan.darwinia.network", + standard: "EIP3091", + }, ], "707": [ { - "name": "BlockChain Station Explorer", - "url": "https://explorer.bcsdev.io", - "standard": "EIP3091" - } + name: "BlockChain Station Explorer", + url: "https://explorer.bcsdev.io", + standard: "EIP3091", + }, ], "708": [ { - "name": "BlockChain Station Explorer", - "url": "https://testnet.bcsdev.io", - "standard": "EIP3091" - } + 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" - } + name: "Furya EVM Explorer", + url: "https://explorer.furya.io", + standard: "EIP3091", + icon: "highbury", + }, ], "713": [ { - "name": "vrcscan", - "url": "https://vrcscan.com", - "standard": "EIP3091" + name: "vrcscan", + url: "https://vrcscan.com", + standard: "EIP3091", }, { - "name": "dxbscan", - "url": "https://dxb.vrcscan.com", - "standard": "EIP3091" - } + name: "dxbscan", + url: "https://dxb.vrcscan.com", + standard: "EIP3091", + }, ], "719": [ { - "name": "shibscan", - "url": "https://puppyscan.shib.io", - "standard": "EIP3091" - } + name: "shibscan", + url: "https://puppyscan.shib.io", + standard: "EIP3091", + }, ], "721": [ { - "name": "blockscout", - "url": "https://explorer.lycanchain.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.lycanchain.com", + standard: "EIP3091", + }, ], "730": [ { - "name": "Lovely Network Mainnet", - "url": "https://scan.lovely.network", - "standard": "EIP3091" - } + name: "Lovely Network Mainnet", + url: "https://scan.lovely.network", + standard: "EIP3091", + }, ], "741": [ { - "name": "ventionscan", - "url": "https://testnet.ventionscan.io", - "standard": "EIP3091" - } + name: "ventionscan", + url: "https://testnet.ventionscan.io", + standard: "EIP3091", + }, ], "742": [ { - "name": "Script Explorer", - "url": "https://explorer.script.tv", - "standard": "none" - } + name: "Script Explorer", + url: "https://explorer.script.tv", + standard: "none", + }, ], "747": [ { - "name": "Flow Diver", - "url": "https://flowdiver.io", - "standard": "none" - } + name: "Flow Diver", + url: "https://flowdiver.io", + standard: "none", + }, ], "766": [ { - "name": "QL1 Mainnet Explorer", - "url": "https://mainnet.qom.one", - "icon": "qom", - "standard": "EIP3091" - } + 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" - } + name: "OPEN CHAIN TESTNET", + url: "https://testnet.openchain.info", + standard: "none", + }, ], "786": [ { - "name": "maalscan", - "url": "https://maalscan.io", - "standard": "EIP3091" - } + name: "maalscan", + url: "https://maalscan.io", + standard: "EIP3091", + }, ], "787": [ { - "name": "blockscout", - "url": "https://blockscout.acala.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.acala.network", + standard: "EIP3091", + }, ], "788": [ { - "name": "aeroscan", - "url": "https://testnet.aeroscan.id", - "standard": "EIP3091" - } + name: "aeroscan", + url: "https://testnet.aeroscan.id", + standard: "EIP3091", + }, ], "789": [ { - "name": "patexscan", - "url": "https://patexscan.io", - "icon": "patex", - "standard": "EIP3091" - } + name: "patexscan", + url: "https://patexscan.io", + icon: "patex", + standard: "EIP3091", + }, ], "799": [ { - "name": "rupayascan", - "url": "https://scan.testnet.rupaya.io", - "standard": "EIP3091" - } + name: "rupayascan", + url: "https://scan.testnet.rupaya.io", + standard: "EIP3091", + }, ], "800": [ { - "name": "Lucid Explorer", - "url": "https://explorer.lucidcoin.io", - "standard": "none" - } + name: "Lucid Explorer", + url: "https://explorer.lucidcoin.io", + standard: "none", + }, ], "810": [ { - "name": "Haven1 Explorer", - "url": "https://testnet-explorer.haven1.org", - "icon": "haven1", - "standard": "EIP3091" - } + 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.qitmeer.io", + standard: "EIP3091", }, { - "name": "meerscan", - "icon": "meer", - "url": "https://qng.meerscan.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" - } + name: "BeOne Chain Mainnet", + url: "https://beonescan.com", + standard: "EIP3091", + }, ], "822": [ { - "name": "RunicScan", - "url": "https://scan.runic.build", - "icon": "runic-testnet", - "standard": "EIP3091" - } + name: "RunicScan", + url: "https://scan.runic.build", + icon: "runic-testnet", + standard: "EIP3091", + }, ], "831": [ { - "name": "CDT Explorer", - "url": "https://explorer.checkdot.io", - "standard": "none" - } + name: "CDT Explorer", + url: "https://explorer.checkdot.io", + standard: "none", + }, ], "841": [ { - "name": "Taraxa Explorer", - "url": "https://explorer.mainnet.taraxa.io", - "standard": "none" - } + name: "Taraxa Explorer", + url: "https://explorer.mainnet.taraxa.io", + standard: "none", + }, ], "842": [ { - "name": "Taraxa Explorer", - "url": "https://explorer.testnet.taraxa.io", - "standard": "none" - } + name: "Taraxa Explorer", + url: "https://explorer.testnet.taraxa.io", + standard: "none", + }, ], "859": [ { - "name": "Zeeth Explorer Dev", - "url": "https://explorer.dev.zeeth.io", - "standard": "none" - } + name: "Zeeth Explorer Dev", + url: "https://explorer.dev.zeeth.io", + standard: "none", + }, ], "868": [ { - "name": "FSCScan", - "url": "https://explorer.fantasiachain.com", - "standard": "EIP3091" - } + 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" - } + name: "Bandai Namco Research Verse Explorer", + url: "https://explorer.main.oasvrs.bnken.net", + standard: "EIP3091", + }, ], "877": [ { - "name": "dxtscan", - "url": "https://dxtscan.com", - "standard": "EIP3091" - } + name: "dxtscan", + url: "https://dxtscan.com", + standard: "EIP3091", + }, ], "880": [ { - "name": "Ambros Chain Explorer", - "url": "https://ambrosscan.com", - "standard": "none" - } + name: "Ambros Chain Explorer", + url: "https://ambrosscan.com", + standard: "none", + }, ], "898": [ { - "name": "Maxi Chain Testnet Explorer", - "url": "https://testnet.maxi.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "TAPROOT Scan", + url: "https://scan.taprootchain.io", + icon: "taproot", + standard: "EIP3091", + }, ], "917": [ { - "name": "FireScan", - "url": "https://rinia.firescan.io", - "standard": "EIP3091" - } + name: "FireScan", + url: "https://rinia.firescan.io", + standard: "EIP3091", + }, ], "919": [ { - "name": "modescout", - "url": "https://sepolia.explorer.mode.network", - "standard": "none" - } + name: "modescout", + url: "https://sepolia.explorer.mode.network", + standard: "none", + }, ], "927": [ { - "name": "Yidarkscan", - "url": "https://yidarkscan.com", - "standard": "EIP3091" - } + 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://scan.v4.testnet.pulsechain.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://otter-testnet-pulsechain.g4mm4.io", - "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" - } + name: "Lyra Explorer", + url: "https://explorer.lyra.finance", + icon: "lyra", + standard: "EIP3091", + }, ], "963": [ { - "name": "blockscout", - "url": "https://scan.bitcoincode.technology", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.bitcoincode.technology", + standard: "EIP3091", + }, ], "969": [ { - "name": "EthXY Network Explorer", - "url": "https://explorer.ethxy.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "EthXY Testnet Network Explorer", + url: "https://explorer.testnet.ethxy.com", + standard: "EIP3091", + }, ], "980": [ { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } + 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" - } + 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" - } + name: "topscan.dev", + url: "https://www.topscan.io", + standard: "none", + }, ], "990": [ { - "name": "eLiberty Mainnet", - "url": "https://explorer.eliberty.ngo", - "standard": "EIP3091" - } + name: "eLiberty Mainnet", + url: "https://explorer.eliberty.ngo", + standard: "EIP3091", + }, ], "997": [ { - "name": "5ireChain Explorer", - "url": "https://explorer.5ire.network", - "standard": "none", - "icon": "5ireChain" - } + name: "5ireChain Explorer", + url: "https://explorer.5ire.network", + standard: "none", + icon: "5ireChain", + }, ], "998": [ { - "name": "blockscout", - "url": "https://explorer.luckynetwork.org", - "standard": "none" + name: "blockscout", + url: "https://explorer.luckynetwork.org", + standard: "none", }, { - "name": "expedition", - "url": "https://lnscan.org", - "standard": "none" - } + name: "expedition", + url: "https://lnscan.org", + standard: "none", + }, ], "1000": [ { - "name": "GTON Network Explorer", - "url": "https://explorer.gton.network", - "standard": "EIP3091" - } + name: "GTON Network Explorer", + url: "https://explorer.gton.network", + standard: "EIP3091", + }, ], "1001": [ { - "name": "Klaytnscope", - "url": "https://baobab.klaytnscope.com", - "standard": "EIP3091" + name: "Klaytnscope", + url: "https://baobab.klaytnscope.com", + standard: "EIP3091", }, { - "name": "Klaytnfinder", - "url": "https://baobab.klaytnfinder.io", - "standard": "EIP3091" - } + name: "Klaytnfinder", + url: "https://baobab.klaytnfinder.io", + standard: "EIP3091", + }, ], "1003": [ { - "name": "Tectum explorer", - "url": "https://explorer.tectum.io", - "icon": "Tettoken256", - "standard": "EIP3091" - } + 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" - } + name: "test-ektascan", + url: "https://test.ektascan.io", + icon: "ekta", + standard: "EIP3091", + }, ], "1008": [ { - "name": "eurusexplorer", - "url": "https://explorer.eurus.network", - "icon": "eurus", - "standard": "none" - } + name: "eurusexplorer", + url: "https://explorer.eurus.network", + icon: "eurus", + standard: "none", + }, ], "1009": [ { - "name": "Jumboscan", - "url": "https://jumboscan.jumbochain.org", - "standard": "EIP3091" - } + 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 EVM Explorer (Blockscout)", + url: "https://evm.rebuschain.com", + icon: "rebus", + standard: "none", }, { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://cosmos.rebuschain.com", - "icon": "rebus", - "standard": "none" - } + name: "Rebus Cosmos Explorer (ping.pub)", + url: "https://cosmos.rebuschain.com", + icon: "rebus", + standard: "none", + }, ], "1028": [ { - "name": "testbttcscan", - "url": "https://testscan.bittorrentchain.io", - "standard": "none" - } + name: "testbttcscan", + url: "https://testscan.bittorrentchain.io", + standard: "none", + }, ], "1030": [ { - "name": "Conflux Scan", - "url": "https://evm.confluxscan.net", - "standard": "none" - } + name: "Conflux Scan", + url: "https://evm.confluxscan.net", + standard: "none", + }, ], "1031": [ { - "name": "proxy network testnet", - "url": "http://testnet-explorer.theproxy.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Bronos Explorer", + url: "https://broscan.bronos.org", + standard: "none", + icon: "bronos", + }, ], "1073": [ { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.evm.testnet.shimmer.network", + standard: "EIP3091", + }, ], "1075": [ { - "name": "explorer", - "url": "https://explorer.evm.testnet.iotaledger.net", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.evm.testnet.iotaledger.net", + standard: "EIP3091", + }, ], "1079": [ { - "name": "explorer", - "url": "https://subnets-test.avax.network/mintara", - "standard": "EIP3091" - } + name: "explorer", + url: "https://subnets-test.avax.network/mintara", + standard: "EIP3091", + }, ], "1080": [ { - "name": "explorer", - "url": "https://subnets.avax.network/mintara", - "standard": "EIP3091" - } + name: "explorer", + url: "https://subnets.avax.network/mintara", + standard: "EIP3091", + }, ], "1088": [ { - "name": "blockscout", - "url": "https://andromeda-explorer.metis.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://andromeda-explorer.metis.io", + standard: "EIP3091", + }, ], "1089": [ { - "name": "explorer.guru", - "url": "https://humans.explorers.guru", - "icon": "humans", - "standard": "none" - } + name: "explorer.guru", + url: "https://humans.explorers.guru", + icon: "humans", + standard: "none", + }, ], "1099": [ { - "name": "moac explorer", - "url": "https://explorer.moac.io", - "standard": "none" - } + name: "moac explorer", + url: "https://explorer.moac.io", + standard: "none", + }, ], "1100": [ { - "name": "dym.fyi", - "url": "https://dym.fyi", - "standard": "EIP3091" - } + name: "dym.fyi", + url: "https://dym.fyi", + standard: "EIP3091", + }, ], "1101": [ { - "name": "blockscout", - "url": "https://zkevm.polygonscan.com", - "icon": "zkevm", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://zkevm.polygonscan.com", + icon: "zkevm", + standard: "EIP3091", + }, ], "1107": [ { - "name": "BLXq Explorer", - "url": "https://explorer.blx.org", - "icon": "blxq", - "standard": "none" - } + 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" - } + name: "BLXq Explorer", + url: "https://explorer.blxq.org", + icon: "blxq", + standard: "EIP3091", + }, ], "1111": [ { - "name": "WEMIX Block Explorer", - "url": "https://explorer.wemix.com", - "standard": "EIP3091" - } + name: "WEMIX Block Explorer", + url: "https://explorer.wemix.com", + standard: "EIP3091", + }, ], "1112": [ { - "name": "WEMIX Testnet Microscope", - "url": "https://microscope.test.wemix.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Core Scan", + url: "https://scan.coredao.org", + icon: "core", + standard: "EIP3091", + }, ], "1117": [ { - "name": "Dogcoin", - "url": "https://explorer.dogcoin.network", - "standard": "EIP3091" - } + name: "Dogcoin", + url: "https://explorer.dogcoin.network", + standard: "EIP3091", + }, ], "1123": [ { - "name": "blockscout", - "url": "https://testnet-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet-explorer.bsquared.network", + icon: "bsquare", + standard: "EIP3091", + }, ], "1133": [ { - "name": "MetaScan", - "url": "https://meta.defiscan.live", - "standard": "EIP3091" - } + name: "MetaScan", + url: "https://meta.defiscan.live", + standard: "EIP3091", + }, ], "1135": [ { - "name": "blockscout", - "url": "https://blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.lisk.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "1138": [ { - "name": "amstarscan-testnet", - "url": "https://testnet.amstarscan.com", - "standard": "EIP3091" - } + name: "amstarscan-testnet", + url: "https://testnet.amstarscan.com", + standard: "EIP3091", + }, ], "1147": [ { - "name": "Flag Testnet Explorer", - "url": "https://testnet-explorer.flagscan.xyz", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "mosscan", + url: "https://www.mosscan.com", + icon: "clubmos", + standard: "none", + }, ], "1197": [ { - "name": "ioraexplorer", - "url": "https://explorer.iorachain.com", - "standard": "EIP3091" - } + name: "ioraexplorer", + url: "https://explorer.iorachain.com", + standard: "EIP3091", + }, ], "1200": [ { - "name": "Cuckoo Chain Explorer", - "url": "https://mainnet-scan.cuckoo.network", - "standard": "EIP3091" - } + name: "Cuckoo Chain Explorer", + url: "https://mainnet-scan.cuckoo.network", + standard: "EIP3091", + }, ], "1202": [ { - "name": "WTTScout", - "url": "https://explorer.cadaut.com", - "standard": "EIP3091" - } + name: "WTTScout", + url: "https://explorer.cadaut.com", + standard: "EIP3091", + }, ], "1209": [ { - "name": "Saitascan explorer", - "url": "https://saitascan.io", - "standard": "none", - "icon": "SaitaBlockChain(SBC)" - } + 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" - } + name: "Cuckoo Sepolia Explorer", + url: "https://testnet-scan.cuckoo.network", + standard: "EIP3091", + }, ], "1213": [ { - "name": "popcateum explorer", - "url": "https://explorer.popcateum.org", - "standard": "none" - } + name: "popcateum explorer", + url: "https://explorer.popcateum.org", + standard: "none", + }, ], "1214": [ { - "name": "Enter Explorer - Expenter", - "url": "https://explorer.entercoin.net", - "icon": "enter", - "standard": "EIP3091" - } + name: "Enter Explorer - Expenter", + url: "https://explorer.entercoin.net", + icon: "enter", + standard: "EIP3091", + }, ], "1225": [ { - "name": "Hybrid Testnet", - "url": "https://explorer.buildonhybrid.com", - "standard": "EIP3091" - } + name: "Hybrid Testnet", + url: "https://explorer.buildonhybrid.com", + standard: "EIP3091", + }, ], "1229": [ { - "name": "blockscout", - "url": "https://exzoscan.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://exzoscan.io", + standard: "EIP3091", + }, ], "1230": [ { - "name": "Ultron Testnet Explorer", - "url": "https://explorer.ultron-dev.io", - "icon": "ultron", - "standard": "none" - } + 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" - } + name: "Ultron Explorer", + url: "https://ulxscan.com", + icon: "ultron", + standard: "none", + }, ], "1234": [ { - "name": "StepScan", - "url": "https://stepscan.io", - "icon": "step", - "standard": "EIP3091" - } + name: "StepScan", + url: "https://stepscan.io", + icon: "step", + standard: "EIP3091", + }, ], "1235": [ { - "name": "ITX Mainnet Explorer (Blockscout)", - "url": "https://explorer.itxchain.com", - "standard": "EIP3091" - } + name: "ITX Mainnet Explorer (Blockscout)", + url: "https://explorer.itxchain.com", + standard: "EIP3091", + }, ], "1243": [ { - "name": "archiescan", - "url": "https://app.archiescan.io", - "standard": "none" - } + name: "archiescan", + url: "https://app.archiescan.io", + standard: "none", + }, ], "1244": [ { - "name": "archiescan", - "url": "https://testnet.archiescan.io", - "standard": "none" - } + name: "archiescan", + url: "https://testnet.archiescan.io", + standard: "none", + }, ], "1246": [ { - "name": "OMSCAN - Expenter", - "url": "https://omscan.omplatform.com", - "standard": "none" - } + name: "OMSCAN - Expenter", + url: "https://omscan.omplatform.com", + standard: "none", + }, ], "1248": [ { - "name": "DogetherExplorer", - "url": "https://explorer.dogether.dog", - "standard": "EIP3091" - } + name: "DogetherExplorer", + url: "https://explorer.dogether.dog", + standard: "EIP3091", + }, ], "1252": [ { - "name": "CICscan", - "url": "https://testnet.cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } + name: "CICscan", + url: "https://testnet.cicscan.com", + icon: "cicchain", + standard: "EIP3091", + }, ], "1280": [ { - "name": "HALOexplorer", - "url": "https://browser.halo.land", - "standard": "none" - } + name: "HALOexplorer", + url: "https://browser.halo.land", + standard: "none", + }, ], "1284": [ { - "name": "moonscan", - "url": "https://moonbeam.moonscan.io", - "standard": "none" - } + name: "moonscan", + url: "https://moonbeam.moonscan.io", + standard: "none", + }, ], "1285": [ { - "name": "moonscan", - "url": "https://moonriver.moonscan.io", - "standard": "none" - } + name: "moonscan", + url: "https://moonriver.moonscan.io", + standard: "none", + }, ], "1287": [ { - "name": "moonscan", - "url": "https://moonbase.moonscan.io", - "standard": "none" - } + name: "moonscan", + url: "https://moonbase.moonscan.io", + standard: "none", + }, ], "1291": [ { - "name": "Swisstronik Scout", - "url": "https://explorer-evm.testnet.swisstronik.com", - "standard": "none" - } + name: "Swisstronik Scout", + url: "https://explorer-evm.testnet.swisstronik.com", + standard: "none", + }, ], "1311": [ { - "name": "dos-testnet", - "url": "https://test.doscan.io", - "standard": "EIP3091" - } + name: "dos-testnet", + url: "https://test.doscan.io", + standard: "EIP3091", + }, ], "1314": [ { - "name": "alyxscan", - "url": "https://www.alyxscan.com", - "standard": "EIP3091" - } + name: "alyxscan", + url: "https://www.alyxscan.com", + standard: "EIP3091", + }, ], "1319": [ { - "name": "AIA Chain Explorer Mainnet", - "url": "https://aiascan.com", - "standard": "EIP3091" - } + name: "AIA Chain Explorer Mainnet", + url: "https://aiascan.com", + standard: "EIP3091", + }, ], "1320": [ { - "name": "AIA Chain Explorer Testnet", - "url": "https://testnet.aiascan.com", - "standard": "EIP3091" - } + name: "AIA Chain Explorer Testnet", + url: "https://testnet.aiascan.com", + standard: "EIP3091", + }, ], "1328": [ { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } + name: "Seitrace", + url: "https://seitrace.com", + standard: "EIP3091", + }, ], "1329": [ { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } + name: "Seitrace", + url: "https://seitrace.com", + standard: "EIP3091", + }, ], "1338": [ { - "name": "Elysium testnet explorer", - "url": "https://elysium-explorer.vulcanforged.com", - "standard": "none" - } + name: "Elysium testnet explorer", + url: "https://elysium-explorer.vulcanforged.com", + standard: "none", + }, ], "1339": [ { - "name": "Elysium mainnet explorer", - "url": "https://explorer.elysiumchain.tech", - "standard": "none" - } + name: "Elysium mainnet explorer", + url: "https://explorer.elysiumchain.tech", + standard: "none", + }, ], "1343": [ { - "name": "BLITZ Explorer", - "url": "https://subnets-test.avax.network/blitz", - "standard": "EIP3091" - } + name: "BLITZ Explorer", + url: "https://subnets-test.avax.network/blitz", + standard: "EIP3091", + }, ], "1353": [ { - "name": "CICscan", - "url": "https://cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } + name: "CICscan", + url: "https://cicscan.com", + icon: "cicchain", + standard: "EIP3091", + }, ], "1369": [ { - "name": "zafirium-explorer", - "url": "https://explorer.zakumi.io", - "standard": "none" - } + name: "zafirium-explorer", + url: "https://explorer.zakumi.io", + standard: "none", + }, ], "1370": [ { - "name": "ramascan", - "url": "https://ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } + name: "ramascan", + url: "https://ramascan.com", + icon: "ramestta", + standard: "EIP3091", + }, ], "1377": [ { - "name": "Pingaksha", - "url": "https://pingaksha.ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } + name: "Pingaksha", + url: "https://pingaksha.ramascan.com", + icon: "ramestta", + standard: "EIP3091", + }, ], "1379": [ { - "name": "kalarscan", - "url": "https://explorer.kalarchain.tech", - "icon": "kalarscan", - "standard": "EIP3091" - } + name: "kalarscan", + url: "https://explorer.kalarchain.tech", + icon: "kalarscan", + standard: "EIP3091", + }, ], "1388": [ { - "name": "amstarscan", - "url": "https://mainnet.amstarscan.com", - "standard": "EIP3091" - } + name: "amstarscan", + url: "https://mainnet.amstarscan.com", + standard: "EIP3091", + }, ], "1392": [ { - "name": "BlockExplorer", - "url": "https://www.blockexplorer.com", - "standard": "EIP3091" - } + name: "BlockExplorer", + url: "https://www.blockexplorer.com", + standard: "EIP3091", + }, ], "1433": [ { - "name": "Rikeza Blockchain explorer", - "url": "https://rikscan.com", - "standard": "EIP3091" - } + name: "Rikeza Blockchain explorer", + url: "https://rikscan.com", + standard: "EIP3091", + }, ], "1442": [ { - "name": "Polygon zkEVM explorer", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } + name: "Polygon zkEVM explorer", + url: "https://explorer.public.zkevm-test.net", + standard: "EIP3091", + }, ], "1452": [ { - "name": "GIL Explorer", - "url": "https://explorer.giltestnet.com", - "standard": "EIP3091" - } + name: "GIL Explorer", + url: "https://explorer.giltestnet.com", + standard: "EIP3091", + }, ], "1453": [ { - "name": "MetaExplorer", - "url": "https://istanbul-explorer.metachain.dev", - "standard": "EIP3091" - } + name: "MetaExplorer", + url: "https://istanbul-explorer.metachain.dev", + standard: "EIP3091", + }, ], "1455": [ { - "name": "Ctex Scan Explorer", - "url": "https://ctexscan.com", - "standard": "none" - } + name: "Ctex Scan Explorer", + url: "https://ctexscan.com", + standard: "none", + }, ], "1490": [ { - "name": "Vitruveo Explorer", - "url": "https://explorer.vitruveo.xyz", - "icon": "vitruveo", - "standard": "EIP3091" - } + name: "Vitruveo Explorer", + url: "https://explorer.vitruveo.xyz", + icon: "vitruveo", + standard: "EIP3091", + }, ], "1499": [ { - "name": "IGC-Scan", - "url": "https://igcscan.com", - "standard": "EIP3091" - } + name: "IGC-Scan", + url: "https://igcscan.com", + standard: "EIP3091", + }, ], "1501": [ { - "name": "bevm canary scan", - "url": "https://scan-canary.bevm.io", - "standard": "none" - } + name: "bevm canary scan", + url: "https://scan-canary.bevm.io", + standard: "none", + }, ], "1506": [ { - "name": "Sherpax Mainnet Explorer", - "url": "https://evm.sherpax.io", - "standard": "none" - } + name: "Sherpax Mainnet Explorer", + url: "https://evm.sherpax.io", + standard: "none", + }, ], "1507": [ { - "name": "Sherpax Testnet Explorer", - "url": "https://evm-pre.sherpax.io", - "standard": "none" - } + 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" - } + name: "Beagle Messaging Chain Explorer", + url: "https://eth.beagle.chat", + standard: "EIP3091", + }, ], "1559": [ { - "name": "TenetScan Mainnet", - "url": "https://tenetscan.io", - "icon": "tenet", - "standard": "EIP3091" - } + name: "TenetScan Mainnet", + url: "https://tenetscan.io", + icon: "tenet", + standard: "EIP3091", + }, ], "1617": [ { - "name": "Ethereum Inscription Explorer", - "url": "https://explorer.etins.org", - "standard": "none" - } + name: "Ethereum Inscription Explorer", + url: "https://explorer.etins.org", + standard: "none", + }, ], "1625": [ { - "name": "Gravity Alpha Mainnet Explorer", - "url": "https://explorer.gravity.xyz", - "standard": "EIP3091" - } + name: "Gravity Alpha Mainnet Explorer", + url: "https://explorer.gravity.xyz", + standard: "EIP3091", + }, ], "1662": [ { - "name": "Liquichain Mainnet", - "url": "https://mainnet.liquichain.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Anytype Explorer", + url: "https://explorer.anytype.io", + icon: "any", + standard: "EIP3091", + }, ], "1707": [ { - "name": "blockscout", - "url": "https://exp.blockchain.or.th", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://exp.blockchain.or.th", + standard: "EIP3091", + }, ], "1708": [ { - "name": "blockscout", - "url": "https://exp.testnet.blockchain.or.th", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://exp.testnet.blockchain.or.th", + standard: "EIP3091", + }, ], "1717": [ { - "name": "Doric Explorer", - "url": "https://explorer.doric.network", - "standard": "EIP3091" - } + name: "Doric Explorer", + url: "https://explorer.doric.network", + standard: "EIP3091", + }, ], "1718": [ { - "name": "Palettescan", - "url": "https://palettescan.com", - "icon": "PLT", - "standard": "none" - } + name: "Palettescan", + url: "https://palettescan.com", + icon: "PLT", + standard: "none", + }, ], "1729": [ { - "name": "Reya Network Explorer", - "url": "https://explorer.reya.network", - "standard": "EIP3091" - } + name: "Reya Network Explorer", + url: "https://explorer.reya.network", + standard: "EIP3091", + }, ], "1740": [ { - "name": "blockscout", - "url": "https://testnet.explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.explorer.metall2.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "1750": [ { - "name": "blockscout", - "url": "https://explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.metall2.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "1773": [ { - "name": "PartyExplorer", - "url": "https://partyexplorer.co", - "icon": "grams", - "standard": "EIP3091" - } + name: "PartyExplorer", + url: "https://partyexplorer.co", + icon: "grams", + standard: "EIP3091", + }, ], "1777": [ { - "name": "Gauss Explorer", - "url": "https://explorer.gaussgang.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://rabbit.analogscan.com", + standard: "none", + }, ], "1818": [ { - "name": "cube-scan", - "url": "https://cubescan.network", - "standard": "EIP3091" - } + name: "cube-scan", + url: "https://cubescan.network", + standard: "EIP3091", + }, ], "1819": [ { - "name": "cubetest-scan", - "url": "https://testnet.cubescan.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "whitechain-explorer", + url: "https://explorer.whitechain.io", + standard: "EIP3091", + }, ], "1881": [ { - "name": "blockscout", - "url": "https://scan.cartenz.works", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.cartenz.works", + standard: "EIP3091", + }, ], "1890": [ { - "name": "phoenix", - "url": "https://phoenix.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } + name: "phoenix", + url: "https://phoenix.lightlink.io", + icon: "lightlink", + standard: "EIP3091", + }, ], "1891": [ { - "name": "pegasus", - "url": "https://pegasus.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } + name: "pegasus", + url: "https://pegasus.lightlink.io", + icon: "lightlink", + standard: "EIP3091", + }, ], "1898": [ { - "name": "explorer", - "url": "https://explorer.boyanet.org:4001", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.boyanet.org:4001", + standard: "EIP3091", + }, ], "1904": [ { - "name": "blockscout", - "url": "https://explorer.sportschainnetwork.xyz", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.sportschainnetwork.xyz", + standard: "EIP3091", + }, ], "1907": [ { - "name": "Bitci Explorer", - "url": "https://bitciexplorer.com", - "standard": "EIP3091" - } + name: "Bitci Explorer", + url: "https://bitciexplorer.com", + standard: "EIP3091", + }, ], "1908": [ { - "name": "Bitci Explorer Testnet", - "url": "https://testnet.bitciexplorer.com", - "standard": "EIP3091" - } + name: "Bitci Explorer Testnet", + url: "https://testnet.bitciexplorer.com", + standard: "EIP3091", + }, ], "1909": [ { - "name": "blockscout", - "url": "https://merklescan.com", - "standard": "none" - } + name: "blockscout", + url: "https://merklescan.com", + standard: "none", + }, ], "1911": [ { - "name": "scalind", - "url": "https://explorer.scalind.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "dos-mainnet", + url: "https://exp.dexilla.com", + standard: "EIP3091", + }, ], "1956": [ { - "name": "aiw3 testnet scan", - "url": "https://scan-testnet.aiw3.io", - "standard": "none" - } + name: "aiw3 testnet scan", + url: "https://scan-testnet.aiw3.io", + standard: "none", + }, ], "1961": [ { - "name": "Selendra Scan", - "url": "https://scan.selendra.org", - "standard": "none" - } + name: "Selendra Scan", + url: "https://scan.selendra.org", + standard: "none", + }, ], "1967": [ { - "name": "metaexplorer-eleanor", - "url": "https://explorer.metatime.com/eleanor", - "standard": "EIP3091" - } + name: "metaexplorer-eleanor", + url: "https://explorer.metatime.com/eleanor", + standard: "EIP3091", + }, ], "1969": [ { - "name": "blockscout", - "url": "https://testnetscan.scschain.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnetscan.scschain.com", + standard: "EIP3091", + }, ], "1970": [ { - "name": "blockscout", - "url": "https://scan.scschain.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.scschain.com", + standard: "EIP3091", + }, ], "1972": [ { - "name": "RedeCoin Explorer", - "url": "https://explorer3.redecoin.eu", - "standard": "none" - } + name: "RedeCoin Explorer", + url: "https://explorer3.redecoin.eu", + standard: "none", + }, ], "1975": [ { - "name": "Onus explorer mainnet", - "url": "https://explorer.onuschain.io", - "icon": "onus", - "standard": "EIP3091" - } + 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" - } + name: "testnetexplorer", + url: "https://testnetexplorer.eurus.network", + icon: "eurus", + standard: "none", + }, ], "1985": [ { - "name": "mainnetexplorer", - "url": "http://explore.satosh.ie", - "icon": "satoshie", - "standard": "none" - } + name: "mainnetexplorer", + url: "http://explore.satosh.ie", + icon: "satoshie", + standard: "none", + }, ], "1986": [ { - "name": "testnetexplorer", - "url": "http://explore-testnet.satosh.ie", - "icon": "satoshie", - "standard": "none" - } + name: "testnetexplorer", + url: "http://explore-testnet.satosh.ie", + icon: "satoshie", + standard: "none", + }, ], "1992": [ { - "name": "routescan", - "url": "https://explorer.hubble.exchange", - "standard": "EIP3091" - } + name: "routescan", + url: "https://explorer.hubble.exchange", + standard: "EIP3091", + }, ], "1994": [ { - "name": "ektascan", - "url": "https://ektascan.io", - "icon": "ekta", - "standard": "EIP3091" - } + name: "ektascan", + url: "https://ektascan.io", + icon: "ekta", + standard: "EIP3091", + }, ], "1995": [ { - "name": "edexa-testnet", - "url": "https://explorer.testnet.edexa.network", - "standard": "EIP3091" - } + name: "edexa-testnet", + url: "https://explorer.testnet.edexa.network", + standard: "EIP3091", + }, ], "1996": [ { - "name": "Sanko Explorer", - "url": "https://explorer.sanko.xyz", - "standard": "EIP3091" - } + name: "Sanko Explorer", + url: "https://explorer.sanko.xyz", + standard: "EIP3091", + }, ], "1997": [ { - "name": "Kyotoscan", - "url": "https://kyotoscan.io", - "standard": "EIP3091" - } + name: "Kyotoscan", + url: "https://kyotoscan.io", + standard: "EIP3091", + }, ], "1998": [ { - "name": "Kyotoscan", - "url": "https://testnet.kyotoscan.io", - "standard": "EIP3091" - } + name: "Kyotoscan", + url: "https://testnet.kyotoscan.io", + standard: "EIP3091", + }, ], "2000": [ { - "name": "dogechain explorer", - "url": "https://explorer.dogechain.dog", - "standard": "EIP3091" - } + name: "dogechain explorer", + url: "https://explorer.dogechain.dog", + standard: "EIP3091", + }, ], "2001": [ { - "name": "Blockscout", - "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } + 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" - } + name: "Blockscout", + url: "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + standard: "none", + }, ], "2004": [ { - "name": "MetaScan", - "url": "http://twoto3.com:3000", - "standard": "none" - } + name: "MetaScan", + url: "http://twoto3.com:3000", + standard: "none", + }, ], "2008": [ { - "name": "CloudWalk Testnet Explorer", - "url": "https://explorer.testnet.cloudwalk.io", - "standard": "none" - } + 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" - } + name: "CloudWalk Mainnet Explorer", + url: "https://explorer.mainnet.cloudwalk.io", + standard: "none", + }, ], "2014": [ { - "name": "nowscan", - "url": "https://nowscan.io", - "standard": "EIP3091" - } + name: "nowscan", + url: "https://nowscan.io", + standard: "EIP3091", + }, ], "2016": [ { - "name": "MainnetZ", - "url": "https://explorer.mainnetz.io", - "standard": "EIP3091" - } + name: "MainnetZ", + url: "https://explorer.mainnetz.io", + standard: "EIP3091", + }, ], "2017": [ { - "name": "telscan", - "url": "https://telscan.io", - "icon": "telcoin", - "standard": "EIP3091" - } + name: "telscan", + url: "https://telscan.io", + icon: "telcoin", + standard: "EIP3091", + }, ], "2018": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.dev.publicmint.io", - "standard": "EIP3091" - } + name: "PublicMint Explorer", + url: "https://explorer.dev.publicmint.io", + standard: "EIP3091", + }, ], "2019": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.tst.publicmint.io", - "standard": "EIP3091" - } + name: "PublicMint Explorer", + url: "https://explorer.tst.publicmint.io", + standard: "EIP3091", + }, ], "2020": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.publicmint.io", - "standard": "EIP3091" - } + 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 EdgeEVM explorer by Bharathcoorg", + url: "https://edgscan.live", + standard: "EIP3091", }, { - "name": "Edgscan EdgeWASM explorer by Bharathcoorg", - "url": "https://edgscan.ink", - "standard": "none", - "icon": "edgscan" - } + 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" - } + 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 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" - } + name: "Taycan Cosmos Explorer", + url: "https://cosmoscan-test.hupayx.io", + standard: "none", + icon: "shuffle", + }, ], "2025": [ { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } + name: "rangersscan", + url: "https://scan.rangersprotocol.com", + standard: "none", + }, ], "2026": [ { - "name": "Edgeless Explorer", - "url": "https://explorer.edgeless.network", - "standard": "EIP3091" - } + name: "Edgeless Explorer", + url: "https://explorer.edgeless.network", + standard: "EIP3091", + }, ], "2031": [ { - "name": "subscan", - "url": "https://centrifuge.subscan.io", - "standard": "EIP3091", - "icon": "subscan" - } + name: "subscan", + url: "https://centrifuge.subscan.io", + standard: "EIP3091", + icon: "subscan", + }, ], "2037": [ { - "name": "KIWI Explorer", - "url": "https://subnets-test.avax.network/kiwi", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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 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" - } + 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 EVM Explorer (Blockscout)", + url: "https://web3-explorer.thestratos.org", + standard: "none", }, { - "name": "Stratos Cosmos Explorer (BigDipper)", - "url": "https://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" - } + name: "movoscan", + url: "https://movoscan.com", + icon: "movoscan", + standard: "none", + }, ], "2077": [ { - "name": "blockscout", - "url": "https://explorer.qkacoin.org", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.qkacoin.org", + standard: "EIP3091", + }, ], "2100": [ { - "name": "Ecoball Explorer", - "url": "https://scan.ecoball.org", - "standard": "EIP3091" - } + name: "Ecoball Explorer", + url: "https://scan.ecoball.org", + standard: "EIP3091", + }, ], "2101": [ { - "name": "Ecoball Testnet Explorer", - "url": "https://espuma-scan.ecoball.org", - "standard": "EIP3091" - } + name: "Ecoball Testnet Explorer", + url: "https://espuma-scan.ecoball.org", + standard: "EIP3091", + }, ], "2109": [ { - "name": "blockscout", - "url": "https://explorer.exosama.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.exosama.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "2112": [ { - "name": "uchain.info", - "url": "https://uchain.info", - "standard": "EIP3091" - } + name: "uchain.info", + url: "https://uchain.info", + standard: "EIP3091", + }, ], "2121": [ { - "name": "catenascan", - "url": "https://catenascan.com", - "standard": "EIP3091" - } + name: "catenascan", + url: "https://catenascan.com", + standard: "EIP3091", + }, ], "2122": [ { - "name": "Metad Scan", - "url": "https://scan.metaplayer.one", - "icon": "metad", - "standard": "EIP3091" - } + name: "Metad Scan", + url: "https://scan.metaplayer.one", + icon: "metad", + standard: "EIP3091", + }, ], "2124": [ { - "name": "MP1Scan", - "url": "https://dubai.mp1scan.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Quorum Explorer", + url: "https://public-2138.defi-oracle.io", + standard: "none", + }, ], "2140": [ { - "name": "oneness-mainnet", - "url": "https://scan.onenesslabs.io", - "standard": "EIP3091" - } + name: "oneness-mainnet", + url: "https://scan.onenesslabs.io", + standard: "EIP3091", + }, ], "2141": [ { - "name": "oneness-testnet", - "url": "https://scan.testnet.onenesslabs.io", - "standard": "EIP3091" - } + name: "oneness-testnet", + url: "https://scan.testnet.onenesslabs.io", + standard: "EIP3091", + }, ], "2151": [ { - "name": "BOASCAN", - "url": "https://boascan.io", - "icon": "agora", - "standard": "EIP3091" - } + name: "BOASCAN", + url: "https://boascan.io", + icon: "agora", + standard: "EIP3091", + }, ], "2152": [ { - "name": "findorascan", - "url": "https://evm.findorascan.io", - "standard": "EIP3091" - } + name: "findorascan", + url: "https://evm.findorascan.io", + standard: "EIP3091", + }, ], "2153": [ { - "name": "findorascan", - "url": "https://testnet-anvil.evm.findorascan.io", - "standard": "EIP3091" - } + name: "findorascan", + url: "https://testnet-anvil.evm.findorascan.io", + standard: "EIP3091", + }, ], "2154": [ { - "name": "findorascan", - "url": "https://testnet-forge.evm.findorascan.io", - "standard": "EIP3091" - } + name: "findorascan", + url: "https://testnet-forge.evm.findorascan.io", + standard: "EIP3091", + }, ], "2199": [ { - "name": "blockscout", - "url": "https://explorer.moonsama.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.moonsama.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "2202": [ { - "name": "Antofy Mainnet", - "url": "https://antofyscan.com", - "standard": "EIP3091" - } + name: "Antofy Mainnet", + url: "https://antofyscan.com", + standard: "EIP3091", + }, ], "2203": [ { - "name": "Explorer", - "url": "https://explorer.bitcoinevm.com", - "icon": "ebtc", - "standard": "none" - } + name: "Explorer", + url: "https://explorer.bitcoinevm.com", + icon: "ebtc", + standard: "none", + }, ], "2213": [ { - "name": "Evanesco Explorer", - "url": "https://explorer.evanesco.org", - "standard": "none" - } + name: "Evanesco Explorer", + url: "https://explorer.evanesco.org", + standard: "none", + }, ], "2221": [ { - "name": "Kava Testnet Explorer", - "url": "http://testnet.kavascan.com", - "standard": "EIP3091", - "icon": "kava" - } + 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" - } + name: "Kava EVM Explorer", + url: "https://kavascan.com", + standard: "EIP3091", + icon: "kava", + }, ], "2223": [ { - "name": "VChain Scan", - "url": "https://scan.vcex.xyz", - "standard": "EIP3091" - } + 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: "Polkadot.js", + url: "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", + standard: "none", }, { - "name": "Subscan", - "url": "https://krest.subscan.io", - "standard": "none" - } + name: "Subscan", + url: "https://krest.subscan.io", + standard: "none", + }, ], "2300": [ { - "name": "bombscan", - "icon": "bomb", - "url": "https://bombscan.com", - "standard": "EIP3091" - } + name: "bombscan", + icon: "bomb", + url: "https://bombscan.com", + standard: "EIP3091", + }, ], "2323": [ { - "name": "SOMA Testnet Explorer", - "icon": "soma", - "url": "https://testnet.somascan.io", - "standard": "none" - } + 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" - } + 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" - } + 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" - } + 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 Explorer", + icon: "atleta", + url: "https://blockscout.atleta.network", + standard: "none", }, { - "name": "Atleta Olympia Polka Explorer", - "icon": "atleta", - "url": "https://polkadot-explorer.atleta.network/#/explorer", - "standard": "none" - } + name: "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" - } + name: "OmniaVerse Explorer", + url: "https://scan.omniaverse.io", + standard: "EIP3091", + }, ], "2358": [ { - "name": "blockscout", - "url": "https://blockscout.sepolia.kroma.network", - "icon": "kroma", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "TCG Verse Explorer", + url: "https://explorer.tcgverse.xyz", + standard: "EIP3091", + }, ], "2410": [ { - "name": "Karak Mainnet Explorer", - "url": "https://explorer.karak.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + icon: "u2u_nebulas", + name: "U2U Explorer", + url: "https://testnet.u2uscan.xyz", + standard: "EIP3091", + }, ], "2522": [ { - "name": "fraxscan", - "url": "https://holesky.fraxscan.com", - "standard": "EIP3091" - } + name: "fraxscan", + url: "https://holesky.fraxscan.com", + standard: "EIP3091", + }, ], "2569": [ { - "name": "tpcscan", - "url": "https://tpcscan.com", - "icon": "techpay", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "REDLC Explorer", + url: "https://redlightscan.finance", + standard: "EIP3091", + }, ], "2612": [ { - "name": "ezchain", - "url": "https://cchain-explorer.ezchain.com", - "standard": "EIP3091" - } + name: "ezchain", + url: "https://cchain-explorer.ezchain.com", + standard: "EIP3091", + }, ], "2613": [ { - "name": "ezchain", - "url": "https://testnet-cchain-explorer.ezchain.com", - "standard": "EIP3091" - } + name: "ezchain", + url: "https://testnet-cchain-explorer.ezchain.com", + standard: "EIP3091", + }, ], "2625": [ { - "name": "whitechain-testnet-explorer", - "url": "https://testnet.whitechain.io", - "standard": "EIP3091" - } + name: "whitechain-testnet-explorer", + url: "https://testnet.whitechain.io", + standard: "EIP3091", + }, ], "2648": [ { - "name": "blockscout", - "url": "https://testnet-explorer.ailayer.xyz", - "icon": "ailayer", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Nanon Rollup Explorer", + url: "https://explorer.nanon.network", + standard: "EIP3091", + }, ], "2777": [ { - "name": "GM Network Mainnet Explorer", - "url": "https://scan.gmnetwork.ai", - "standard": "EIP3091" - } + 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" - } + name: "Morph Holesky Testnet Explorer", + url: "https://explorer-holesky.morphl2.io", + standard: "EIP3091", + }, ], "2907": [ { - "name": "blockscout", - "url": "https://eluxscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://eluxscan.com", + standard: "none", + }, ], "2911": [ { - "name": "blockscout", - "url": "https://explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.hychain.com", + icon: "hychain", + standard: "EIP3091", + }, ], "2941": [ { - "name": "Xenon testnet Explorer", - "url": "https://testnet.xenonchain.com", - "standard": "none" - } + name: "Xenon testnet Explorer", + url: "https://testnet.xenonchain.com", + standard: "none", + }, ], "2999": [ { - "name": "BitYuan Block Chain Explorer", - "url": "https://mainnet.bityuan.com", - "standard": "none" - } + name: "BitYuan Block Chain Explorer", + url: "https://mainnet.bityuan.com", + standard: "none", + }, ], "3001": [ { - "name": "UNcover", - "url": "https://www.uncoverexplorer.com/?network=Nikau", - "standard": "none" - } + name: "UNcover", + url: "https://www.uncoverexplorer.com/?network=Nikau", + standard: "none", + }, ], "3003": [ { - "name": "canxium explorer", - "url": "https://explorer.canxium.org", - "standard": "none" - } + name: "canxium explorer", + url: "https://explorer.canxium.org", + standard: "none", + }, ], "3011": [ { - "name": "PLAYA3ULL GAMES Explorer", - "url": "https://3011.routescan.io", - "icon": "playa3ull", - "standard": "EIP3091" - } + 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" - } + 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 EVM Explorer (Blockscout)", + url: "https://evm.testnet.rebus.money", + icon: "rebus", + standard: "none", }, { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://testnet.rebus.money/rebustestnet", - "icon": "rebus", - "standard": "none" - } + name: "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" - } + name: "explorer-thebifrost", + url: "https://explorer.mainnet.bifrostnetwork.com", + standard: "EIP3091", + }, ], "3073": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } + name: "mevm explorer", + url: "https://explorer.movementlabs.xyz", + standard: "none", + }, ], "3306": [ { - "name": "Debounce Devnet Explorer", - "url": "https://explorer.debounce.network", - "standard": "EIP3091" - } + name: "Debounce Devnet Explorer", + url: "https://explorer.debounce.network", + standard: "EIP3091", + }, ], "3334": [ { - "name": "w3q-galileo", - "url": "https://explorer.galileo.web3q.io", - "standard": "EIP3091" - } + name: "w3q-galileo", + url: "https://explorer.galileo.web3q.io", + standard: "EIP3091", + }, ], "3400": [ { - "name": "Paribu Net Explorer", - "url": "https://explorer.paribu.network", - "standard": "EIP3091" - } + name: "Paribu Net Explorer", + url: "https://explorer.paribu.network", + standard: "EIP3091", + }, ], "3424": [ { - "name": "Evolve Mainnet Explorer", - "url": "https://evoexplorer.com", - "standard": "EIP3091" - } + name: "Evolve Mainnet Explorer", + url: "https://evoexplorer.com", + standard: "EIP3091", + }, ], "3434": [ { - "name": "SecureChain", - "url": "https://testnet.securechain.ai", - "standard": "EIP3091" - } + name: "SecureChain", + url: "https://testnet.securechain.ai", + standard: "EIP3091", + }, ], "3456": [ { - "name": "LayerEdge Testnet Explorer", - "url": "https://testnet-explorer.layeredge.io", - "icon": "layerEdge", - "standard": "EIP3091" - } + 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" - } + name: "GTCScan Explorer", + url: "https://gtcscan.io", + standard: "none", + icon: "gtc", + }, ], "3500": [ { - "name": "Paribu Net Testnet Explorer", - "url": "https://testnet.paribuscan.com", - "standard": "EIP3091" - } + name: "Paribu Net Testnet Explorer", + url: "https://testnet.paribuscan.com", + standard: "EIP3091", + }, ], "3501": [ { - "name": "JFIN Chain Explorer", - "url": "https://exp.jfinchain.com", - "standard": "EIP3091" - } + name: "JFIN Chain Explorer", + url: "https://exp.jfinchain.com", + standard: "EIP3091", + }, ], "3601": [ { - "name": "Pando Mainnet Explorer", - "url": "https://explorer.pandoproject.org", - "standard": "none" - } + name: "Pando Mainnet Explorer", + url: "https://explorer.pandoproject.org", + standard: "none", + }, ], "3602": [ { - "name": "Pando Testnet Explorer", - "url": "https://testnet.explorer.pandoproject.org", - "standard": "none" - } + name: "Pando Testnet Explorer", + url: "https://testnet.explorer.pandoproject.org", + standard: "none", + }, ], "3636": [ { - "name": "3xpl", - "url": "https://3xpl.com/botanix", - "standard": "EIP3091" + name: "3xpl", + url: "https://3xpl.com/botanix", + standard: "EIP3091", }, { - "name": "Blockscout", - "url": "https://blockscout.botanixlabs.dev", - "standard": "EIP3091" - } + name: "Blockscout", + url: "https://blockscout.botanixlabs.dev", + standard: "EIP3091", + }, ], "3637": [ { - "name": "Botanix", - "url": "https://btxtestchain.com", - "standard": "EIP3091" - } + name: "Botanix", + url: "https://btxtestchain.com", + standard: "EIP3091", + }, ], "3639": [ { - "name": "iChainscan", - "url": "https://ichainscan.com", - "standard": "EIP3091" - } + name: "iChainscan", + url: "https://ichainscan.com", + standard: "EIP3091", + }, ], "3645": [ { - "name": "iChainscan", - "url": "https://test.ichainscan.com", - "standard": "EIP3091" - } + name: "iChainscan", + url: "https://test.ichainscan.com", + standard: "EIP3091", + }, ], "3666": [ { - "name": "jscan", - "url": "https://jscan.jnsdao.com", - "standard": "EIP3091" - } + name: "jscan", + url: "https://jscan.jnsdao.com", + standard: "EIP3091", + }, ], "3690": [ { - "name": "bittexscan", - "url": "https://bittexscan.com", - "standard": "EIP3091" - } + name: "bittexscan", + url: "https://bittexscan.com", + standard: "EIP3091", + }, ], "3693": [ { - "name": "Empire Explorer", - "url": "https://explorer.empirenetwork.io", - "standard": "none" - } + name: "Empire Explorer", + url: "https://explorer.empirenetwork.io", + standard: "none", + }, ], "3698": [ { - "name": "SenjePowers", - "url": "https://testnet.senjepowersscan.com", - "standard": "EIP3091" - } + name: "SenjePowers", + url: "https://testnet.senjepowersscan.com", + standard: "EIP3091", + }, ], "3699": [ { - "name": "SenjePowers", - "url": "https://senjepowersscan.com", - "standard": "EIP3091" - } + name: "SenjePowers", + url: "https://senjepowersscan.com", + standard: "EIP3091", + }, ], "3737": [ { - "name": "Crossbell Explorer", - "url": "https://scan.crossbell.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "AlveyScan", + url: "https://alveyscan.com", + icon: "alveychain", + standard: "EIP3091", + }, ], "3799": [ { - "name": "ttntscan", - "url": "https://testnet-explorer.tangle.tools", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "ttntscan", + url: "https://testnet-explorer.tangle.tools", + icon: "blockscout", + standard: "EIP3091", + }, ], "3888": [ { - "name": "KalyScan", - "url": "https://kalyscan.io", - "standard": "EIP3091" - } + name: "KalyScan", + url: "https://kalyscan.io", + standard: "EIP3091", + }, ], "3889": [ { - "name": "KalyScan", - "url": "https://testnet.kalyscan.io", - "standard": "EIP3091" - } + name: "KalyScan", + url: "https://testnet.kalyscan.io", + standard: "EIP3091", + }, ], "3912": [ { - "name": "DRAC_Network Scan", - "url": "https://www.dracscan.io", - "standard": "EIP3091" - } + name: "DRAC_Network Scan", + url: "https://www.dracscan.io", + standard: "EIP3091", + }, ], "3939": [ { - "name": "DOScan-Test", - "url": "https://test.doscan.io", - "icon": "doschain", - "standard": "EIP3091" - } + name: "DOScan-Test", + url: "https://test.doscan.io", + icon: "doschain", + standard: "EIP3091", + }, ], "3966": [ { - "name": "DYNO Explorer", - "url": "https://dynoscan.io", - "standard": "EIP3091" - } + name: "DYNO Explorer", + url: "https://dynoscan.io", + standard: "EIP3091", + }, ], "3967": [ { - "name": "DYNO Explorer", - "url": "https://testnet.dynoscan.io", - "standard": "EIP3091" - } + name: "DYNO Explorer", + url: "https://testnet.dynoscan.io", + standard: "EIP3091", + }, ], "3993": [ { - "name": "blockscout", - "url": "https://exp-testnet.apexlayer.xyz", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://exp-testnet.apexlayer.xyz", + standard: "EIP3091", + }, ], "3999": [ { - "name": "YuanChain Explorer", - "url": "https://mainnet.yuan.org", - "standard": "none" - } + name: "YuanChain Explorer", + url: "https://mainnet.yuan.org", + standard: "none", + }, ], "4000": [ { - "name": "OZONE Scan", - "url": "https://ozonescan.io", - "standard": "EIP3091" - } + name: "OZONE Scan", + url: "https://ozonescan.io", + standard: "EIP3091", + }, ], "4001": [ { - "name": "Peperium Chain Explorer", - "url": "https://scan-testnet.peperium.io", - "icon": "peperium", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Carbonium Network tesnet Explorer", + icon: "cbr", + url: "https://testnet.carboniumscan.com", + standard: "none", + }, ], "4048": [ { - "name": "ganscan", - "url": "https://ganscan.gpu.net", - "standard": "none" - } + name: "ganscan", + url: "https://ganscan.gpu.net", + standard: "none", + }, ], "4058": [ { - "name": "blockscout", - "url": "https://ocean.ftnscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://ocean.ftnscan.com", + standard: "none", + }, ], "4061": [ { - "name": "Nahmii 3 Mainnet Explorer", - "url": "https://explorer.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Musterscan", + url: "https://muster-explorer.alt.technology", + standard: "EIP3091", + }, ], "4080": [ { - "name": "tobescan", - "url": "https://tobescan.com", - "standard": "EIP3091" - } + name: "tobescan", + url: "https://tobescan.com", + standard: "EIP3091", + }, ], "4090": [ { - "name": "blockscout", - "url": "https://oasis.ftnscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://oasis.ftnscan.com", + standard: "none", + }, ], "4096": [ { - "name": "Bitindi", - "url": "https://testnet.bitindiscan.com", - "standard": "EIP3091" - } + name: "Bitindi", + url: "https://testnet.bitindiscan.com", + standard: "EIP3091", + }, ], "4099": [ { - "name": "Bitindi", - "url": "https://bitindiscan.com", - "standard": "EIP3091" - } + name: "Bitindi", + url: "https://bitindiscan.com", + standard: "EIP3091", + }, ], "4102": [ { - "name": "AIOZ Network Testnet Explorer", - "url": "https://testnet.explorer.aioz.network", - "standard": "EIP3091" - } + name: "AIOZ Network Testnet Explorer", + url: "https://testnet.explorer.aioz.network", + standard: "EIP3091", + }, ], "4141": [ { - "name": "Tipboxcoin", - "url": "https://testnet.tipboxcoin.net", - "standard": "EIP3091" - } + name: "Tipboxcoin", + url: "https://testnet.tipboxcoin.net", + standard: "EIP3091", + }, ], "4157": [ { - "name": "CrossFi Testnet Scan", - "url": "https://test.xfiscan.com", - "standard": "EIP3091", - "icon": "crossfi" - } + 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" - } + name: "PHI Explorer", + url: "https://explorer.phi.network", + icon: "phi", + standard: "none", + }, ], "4200": [ { - "name": "L2scan", - "url": "https://scan.merlinchain.io", - "icon": "merlin", - "standard": "EIP3091" - } + name: "L2scan", + url: "https://scan.merlinchain.io", + icon: "merlin", + standard: "EIP3091", + }, ], "4201": [ { - "name": "Blockscout", - "url": "https://explorer.execution.testnet.lukso.network", - "standard": "none" - } + name: "Blockscout", + url: "https://explorer.execution.testnet.lukso.network", + standard: "none", + }, ], "4202": [ { - "name": "liskscout", - "url": "https://sepolia-blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "liskscout", + url: "https://sepolia-blockscout.lisk.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "4242": [ { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } + name: "nexiscan", + url: "https://www.nexiscan.com", + standard: "EIP3091", + }, ], "4243": [ { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } + name: "nexiscan", + url: "https://www.nexiscan.com", + standard: "EIP3091", + }, ], "4337": [ { - "name": "Beam Explorer", - "url": "https://subnets.avax.network/beam", - "standard": "EIP3091" - } + name: "Beam Explorer", + url: "https://subnets.avax.network/beam", + standard: "EIP3091", + }, ], "4400": [ { - "name": "Creditscan", - "url": "https://scan.creditsmartchain.com", - "icon": "credit", - "standard": "EIP3091" - } + name: "Creditscan", + url: "https://scan.creditsmartchain.com", + icon: "credit", + standard: "EIP3091", + }, ], "4444": [ { - "name": "htmlcoin", - "url": "https://explorer.htmlcoin.com", - "icon": "htmlcoin", - "standard": "none" - } + 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" - } + 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" - } + name: "EMoney ethscan", + url: "https://ethscan.emoney.network", + icon: "emoney", + standard: "EIP3091", + }, ], "4613": [ { - "name": "VERY explorer", - "url": "https://www.veryscan.io", - "standard": "none" - } + name: "VERY explorer", + url: "https://www.veryscan.io", + standard: "none", + }, ], "4689": [ { - "name": "iotexscan", - "url": "https://iotexscan.io", - "standard": "EIP3091" - } + name: "iotexscan", + url: "https://iotexscan.io", + standard: "EIP3091", + }, ], "4690": [ { - "name": "testnet iotexscan", - "url": "https://testnet.iotexscan.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://testnet-explorer.blackfort.network", + icon: "blockscout", + standard: "EIP3091", + }, ], "4893": [ { - "name": "blockscout", - "url": "https://gcscan.io", - "standard": "none" - } + name: "blockscout", + url: "https://gcscan.io", + standard: "none", + }, ], "4918": [ { - "name": "Venidium EVM Testnet Explorer", - "url": "https://evm-testnet.venidiumexplorer.com", - "standard": "EIP3091" - } + name: "Venidium EVM Testnet Explorer", + url: "https://evm-testnet.venidiumexplorer.com", + standard: "EIP3091", + }, ], "4919": [ { - "name": "Venidium Explorer", - "url": "https://evm.venidiumexplorer.com", - "standard": "EIP3091" - } + name: "Venidium Explorer", + url: "https://evm.venidiumexplorer.com", + standard: "EIP3091", + }, ], "4999": [ { - "name": "blockscout", - "url": "https://explorer.blackfort.network", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.blackfort.network", + icon: "blockscout", + standard: "EIP3091", + }, ], "5000": [ { - "name": "Mantle Explorer", - "url": "https://explorer.mantle.xyz", - "standard": "EIP3091" - } + name: "Mantle Explorer", + url: "https://explorer.mantle.xyz", + standard: "EIP3091", + }, ], "5001": [ { - "name": "Mantle Testnet Explorer", - "url": "https://explorer.testnet.mantle.xyz", - "standard": "EIP3091" - } + 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" - } + name: "Treasurenet EVM BlockExplorer", + url: "https://evmexplorer.treasurenet.io", + icon: "treasurenet", + standard: "none", + }, ], "5003": [ { - "name": "blockscout", - "url": "https://explorer.sepolia.mantle.xyz", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ONIGIRI Explorer", + url: "https://subnets-test.avax.network/onigiri", + standard: "EIP3091", + }, ], "5040": [ { - "name": "ONIGIRI Explorer", - "url": "https://subnets.avax.network/onigiri", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://explorer.ham.fun", + icon: "blockscout", + standard: "EIP3091", + }, ], "5165": [ { - "name": "blockscout", - "url": "https://ftnscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://ftnscan.com", + standard: "none", + }, ], "5169": [ { - "name": "SLN Mainnet Explorer", - "url": "https://explorer.main.smartlayer.network", - "standard": "EIP3091" - } + name: "SLN Mainnet Explorer", + url: "https://explorer.main.smartlayer.network", + standard: "EIP3091", + }, ], "5177": [ { - "name": "TLChain Explorer", - "url": "https://explorer.tlchain.network", - "standard": "none" - } + name: "TLChain Explorer", + url: "https://explorer.tlchain.network", + standard: "none", + }, ], "5234": [ { - "name": "Subscan", - "url": "https://humanode.subscan.io", - "standard": "EIP3091", - "icon": "subscan" - } + 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" - } + 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" - } + 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" - } + name: "TRITANIUM Testnet Explorer", + icon: "tritanium", + url: "https://testnet.tritanium.network", + standard: "none", + }, ], "5372": [ { - "name": "Settlus Scan", - "url": "https://testnet.settlus.network", - "standard": "EIP3091" - } + name: "Settlus Scan", + url: "https://testnet.settlus.network", + standard: "EIP3091", + }, ], "5424": [ { - "name": "edexa-mainnet", - "url": "https://explorer.edexa.network", - "standard": "EIP3091" - } + name: "edexa-mainnet", + url: "https://explorer.edexa.network", + standard: "EIP3091", + }, ], "5439": [ { - "name": "egoscan", - "url": "https://egoscan.io", - "standard": "EIP3091" - } + name: "egoscan", + url: "https://egoscan.io", + standard: "EIP3091", + }, ], "5522": [ { - "name": "Vexascan-EVM-TestNet", - "url": "https://testnet.vexascan.com/evmexplorer", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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: "bscscan-opbnb-testnet", + url: "https://opbnb-testnet.bscscan.com", + standard: "EIP3091", }, { - "name": "opbnbscan", - "url": "https://opbnbscan.com", - "standard": "EIP3091" - } + name: "opbnbscan", + url: "https://opbnbscan.com", + standard: "EIP3091", + }, ], "5615": [ { - "name": "explorer-arcturus-testnet", - "url": "https://testnet.arcscan.net", - "standard": "EIP3091" - } + name: "explorer-arcturus-testnet", + url: "https://testnet.arcscan.net", + standard: "EIP3091", + }, ], "5656": [ { - "name": "QIE Explorer", - "url": "https://mainnet.qiblockchain.online", - "standard": "EIP3091" - } + name: "QIE Explorer", + url: "https://mainnet.qiblockchain.online", + standard: "EIP3091", + }, ], "5675": [ { - "name": "filenova testnet explorer", - "url": "https://scantest.filenova.org", - "icon": "filenova", - "standard": "none" - } + 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" - } + name: "BlockScout", + url: "https://3001-blockscout.a.dancebox.tanssi.network", + standard: "EIP3091", + }, ], "5700": [ { - "name": "Syscoin Testnet Block Explorer", - "url": "https://tanenbaum.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Tangle EVM Explorer", + url: "https://explorer.tangle.tools", + standard: "EIP3091", + icon: "tangle", + }, ], "5851": [ { - "name": "explorer", - "url": "https://explorer.ont.io/testnet", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.ont.io/testnet", + standard: "EIP3091", + }, ], "5869": [ { - "name": "wegoscan2", - "url": "https://scan2.wegochain.io", - "standard": "EIP3091" - } + name: "wegoscan2", + url: "https://scan2.wegochain.io", + standard: "EIP3091", + }, ], "6000": [ { - "name": "BBScan Testnet Explorer", - "url": "https://bbscan.io", - "standard": "none" - } + name: "BBScan Testnet Explorer", + url: "https://bbscan.io", + standard: "none", + }, ], "6001": [ { - "name": "BBScan Mainnet Explorer", - "url": "https://bbscan.io", - "standard": "none" - } + name: "BBScan Mainnet Explorer", + url: "https://bbscan.io", + standard: "none", + }, ], "6065": [ { - "name": "treslechesexplorer", - "url": "https://explorer-test.tresleches.finance", - "icon": "treslechesexplorer", - "standard": "EIP3091" - } + name: "treslechesexplorer", + url: "https://explorer-test.tresleches.finance", + icon: "treslechesexplorer", + standard: "EIP3091", + }, ], "6066": [ { - "name": "treslechesexplorer", - "url": "https://explorer.tresleches.finance", - "icon": "treslechesexplorer", - "standard": "EIP3091" - } + 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 EVM Explorer", + url: "https://explorer.cascadia.foundation", + standard: "none", + icon: "cascadia", }, { - "name": "Cascadia Cosmos Explorer", - "url": "https://validator.cascadia.foundation", - "standard": "none", - "icon": "cascadia" - } + name: "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" - } + name: "UPTN Testnet Explorer", + url: "https://testnet.explorer.uptn.io", + standard: "EIP3091", + }, ], "6119": [ { - "name": "UPTN Explorer", - "url": "https://explorer.uptn.io", - "standard": "EIP3091" - } + name: "UPTN Explorer", + url: "https://explorer.uptn.io", + standard: "EIP3091", + }, ], "6321": [ { - "name": "Aurascan Explorer", - "url": "https://euphoria.aurascan.io", - "standard": "none", - "icon": "aura" - } + name: "Aurascan Explorer", + url: "https://euphoria.aurascan.io", + standard: "none", + icon: "aura", + }, ], "6322": [ { - "name": "Aurascan Explorer", - "url": "https://aurascan.io", - "standard": "none", - "icon": "aura" - } + name: "Aurascan Explorer", + url: "https://aurascan.io", + standard: "none", + icon: "aura", + }, ], "6552": [ { - "name": "Scolscan Testnet Explorer", - "url": "https://testnet-explorer.scolcoin.com", - "standard": "EIP3091" - } + 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" - } + name: "FOX Testnet Explorer", + icon: "fox", + url: "https://testnet.foxscan.app", + standard: "none", + }, ], "6626": [ { - "name": "blockscout", - "url": "https://scan.chain.pixie.xyz", - "standard": "none" - } + name: "blockscout", + url: "https://scan.chain.pixie.xyz", + standard: "none", + }, ], "6660": [ { - "name": "Latest Chain", - "url": "http://testnet.latestchain.io", - "standard": "EIP3091" - } + name: "Latest Chain", + url: "http://testnet.latestchain.io", + standard: "EIP3091", + }, ], "6661": [ { - "name": "Cybria Explorer", - "url": "https://cybascan.io", - "icon": "cybascan", - "standard": "EIP3091" - } + name: "Cybria Explorer", + url: "https://cybascan.io", + icon: "cybascan", + standard: "EIP3091", + }, ], "6666": [ { - "name": "Cybria Explorer", - "url": "https://explorer.cybascan.io", - "icon": "cybascan", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "PAXB Explorer", + url: "https://scan.paxb.io", + icon: "paxb", + standard: "EIP3091", + }, ], "6779": [ { - "name": "cpvscan", - "url": "https://scan.compverse.io", - "standard": "EIP3091" - } + name: "cpvscan", + url: "https://scan.compverse.io", + standard: "EIP3091", + }, ], "6789": [ { - "name": "Gold Smart Chain", - "url": "https://mainnet.goldsmartchain.com", - "standard": "EIP3091" - } + name: "Gold Smart Chain", + url: "https://mainnet.goldsmartchain.com", + standard: "EIP3091", + }, ], "6868": [ { - "name": "poolsscan", - "url": "https://scan.poolsmobility.com", - "icon": "POOLS", - "standard": "EIP3091" - } + name: "poolsscan", + url: "https://scan.poolsmobility.com", + icon: "POOLS", + standard: "EIP3091", + }, ], "6969": [ { - "name": "tombscout", - "url": "https://tombscout.com", - "standard": "none" - } + name: "tombscout", + url: "https://tombscout.com", + standard: "none", + }, ], "7000": [ { - "name": "ZetaChain Mainnet Explorer", - "url": "https://explorer.zetachain.com", - "standard": "none" - } + 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: "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" - } + name: "blockscout", + url: "https://zetachain-athens-3.blockscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "7007": [ { - "name": "blockscout", - "url": "https://bstscan.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://bstscan.com", + standard: "EIP3091", + }, ], "7027": [ { - "name": "Ella", - "url": "https://ella.network", - "standard": "EIP3091" - } + name: "Ella", + url: "https://ella.network", + standard: "EIP3091", + }, ], "7070": [ { - "name": "Planq EVM Explorer (Blockscout)", - "url": "https://evm.planq.network", - "standard": "none" + name: "Planq EVM Explorer (Blockscout)", + url: "https://evm.planq.network", + standard: "none", }, { - "name": "Planq Cosmos Explorer (BigDipper)", - "url": "https://explorer.planq.network", - "standard": "none" - } + name: "Planq Cosmos Explorer (BigDipper)", + url: "https://explorer.planq.network", + standard: "none", + }, ], "7100": [ { - "name": "numeexplorer", - "url": "https://explorer.numecrypto.com", - "icon": "nume", - "standard": "none" - } + name: "numeexplorer", + url: "https://explorer.numecrypto.com", + icon: "nume", + standard: "none", + }, ], "7171": [ { - "name": "Bitrock Explorer", - "url": "https://explorer.bit-rock.io", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Shyft BX", + url: "https://bx.shyft.network", + standard: "EIP3091", + }, ], "7484": [ { - "name": "raba", - "url": "https://x.raba.app/explorer", - "standard": "none" - } + name: "raba", + url: "https://x.raba.app/explorer", + standard: "none", + }, ], "7518": [ { - "name": "MEVerse Chain Explorer", - "url": "https://www.meversescan.io", - "standard": "none", - "icon": "meverse" - } + name: "MEVerse Chain Explorer", + url: "https://www.meversescan.io", + standard: "none", + icon: "meverse", + }, ], "7560": [ { - "name": "Cyber Mainnet Explorer", - "url": "https://cyberscan.co", - "standard": "EIP3091" - } + name: "Cyber Mainnet Explorer", + url: "https://cyberscan.co", + standard: "EIP3091", + }, ], "7575": [ { - "name": "ADIL Testnet Explorer", - "url": "https://testnet.adilchain-scan.io", - "standard": "EIP3091" - } + name: "ADIL Testnet Explorer", + url: "https://testnet.adilchain-scan.io", + standard: "EIP3091", + }, ], "7576": [ { - "name": "ADIL Mainnet Explorer", - "url": "https://adilchain-scan.io", - "standard": "EIP3091" - } + name: "ADIL Mainnet Explorer", + url: "https://adilchain-scan.io", + standard: "EIP3091", + }, ], "7668": [ { - "name": "rootnet", - "url": "https://explorer.rootnet.live", - "standard": "EIP3091" - } + name: "rootnet", + url: "https://explorer.rootnet.live", + standard: "EIP3091", + }, ], "7672": [ { - "name": "rootnet", - "url": "https://explorer.rootnet.cloud", - "standard": "EIP3091" - } + name: "rootnet", + url: "https://explorer.rootnet.cloud", + standard: "EIP3091", + }, ], "7700": [ { - "name": "Canto Explorer (OKLink)", - "url": "https://www.oklink.com/canto", - "standard": "EIP3091" + name: "Canto Explorer (OKLink)", + url: "https://www.oklink.com/canto", + standard: "EIP3091", }, { - "name": "Canto EVM Explorer (Blockscout)", - "url": "https://tuber.build", - "standard": "EIP3091" + name: "Canto EVM Explorer (Blockscout)", + url: "https://tuber.build", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://canto.dex.guru", - "icon": "dexguru", - "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: "Canto Testnet EVM Explorer (Blockscout)", + url: "https://testnet.tuber.build", + standard: "none", }, { - "name": "dexguru", - "url": "https://canto-test.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + 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" - } + name: "Bitrock Testnet Explorer", + url: "https://testnetscan.bit-rock.io", + standard: "EIP3091", + }, ], "7775": [ { - "name": "GDCC", - "url": "https://testnet.gdccscan.io", - "standard": "none" - } + name: "GDCC", + url: "https://testnet.gdccscan.io", + standard: "none", + }, ], "7777": [ { - "name": "avascan", - "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - "standard": "none" - } + name: "avascan", + url: "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", + standard: "none", + }, ], "7778": [ { - "name": "ORE Mainnet Explorer", - "icon": "ore", - "url": "https://oreniumscan.org", - "standard": "none" - } + 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" - } + 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" - } + name: "maalscan testnet", + url: "https://testnet.maalscan.io", + standard: "EIP3091", + }, ], "7878": [ { - "name": "Hazlor Testnet Explorer", - "url": "https://explorer.hazlor.com", - "standard": "none" - } + name: "Hazlor Testnet Explorer", + url: "https://explorer.hazlor.com", + standard: "none", + }, ], "7887": [ { - "name": "Kinto Explorer", - "url": "https://explorer.kinto.xyz", - "icon": "kinto", - "standard": "EIP3091" - } + 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" - } + name: "ARDENIUM Athena Explorer", + icon: "ard", + url: "https://testnet.ardscan.com", + standard: "none", + }, ], "7923": [ { - "name": "blockscout", - "url": "https://explorer.dotblox.io", - "standard": "none" - } + name: "blockscout", + url: "https://explorer.dotblox.io", + standard: "none", + }, ], "7924": [ { - "name": "MO Explorer", - "url": "https://moscan.app", - "standard": "none" - } + name: "MO Explorer", + url: "https://moscan.app", + standard: "none", + }, ], "7979": [ { - "name": "DOScan", - "url": "https://doscan.io", - "icon": "doschain", - "standard": "EIP3091" - } + 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 EVM Explorer (Blockscout)", + url: "https://evm-explorer.teleport.network", + standard: "none", + icon: "teleport", }, { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.teleport.network", - "standard": "none", - "icon": "teleport" - } + name: "Teleport 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 EVM Explorer (Blockscout)", + url: "https://evm-explorer.testnet.teleport.network", + standard: "none", + icon: "teleport", }, { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.testnet.teleport.network", - "standard": "none", - "icon": "teleport" - } + name: "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" - } + 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" - } + name: "Karak Sepolia Explorer", + url: "https://explorer.sepolia.karak.network", + standard: "EIP3091", + }, ], "8080": [ { - "name": "Shardeum Scan", - "url": "https://explorer-liberty10.shardeum.org", - "standard": "EIP3091" - } + name: "Shardeum Scan", + url: "https://explorer-liberty10.shardeum.org", + standard: "EIP3091", + }, ], "8081": [ { - "name": "Shardeum Scan", - "url": "https://explorer-liberty20.shardeum.org", - "standard": "EIP3091" - } + name: "Shardeum Scan", + url: "https://explorer-liberty20.shardeum.org", + standard: "EIP3091", + }, ], "8082": [ { - "name": "Shardeum Scan", - "url": "https://explorer-sphinx.shardeum.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Testnet BeOne Chain", + url: "https://testnet.beonescan.com", + icon: "beonechain", + standard: "none", + }, ], "8192": [ { - "name": "blockscout", - "url": "https://toruscan.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://toruscan.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "8194": [ { - "name": "blockscout", - "url": "https://testnet.toruscan.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.toruscan.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "8217": [ { - "name": "Klaytnscope", - "url": "https://scope.klaytn.com", - "standard": "EIP3091" + name: "Klaytnscope", + url: "https://scope.klaytn.com", + standard: "EIP3091", }, { - "name": "Klaytnfinder", - "url": "https://klaytnfinder.io", - "standard": "EIP3091" - } + name: "Klaytnfinder", + url: "https://klaytnfinder.io", + standard: "EIP3091", + }, ], "8227": [ { - "name": "SPACE Explorer", - "url": "https://subnets.avax.network/space", - "standard": "EIP3091" - } + name: "SPACE Explorer", + url: "https://subnets.avax.network/space", + standard: "EIP3091", + }, ], "8272": [ { - "name": "Blockton Explorer", - "url": "https://blocktonscan.com", - "standard": "none" - } + name: "Blockton Explorer", + url: "https://blocktonscan.com", + standard: "none", + }, ], "8329": [ { - "name": "Lorenzo Explorer", - "url": "https://scan.lorenzo-protocol.xyz", - "standard": "none", - "icon": "lorenzo" - } + name: "Lorenzo Explorer", + url: "https://scan.lorenzo-protocol.xyz", + standard: "none", + icon: "lorenzo", + }, ], "8453": [ { - "name": "basescan", - "url": "https://basescan.org", - "standard": "none" + name: "basescan", + url: "https://basescan.org", + standard: "none", }, { - "name": "basescout", - "url": "https://base.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "basescout", + url: "https://base.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://base.dex.guru", - "icon": "dexguru", - "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" - } + 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" - } + name: "OLO Block Explorer", + url: "https://www.olo.network", + standard: "EIP3091", + }, ], "8726": [ { - "name": "Storscan", - "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", - "standard": "none" - } + 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" - } + name: "Storscan", + url: "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", + standard: "none", + }, ], "8738": [ { - "name": "alphscan", - "url": "https://explorer.alph.network", - "standard": "EIP3091" - } + name: "alphscan", + url: "https://explorer.alph.network", + standard: "EIP3091", + }, ], "8822": [ { - "name": "explorer", - "url": "https://explorer.evm.iota.org", - "icon": "iotaevm", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "MARO Scan", + url: "https://scan.ma.ro/#", + standard: "none", + }, ], "8866": [ { - "name": "Lumio explorer", - "url": "https://explorer.lumio.io", - "standard": "none" - } + name: "Lumio explorer", + url: "https://explorer.lumio.io", + standard: "none", + }, ], "8880": [ { - "name": "Unique Scan", - "url": "https://uniquescan.io/unique", - "standard": "none" - } + name: "Unique Scan", + url: "https://uniquescan.io/unique", + standard: "none", + }, ], "8881": [ { - "name": "Unique Scan / Quartz", - "url": "https://uniquescan.io/quartz", - "standard": "none" - } + name: "Unique Scan / Quartz", + url: "https://uniquescan.io/quartz", + standard: "none", + }, ], "8882": [ { - "name": "Unique Scan / Opal", - "url": "https://uniquescan.io/opal", - "standard": "none" - } + name: "Unique Scan / Opal", + url: "https://uniquescan.io/opal", + standard: "none", + }, ], "8883": [ { - "name": "Unique Scan / Sapphire", - "url": "https://uniquescan.io/sapphire", - "standard": "none" - } + name: "Unique Scan / Sapphire", + url: "https://uniquescan.io/sapphire", + standard: "none", + }, ], "8888": [ { - "name": "XANAChain", - "url": "https://xanachain.xana.net", - "standard": "EIP3091" - } + name: "XANAChain", + url: "https://xanachain.xana.net", + standard: "EIP3091", + }, ], "8890": [ { - "name": "ORE Testnet Explorer", - "icon": "ore", - "url": "https://testnet.oreniumscan.org", - "standard": "none" - } + name: "ORE Testnet Explorer", + icon: "ore", + url: "https://testnet.oreniumscan.org", + standard: "none", + }, ], "8898": [ { - "name": "mmtscan", - "url": "https://mmtscan.io", - "standard": "EIP3091", - "icon": "mmt" - } + name: "mmtscan", + url: "https://mmtscan.io", + standard: "EIP3091", + icon: "mmt", + }, ], "8899": [ { - "name": "JIBCHAIN Explorer", - "url": "https://exp-l1.jibchain.net", - "standard": "EIP3091" - } + name: "JIBCHAIN Explorer", + url: "https://exp-l1.jibchain.net", + standard: "EIP3091", + }, ], "8911": [ { - "name": "algscan", - "url": "https://scan.algen.network", - "icon": "alg", - "standard": "EIP3091" - } + name: "algscan", + url: "https://scan.algen.network", + icon: "alg", + standard: "EIP3091", + }, ], "8912": [ { - "name": "algscan", - "url": "https://scan.test.algen.network", - "icon": "alg", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Shidoblock Mainnet Explorer", + url: "https://shidoscan.com", + standard: "none", + icon: "shidoChain", + }, ], "9012": [ { - "name": "berylbit-explorer", - "url": "https://explorer.berylbit.io", - "standard": "EIP3091" - } + name: "berylbit-explorer", + url: "https://explorer.berylbit.io", + standard: "EIP3091", + }, ], "9024": [ { - "name": "Nexablock Testnet Explorer", - "url": "https://testnet.nexablockscan.io", - "standard": "none", - "icon": "nexaChain" - } + 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" - } + name: "Nexablock Mainnet Explorer", + url: "https://nexablockscan.io", + standard: "none", + icon: "nexaChain", + }, ], "9223": [ { - "name": "Codefin Net Explorer", - "url": "https://explorer.codefin.pro", - "standard": "EIP3091" - } + name: "Codefin Net Explorer", + url: "https://explorer.codefin.pro", + standard: "EIP3091", + }, ], "9339": [ { - "name": "Dogcoin", - "url": "https://testnet.dogcoin.network", - "standard": "EIP3091" - } + name: "Dogcoin", + url: "https://testnet.dogcoin.network", + standard: "EIP3091", + }, ], "9393": [ { - "name": "basescout", - "url": "https://sepolia-delascan.deperp.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "basescout", + url: "https://sepolia-delascan.deperp.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "9395": [ { - "name": "Evoke SmartChain Explorer", - "url": "https://explorer.evokescan.org", - "standard": "EIP3091" - } + name: "Evoke SmartChain Explorer", + url: "https://explorer.evokescan.org", + standard: "EIP3091", + }, ], "9527": [ { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } + name: "rangersscan-robin", + url: "https://robin-rangersscan.rangersprotocol.com", + standard: "none", + }, ], "9528": [ { - "name": "QEasyWeb3 Explorer", - "url": "https://www.qeasyweb3.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Boba BNB Testnet block explorer", + url: "https://testnet.bobascan.com", + standard: "none", + }, ], "9768": [ { - "name": "MainnetZ", - "url": "https://testnet.mainnetz.io", - "standard": "EIP3091" - } + name: "MainnetZ", + url: "https://testnet.mainnetz.io", + standard: "EIP3091", + }, ], "9779": [ { - "name": "Pepe Explorer", - "url": "https://explorer.pepenetwork.io", - "icon": "pepenetwork", - "standard": "none" - } + name: "Pepe Explorer", + url: "https://explorer.pepenetwork.io", + icon: "pepenetwork", + standard: "none", + }, ], "9789": [ { - "name": "Tabi Testnet Explorer", - "url": "https://testnet.tabiscan.com", - "standard": "none" - } + name: "Tabi Testnet Explorer", + url: "https://testnet.tabiscan.com", + standard: "none", + }, ], "9797": [ { - "name": "OptimusZ7 Mainnet Explorer", - "url": "https://explorer.optimusz7.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "IMPERIUM Explorer", + icon: "imp", + url: "https://impscan.com", + standard: "none", + }, ], "9888": [ { - "name": "Dogelayer mainnet explorer", - "url": "https://dl-explorer.dogelayer.org", - "standard": "EIP3091" - } + name: "Dogelayer mainnet explorer", + url: "https://dl-explorer.dogelayer.org", + standard: "EIP3091", + }, ], "9898": [ { - "name": "Larissa Scan", - "url": "https://scan.larissa.network", - "standard": "EIP3091" - } + name: "Larissa Scan", + url: "https://scan.larissa.network", + standard: "EIP3091", + }, ], "9911": [ { - "name": "escscan", - "url": "https://escscan.com", - "icon": "espento", - "standard": "EIP3091" - } + name: "escscan", + url: "https://escscan.com", + icon: "espento", + standard: "EIP3091", + }, ], "9977": [ { - "name": "Mind Chain explorer", - "url": "https://testnet.mindscan.info", - "standard": "EIP3091" - } + name: "Mind Chain explorer", + url: "https://testnet.mindscan.info", + standard: "EIP3091", + }, ], "9980": [ { - "name": "combotrace explorer", - "url": "https://combotrace.nodereal.io", - "standard": "EIP3091" - } + name: "combotrace explorer", + url: "https://combotrace.nodereal.io", + standard: "EIP3091", + }, ], "9981": [ { - "name": "Volley Mainnet Explorer", - "url": "https://volleyscan.io", - "standard": "EIP3091" - } + 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: "Polkadot.js", + url: "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", + standard: "none", }, { - "name": "Subscan", - "url": "https://agung.subscan.io", - "standard": "none" - } + name: "Subscan", + url: "https://agung.subscan.io", + standard: "none", + }, ], "9996": [ { - "name": "Mind Chain explorer", - "url": "https://mainnet.mindscan.info", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://testnet-rollup-explorer.altlayer.io", + icon: "blockscout", + standard: "EIP3091", + }, ], "10024": [ { - "name": "Gon Explorer", - "url": "https://gonscan.com", - "standard": "none" - } + name: "Gon Explorer", + url: "https://gonscan.com", + standard: "none", + }, ], "10081": [ { - "name": "Testnet Block Explorer", - "url": "https://explorer.testnet.japanopenchain.org", - "standard": "EIP3091" - } + 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-chiadochain", + url: "https://blockscout.chiadochain.net", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://gnosis-chiado.blockscout.com", - "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" - } + name: "MaxxChain Block Explorer", + url: "https://explorer.maxxchain.org", + standard: "EIP3091", + }, ], "10222": [ { - "name": "GLScan Explorer", - "url": "https://glscan.io", - "standard": "none", - "icon": "glc" - } + name: "GLScan Explorer", + url: "https://glscan.io", + standard: "none", + icon: "glc", + }, ], "10242": [ { - "name": "blockscout", - "url": "https://explorer.arthera.net", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.arthera.net", + icon: "blockscout", + standard: "EIP3091", + }, ], "10243": [ { - "name": "blockscout", - "url": "https://explorer-test.arthera.net", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer-test.arthera.net", + icon: "blockscout", + standard: "EIP3091", + }, ], "10248": [ { - "name": "0xtrade Scan", - "url": "https://www.0xtscan.com", - "standard": "none" - } + name: "0xtrade Scan", + url: "https://www.0xtscan.com", + standard: "none", + }, ], "10321": [ { - "name": "TAO Mainnet Explorer", - "url": "https://taoscan.org", - "standard": "EIP3091" - } + name: "TAO Mainnet Explorer", + url: "https://taoscan.org", + standard: "EIP3091", + }, ], "10324": [ { - "name": "TAO Testnet Explorer", - "url": "https://testnet.taoscan.org", - "standard": "EIP3091" - } + name: "TAO Testnet Explorer", + url: "https://testnet.taoscan.org", + standard: "EIP3091", + }, ], "10395": [ { - "name": "Worldland Explorer", - "url": "https://testscan.worldland.foundation", - "standard": "EIP3091" - } + name: "Worldland Explorer", + url: "https://testscan.worldland.foundation", + standard: "EIP3091", + }, ], "10507": [ { - "name": "ethernal", - "url": "https://mainnet.num.network", - "standard": "EIP3091" - } + name: "ethernal", + url: "https://mainnet.num.network", + standard: "EIP3091", + }, ], "10508": [ { - "name": "ethernal", - "url": "https://testnet.num.network", - "standard": "EIP3091" - } + name: "ethernal", + url: "https://testnet.num.network", + standard: "EIP3091", + }, ], "10823": [ { - "name": "CCP Explorer", - "url": "https://cryptocoinpay.info", - "standard": "EIP3091" - } + name: "CCP Explorer", + url: "https://cryptocoinpay.info", + standard: "EIP3091", + }, ], "10849": [ { - "name": "Lamina1 Explorer", - "url": "https://subnets.avax.network/lamina1", - "standard": "EIP3091" - } + name: "Lamina1 Explorer", + url: "https://subnets.avax.network/lamina1", + standard: "EIP3091", + }, ], "10850": [ { - "name": "Lamina1 Identity Explorer", - "url": "https://subnets.avax.network/lamina1id", - "standard": "EIP3091" - } + name: "Lamina1 Identity Explorer", + url: "https://subnets.avax.network/lamina1id", + standard: "EIP3091", + }, ], "10946": [ { - "name": "explorer", - "url": "https://explorer.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - } + name: "explorer", + url: "https://explorer.quadrans.io", + icon: "quadrans", + standard: "EIP3091", + }, ], "10947": [ { - "name": "explorer", - "url": "https://explorer.testnet.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - } + 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 EVM Explorer (Blockscout)", + url: "https://explorer.astranaut.io", + standard: "none", + icon: "astra", }, { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.io/astra", - "standard": "none", - "icon": "astra" - } + name: "Astra 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" - } + 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 EVM Explorer", + url: "https://explorer.astranaut.dev", + standard: "EIP3091", + icon: "astra", }, { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.dev/astra", - "standard": "none", - "icon": "astra" - } + name: "Astra PingPub Explorer", + url: "https://ping.astranaut.dev/astra", + standard: "none", + icon: "astra", + }, ], "11119": [ { - "name": "hashbitscan", - "url": "https://explorer.hashbit.org", - "standard": "EIP3091" - } + name: "hashbitscan", + url: "https://explorer.hashbit.org", + standard: "EIP3091", + }, ], "11221": [ { - "name": "shinescan", - "url": "https://shinescan.io", - "icon": "shine", - "standard": "none" - } + name: "shinescan", + url: "https://shinescan.io", + icon: "shine", + standard: "none", + }, ], "11227": [ { - "name": "JIRITSUTES Explorer", - "url": "https://subnets-test.avax.network/jiritsutes", - "standard": "EIP3091" - } + name: "JIRITSUTES Explorer", + url: "https://subnets-test.avax.network/jiritsutes", + standard: "EIP3091", + }, ], "11235": [ { - "name": "Mainnet HAQQ Explorer", - "url": "https://explorer.haqq.network", - "standard": "EIP3091" - } + name: "Mainnet HAQQ Explorer", + url: "https://explorer.haqq.network", + standard: "EIP3091", + }, ], "11437": [ { - "name": "Shyft Testnet BX", - "url": "https://bx.testnet.shyft.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "bevm testnet scan", + url: "https://scan-testnet.bevm.io", + standard: "none", + }, ], "11612": [ { - "name": "Sardis", - "url": "https://testnet.sardisnetwork.com", - "standard": "EIP3091" - } + name: "Sardis", + url: "https://testnet.sardisnetwork.com", + standard: "EIP3091", + }, ], "11822": [ { - "name": "ArtelaScan", - "url": "https://betanet-scan.artela.network", - "standard": "EIP3091" - } + name: "ArtelaScan", + url: "https://betanet-scan.artela.network", + standard: "EIP3091", + }, ], "11891": [ { - "name": "Polygon Supernet Arianee Explorer", - "url": "https://polygonsupernet.explorer.arianee.net", - "standard": "EIP3091" - } + name: "Polygon Supernet Arianee Explorer", + url: "https://polygonsupernet.explorer.arianee.net", + standard: "EIP3091", + }, ], "12009": [ { - "name": "SatoshiChain Explorer", - "url": "https://satoshiscan.io", - "standard": "EIP3091" - } + name: "SatoshiChain Explorer", + url: "https://satoshiscan.io", + standard: "EIP3091", + }, ], "12020": [ { - "name": "blockscout", - "url": "https://explorer.aternoschain.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.aternoschain.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "12051": [ { - "name": "zeroscan", - "url": "https://betaenv.singularity.gold:18002", - "standard": "EIP3091" - } + name: "zeroscan", + url: "https://betaenv.singularity.gold:18002", + standard: "EIP3091", + }, ], "12052": [ { - "name": "zeroscan", - "url": "https://zeroscan.singularity.gold", - "standard": "EIP3091" - } + name: "zeroscan", + url: "https://zeroscan.singularity.gold", + standard: "EIP3091", + }, ], "12123": [ { - "name": "BRC Chain Explorer", - "url": "https://scan.brcchain.io", - "standard": "EIP3091" - } + name: "BRC Chain Explorer", + url: "https://scan.brcchain.io", + standard: "EIP3091", + }, ], "12306": [ { - "name": "fiboscan", - "url": "https://scan.fibochain.org", - "standard": "EIP3091" - } + name: "fiboscan", + url: "https://scan.fibochain.org", + standard: "EIP3091", + }, ], "12324": [ { - "name": "L3X Mainnet Explorer", - "url": "https://explorer.l3x.com", - "standard": "EIP3091" - } + name: "L3X Mainnet Explorer", + url: "https://explorer.l3x.com", + standard: "EIP3091", + }, ], "12325": [ { - "name": "L3X Testnet Explorer", - "url": "https://explorer-testnet.l3x.com", - "standard": "EIP3091" - } + name: "L3X Testnet Explorer", + url: "https://explorer-testnet.l3x.com", + standard: "EIP3091", + }, ], "12345": [ { - "name": "StepScan", - "url": "https://testnet.stepscan.io", - "icon": "step", - "standard": "EIP3091" - } + name: "StepScan", + url: "https://testnet.stepscan.io", + icon: "step", + standard: "EIP3091", + }, ], "12553": [ { - "name": "RSS3 VSL Scan", - "url": "https://scan.rss3.io", - "standard": "EIP3091" - } + name: "RSS3 VSL Scan", + url: "https://scan.rss3.io", + standard: "EIP3091", + }, ], "12715": [ { - "name": "Rikeza Blockchain explorer", - "url": "https://testnet.rikscan.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Avalanche Subnet Explorer", + url: "https://subnets-test.avax.network/letsplayfair", + standard: "EIP3091", + }, ], "13000": [ { - "name": "SPS Explorer", - "url": "http://spsscan.ssquad.games", - "standard": "EIP3091" - } + name: "SPS Explorer", + url: "http://spsscan.ssquad.games", + standard: "EIP3091", + }, ], "13308": [ { - "name": "Creditscan", - "url": "https://scan.creditsmartchain.com", - "icon": "credit", - "standard": "EIP3091" - } + name: "Creditscan", + url: "https://scan.creditsmartchain.com", + icon: "credit", + standard: "EIP3091", + }, ], "13337": [ { - "name": "Beam Explorer", - "url": "https://subnets-test.avax.network/beam", - "standard": "EIP3091" - } + 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" - } + name: "Immutable explorer", + url: "https://explorer.immutable.com", + standard: "EIP3091", + icon: "immutable", + }, ], "13381": [ { - "name": "phoenixplorer", - "url": "https://phoenixplorer.com", - "standard": "EIP3091" - } + name: "phoenixplorer", + url: "https://phoenixplorer.com", + standard: "EIP3091", + }, ], "13396": [ { - "name": "Masa Explorer", - "url": "https://subnets.avax.network/masa", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "qbitscan", + url: "https://explorer.qbitscan.com", + icon: "kronobit", + standard: "EIP3091", + }, ], "13812": [ { - "name": "Susono", - "url": "http://explorer.opn.network", - "standard": "none" - } + name: "Susono", + url: "http://explorer.opn.network", + standard: "none", + }, ], "14000": [ { - "name": "SPS Test Explorer", - "url": "https://explorer.3sps.net", - "standard": "EIP3091" - } + name: "SPS Test Explorer", + url: "https://explorer.3sps.net", + standard: "EIP3091", + }, ], "14324": [ { - "name": "Evolve Testnet Explorer", - "url": "https://testnet.evolveblockchain.io", - "standard": "EIP3091" - } + 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" - } + name: "Vitruveo Testnet Explorer", + url: "https://test-explorer.vitruveo.xyz", + icon: "vitruveo", + standard: "EIP3091", + }, ], "14801": [ { - "name": "satoriscan", - "url": "https://satori.vanascan.io", - "standard": "EIP3091" - } + name: "satoriscan", + url: "https://satori.vanascan.io", + standard: "EIP3091", + }, ], "15003": [ { - "name": "Immutable Devnet explorer", - "url": "https://explorer.dev.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } + 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" - } + name: "Poodl Testnet Explorer", + url: "https://testnet.poodl.org", + standard: "EIP3091", + }, ], "15259": [ { - "name": "Poodl Mainnet Explorer", - "url": "https://explorer.poodl.org", - "standard": "EIP3091" - } + name: "Poodl Mainnet Explorer", + url: "https://explorer.poodl.org", + standard: "EIP3091", + }, ], "15551": [ { - "name": "loopscan", - "url": "http://explorer.mainnetloop.com", - "standard": "none" - } + name: "loopscan", + url: "http://explorer.mainnetloop.com", + standard: "none", + }, ], "15555": [ { - "name": "Trust EVM Explorer", - "url": "https://trustscan.one", - "standard": "EIP3091" - } + name: "Trust EVM Explorer", + url: "https://trustscan.one", + standard: "EIP3091", + }, ], "15557": [ { - "name": "EOS EVM Explorer", - "url": "https://explorer.testnet.evm.eosnetwork.com", - "standard": "EIP3091" - } + 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" - } + name: "DeFiVerse Explorer", + url: "https://scan.defi-verse.org", + icon: "defiverse", + standard: "EIP3091", + }, ], "16507": [ { - "name": "GchainExplorer", - "url": "https://gchainexplorer.genesys.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "AirDAO Network Explorer", + url: "https://airdao.io/explorer", + standard: "none", + }, ], "16888": [ { - "name": "ivarscan", - "url": "https://testnet.ivarscan.com", - "standard": "EIP3091" - } + name: "ivarscan", + url: "https://testnet.ivarscan.com", + standard: "EIP3091", + }, ], "17000": [ { - "name": "Holesky Explorer", - "url": "https://holesky.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" + 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: "otterscan-holesky", + url: "https://holesky.otterscan.io", + icon: "ethereum", + standard: "EIP3091", }, { - "name": "Holesky Etherscan", - "url": "https://holesky.etherscan.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" - } + 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" - } + 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" - } + name: "G8Chain", + url: "https://mainnet.oneg8.network", + standard: "EIP3091", + }, ], "17172": [ { - "name": "ECLIPSE Explorer", - "url": "https://subnets-test.avax.network/eclipse", - "standard": "EIP3091" - } + name: "ECLIPSE Explorer", + url: "https://subnets-test.avax.network/eclipse", + standard: "EIP3091", + }, ], "17180": [ { - "name": "Palettescan", - "url": "https://testnet.palettescan.com", - "icon": "PLT", - "standard": "none" - } + name: "Palettescan", + url: "https://testnet.palettescan.com", + icon: "PLT", + standard: "none", + }, ], "17217": [ { - "name": "konet-explorer", - "url": "https://explorer.kon-wallet.com", - "standard": "EIP3091" - } + name: "konet-explorer", + url: "https://explorer.kon-wallet.com", + standard: "EIP3091", + }, ], "17777": [ { - "name": "EOS EVM Explorer", - "url": "https://explorer.evm.eosnetwork.com", - "standard": "EIP3091" - } + name: "EOS EVM Explorer", + url: "https://explorer.evm.eosnetwork.com", + standard: "EIP3091", + }, ], "18000": [ { - "name": "Game Network", - "url": "https://explorer.fod.games", - "standard": "EIP3091" - } + name: "Game Network", + url: "https://explorer.fod.games", + standard: "EIP3091", + }, ], "18122": [ { - "name": "stnscan", - "url": "https://stnscan.com", - "icon": "stn", - "standard": "none" - } + name: "stnscan", + url: "https://stnscan.com", + icon: "stn", + standard: "none", + }, ], "18159": [ { - "name": "explorer-proofofmemes", - "url": "https://memescan.io", - "standard": "EIP3091" - } + name: "explorer-proofofmemes", + url: "https://memescan.io", + standard: "EIP3091", + }, ], "18181": [ { - "name": "G8Chain", - "url": "https://testnet.oneg8.network", - "standard": "EIP3091" - } + name: "G8Chain", + url: "https://testnet.oneg8.network", + standard: "EIP3091", + }, ], "18233": [ { - "name": "blockscout", - "url": "https://unreal.blockscout.com", - "icon": "unreal", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://unreal.blockscout.com", + icon: "unreal", + standard: "EIP3091", + }, ], "18686": [ { - "name": "MXC zkEVM Moonchain", - "url": "https://explorer.moonchain.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "HOME Verse Explorer", + url: "https://explorer.oasys.homeverse.games", + standard: "EIP3091", + }, ], "19224": [ { - "name": "Decentraconnect Social", - "url": "https://decentraconnect.io", - "standard": "EIP3091" - } + name: "Decentraconnect Social", + url: "https://decentraconnect.io", + standard: "EIP3091", + }, ], "19600": [ { - "name": "LBRY Block Explorer", - "url": "https://explorer.lbry.com", - "icon": "lbry", - "standard": "none" - } + name: "LBRY Block Explorer", + url: "https://explorer.lbry.com", + icon: "lbry", + standard: "none", + }, ], "19845": [ { - "name": "BTCIXScan", - "url": "https://btcixscan.com", - "standard": "none" - } + name: "BTCIXScan", + url: "https://btcixscan.com", + standard: "none", + }, ], "20001": [ { - "name": "CamelarkScan", - "url": "https://scan.camelark.com", - "standard": "EIP3091" - } + name: "CamelarkScan", + url: "https://scan.camelark.com", + standard: "EIP3091", + }, ], "20041": [ { - "name": "NizaScan", - "url": "https://nizascan.io", - "standard": "EIP3091" - } + name: "NizaScan", + url: "https://nizascan.io", + standard: "EIP3091", + }, ], "20073": [ { - "name": "NizaScan", - "url": "https://testnet.nizascan.io", - "standard": "EIP3091" - } + name: "NizaScan", + url: "https://testnet.nizascan.io", + standard: "EIP3091", + }, ], "20736": [ { - "name": "P12 Chain Explorer", - "url": "https://explorer.p12.games", - "standard": "EIP3091" - } + name: "P12 Chain Explorer", + url: "https://explorer.p12.games", + standard: "EIP3091", + }, ], "20765": [ { - "name": "JONO11 Explorer", - "url": "https://subnets-test.avax.network/jono11", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "AAH Blockscout", + url: "https://exp.c4ex.net", + icon: "aah", + standard: "EIP3091", + }, ], "21223": [ { - "name": "DCpay Mainnet Explorer", - "url": "https://mainnet.dcpay.io", - "standard": "EIP3091" - } + name: "DCpay Mainnet Explorer", + url: "https://mainnet.dcpay.io", + standard: "EIP3091", + }, ], "21224": [ { - "name": "DCpay Testnet Explorer", - "url": "https://testnet.dcpay.io", - "standard": "EIP3091" - } + name: "DCpay Testnet Explorer", + url: "https://testnet.dcpay.io", + standard: "EIP3091", + }, ], "21337": [ { - "name": "UNcover", - "url": "https://uncoverexplorer.com", - "standard": "none" - } + name: "UNcover", + url: "https://uncoverexplorer.com", + standard: "none", + }, ], "21816": [ { - "name": "omChain Explorer", - "url": "https://explorer.omchain.io", - "standard": "EIP3091" - } + name: "omChain Explorer", + url: "https://explorer.omchain.io", + standard: "EIP3091", + }, ], "21912": [ { - "name": "BSL Mainnet Explorer", - "url": "https://scan.nftruth.io", - "standard": "EIP3091" - } + 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 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" - } + 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" - } + name: "AirDAO Network Explorer", + url: "https://testnet.airdao.io/explorer", + standard: "none", + }, ], "22222": [ { - "name": "Nautscan", - "url": "https://nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" - } + name: "Nautscan", + url: "https://nautscan.com", + standard: "EIP3091", + icon: "nautilus", + }, ], "22324": [ { - "name": "GoldXChain Testnet Explorer", - "url": "https://testnet-explorer.goldxchain.io", - "standard": "EIP3091" - } + name: "GoldXChain Testnet Explorer", + url: "https://testnet-explorer.goldxchain.io", + standard: "EIP3091", + }, ], "22776": [ { - "name": "maposcan", - "url": "https://maposcan.io", - "standard": "EIP3091" - } + name: "maposcan", + url: "https://maposcan.io", + standard: "EIP3091", + }, ], "23006": [ { - "name": "Antofy Testnet", - "url": "https://test.antofyscan.com", - "standard": "EIP3091" - } + name: "Antofy Testnet", + url: "https://test.antofyscan.com", + standard: "EIP3091", + }, ], "23118": [ { - "name": "opsideInfo", - "url": "https://opside.info", - "standard": "EIP3091" - } + name: "opsideInfo", + url: "https://opside.info", + standard: "EIP3091", + }, ], "23294": [ { - "name": "Oasis Sapphire Explorer", - "url": "https://explorer.oasis.io/mainnet/sapphire", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "drxscan", + url: "https://scan.dreyerx.com", + icon: "dreyerx", + standard: "EIP3091", + }, ], "23452": [ { - "name": "drxscan", - "url": "https://testnet-scan.dreyerx.com", - "icon": "dreyerx", - "standard": "EIP3091" - } + name: "drxscan", + url: "https://testnet-scan.dreyerx.com", + icon: "dreyerx", + standard: "EIP3091", + }, ], "23888": [ { - "name": "Blast Testnet", - "url": "http://testnet-explorer.blastblockchain.com", - "standard": "EIP3091" - } + name: "Blast Testnet", + url: "http://testnet-explorer.blastblockchain.com", + standard: "EIP3091", + }, ], "25186": [ { - "name": "LiquidLayer Mainnet Explorer", - "url": "https://scan.liquidlayer.network", - "standard": "EIP3091" - } + name: "LiquidLayer Mainnet Explorer", + url: "https://scan.liquidlayer.network", + standard: "EIP3091", + }, ], "25839": [ { - "name": "AlveyScan Testnet", - "url": "https://alveytestnet.com", - "icon": "alveychain", - "standard": "EIP3091" - } + name: "AlveyScan Testnet", + url: "https://alveytestnet.com", + icon: "alveychain", + standard: "EIP3091", + }, ], "25888": [ { - "name": "Hammer Chain Explorer", - "url": "https://www.hammerchain.io", - "standard": "none" - } + name: "Hammer Chain Explorer", + url: "https://www.hammerchain.io", + standard: "none", + }, ], "25925": [ { - "name": "bkcscan-testnet", - "url": "https://testnet.bkcscan.com", - "standard": "none", - "icon": "bkc" - } + 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" - } + 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" - } + name: "Hertz Scan", + url: "https://hertzscan.com", + icon: "hertz-network", + standard: "EIP3091", + }, ], "26863": [ { - "name": "OasisChain Explorer", - "url": "https://scan.oasischain.io", - "standard": "EIP3091" - } + name: "OasisChain Explorer", + url: "https://scan.oasischain.io", + standard: "EIP3091", + }, ], "27181": [ { - "name": "blockscout", - "url": "https://blockscout.klaosnova.laosfoundation.io", - "icon": "k-laos", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ZEROONEMAI Explorer", + url: "https://subnets.avax.network/zeroonemai", + standard: "EIP3091", + }, ], "28516": [ { - "name": "blockscout", - "url": "https://explorer-sepolia.vizing.com", - "icon": "vizing", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer-sepolia.vizing.com", + icon: "vizing", + standard: "EIP3091", + }, ], "28518": [ { - "name": "blockscout", - "url": "https://explorer.vizing.com", - "icon": "vizing", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.vizing.com", + icon: "vizing", + standard: "EIP3091", + }, ], "28528": [ { - "name": "blockscout", - "url": "https://blockscout.com/optimism/bedrock-alpha", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockscout.com/optimism/bedrock-alpha", + standard: "EIP3091", + }, ], "28882": [ { - "name": "Bobascan", - "url": "https://testnet.bobascan.com", - "standard": "none" - } + name: "Bobascan", + url: "https://testnet.bobascan.com", + standard: "none", + }, ], "29112": [ { - "name": "blockscout", - "url": "https://testnet.explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.explorer.hychain.com", + icon: "hychain", + standard: "EIP3091", + }, ], "29536": [ { - "name": "KaiChain Explorer", - "url": "https://testnet-explorer.kaichain.net", - "standard": "EIP3091" - } + name: "KaiChain Explorer", + url: "https://testnet-explorer.kaichain.net", + standard: "EIP3091", + }, ], "29548": [ { - "name": "MCH Verse Explorer", - "url": "https://explorer.oasys.mycryptoheroes.net", - "standard": "EIP3091" - } + name: "MCH Verse Explorer", + url: "https://explorer.oasys.mycryptoheroes.net", + standard: "EIP3091", + }, ], "30067": [ { - "name": "Piece Scan", - "url": "https://testnet-scan.piecenetwork.com", - "standard": "EIP3091" - } + name: "Piece Scan", + url: "https://testnet-scan.piecenetwork.com", + standard: "EIP3091", + }, ], "30088": [ { - "name": "MiYou block explorer", - "url": "https://myscan.miyou.io", - "standard": "EIP3091" - } + name: "MiYou block explorer", + url: "https://myscan.miyou.io", + standard: "EIP3091", + }, ], "30103": [ { - "name": "canxium explorer", - "url": "https://cerium-explorer.canxium.net", - "standard": "none" - } + name: "canxium explorer", + url: "https://cerium-explorer.canxium.net", + standard: "none", + }, ], "30730": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } + name: "mevm explorer", + url: "https://explorer.movementlabs.xyz", + standard: "none", + }, ], "30731": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } + name: "mevm explorer", + url: "https://explorer.movementlabs.xyz", + standard: "none", + }, ], "30732": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } + name: "mevm explorer", + url: "https://explorer.movementlabs.xyz", + standard: "none", + }, ], "31223": [ { - "name": "cloudtxscan", - "url": "https://scan.cloudtx.finance", - "standard": "EIP3091" - } + name: "cloudtxscan", + url: "https://scan.cloudtx.finance", + standard: "EIP3091", + }, ], "31224": [ { - "name": "cloudtxexplorer", - "url": "https://explorer.cloudtx.finance", - "standard": "EIP3091" - } + name: "cloudtxexplorer", + url: "https://explorer.cloudtx.finance", + standard: "EIP3091", + }, ], "31337": [ { - "name": "GoChain Testnet Explorer", - "url": "https://testnet-explorer.gochain.io", - "standard": "EIP3091" - } + 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" - } + name: "Evoke SmartChain Testnet Explorer", + url: "https://testnet-explorer.evokescan.org", + standard: "EIP3091", + }, ], "31753": [ { - "name": "Xchain Mainnet Explorer", - "url": "https://xchainscan.com", - "standard": "EIP3091" - } + name: "Xchain Mainnet Explorer", + url: "https://xchainscan.com", + standard: "EIP3091", + }, ], "31754": [ { - "name": "Xchain Testnet Explorer", - "url": "https://xchaintest.net", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Brise Scan", + url: "https://brisescan.com", + icon: "brise", + standard: "EIP3091", + }, ], "32659": [ { - "name": "fsnscan", - "url": "https://fsnscan.com", - "icon": "fsnscan", - "standard": "EIP3091" - } + name: "fsnscan", + url: "https://fsnscan.com", + icon: "fsnscan", + standard: "EIP3091", + }, ], "32769": [ { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } + 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" - } + 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" - } + name: "Entangle Mainnet Explorer", + url: "https://explorer.entangle.fi", + standard: "none", + }, ], "33101": [ { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } + name: "Zilliqa EVM Explorer", + url: "https://evmx.zilliqa.com", + standard: "none", + }, ], "33210": [ { - "name": "CLOUDVERSE Explorer", - "url": "https://subnets.avax.network/cloudverse", - "standard": "EIP3091" - } + name: "CLOUDVERSE Explorer", + url: "https://subnets.avax.network/cloudverse", + standard: "EIP3091", + }, ], "33333": [ { - "name": "avescan", - "url": "https://avescan.io", - "icon": "avescan", - "standard": "EIP3091" - } + name: "avescan", + url: "https://avescan.io", + icon: "avescan", + standard: "EIP3091", + }, ], "33385": [ { - "name": "Zilliqa EVM Devnet Explorer", - "url": "https://otterscan.devnet.zilliqa.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Funki Mainnet Explorer", + url: "https://mainnet.funkichain.com", + standard: "none", + }, ], "34443": [ { - "name": "modescout", - "url": "https://explorer.mode.network", - "standard": "none" - } + name: "modescout", + url: "https://explorer.mode.network", + standard: "none", + }, ], "35011": [ { - "name": "J2O Taro Explorer", - "url": "https://exp.j2o.io", - "icon": "j2otaro", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Q explorer", + url: "https://explorer.qtestnet.org", + icon: "q", + standard: "EIP3091", + }, ], "38400": [ { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } + name: "rangersscan", + url: "https://scan.rangersprotocol.com", + standard: "none", + }, ], "38401": [ { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } + name: "rangersscan-robin", + url: "https://robin-rangersscan.rangersprotocol.com", + standard: "none", + }, ], "39656": [ { - "name": "Primal Network", - "url": "https://prmscan.org", - "standard": "EIP3091" - } + name: "Primal Network", + url: "https://prmscan.org", + standard: "EIP3091", + }, ], "39815": [ { - "name": "ohoscan", - "url": "https://ohoscan.com", - "icon": "ohoscan", - "standard": "EIP3091" - } + name: "ohoscan", + url: "https://ohoscan.com", + icon: "ohoscan", + standard: "EIP3091", + }, ], "41500": [ { - "name": "Opulent-X BETA Explorer", - "url": "https://explorer.opulent-x.com", - "standard": "none" - } + 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" - } + name: "AgentLayer Testnet Explorer", + url: "https://testnet-explorer.agentlayer.xyz", + standard: "EIP3091", + }, ], "42161": [ { - "name": "Arbiscan", - "url": "https://arbiscan.io", - "standard": "EIP3091" + name: "Arbiscan", + url: "https://arbiscan.io", + standard: "EIP3091", }, { - "name": "Arbitrum Explorer", - "url": "https://explorer.arbitrum.io", - "standard": "EIP3091" + name: "Arbitrum Explorer", + url: "https://explorer.arbitrum.io", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://arbitrum.dex.guru", - "icon": "dexguru", - "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: "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" - } + name: "dexguru", + url: "https://nova.dex.guru", + icon: "dexguru", + standard: "EIP3091", + }, ], "42220": [ { - "name": "Celoscan", - "url": "https://celoscan.io", - "standard": "EIP3091" + name: "Celoscan", + url: "https://celoscan.io", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://explorer.celo.org", - "standard": "none" - } + name: "blockscout", + url: "https://explorer.celo.org", + standard: "none", + }, ], "42261": [ { - "name": "Oasis Emerald Testnet Explorer", - "url": "https://explorer.oasis.io/testnet/emerald", - "standard": "EIP3091" - } + 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" - } + name: "Oasis Emerald Explorer", + url: "https://explorer.oasis.io/mainnet/emerald", + standard: "EIP3091", + }, ], "42355": [ { - "name": "GoldXChain Explorer", - "url": "https://explorer.goldxchain.io", - "standard": "EIP3091" - } + name: "GoldXChain Explorer", + url: "https://explorer.goldxchain.io", + standard: "EIP3091", + }, ], "42766": [ { - "name": "blockscout", - "url": "https://scan.zkfair.io", - "icon": "zkfair", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://scan.zkfair.io", + icon: "zkfair", + standard: "EIP3091", + }, ], "42793": [ { - "name": "Etherlink Explorer", - "url": "https://explorer.etherlink.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "kintoscan", + url: "http://35.215.120.180:4000", + standard: "EIP3091", + }, ], "43113": [ { - "name": "snowtrace", - "url": "https://testnet.snowtrace.io", - "standard": "EIP3091" - } + name: "snowtrace", + url: "https://testnet.snowtrace.io", + standard: "EIP3091", + }, ], "43114": [ { - "name": "snowtrace", - "url": "https://snowtrace.io", - "standard": "EIP3091" - } + name: "snowtrace", + url: "https://snowtrace.io", + standard: "EIP3091", + }, ], "43851": [ { - "name": "ZKFair Testnet Info", - "url": "https://testnet-scan.zkfair.io", - "icon": "zkfair", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://frenscan.io", + icon: "fren", + standard: "EIP3091", + }, ], "44445": [ { - "name": "Quantum Explorer", - "url": "https://qtm.avescoin.io", - "icon": "quantum", - "standard": "EIP3091" - } + name: "Quantum Explorer", + url: "https://qtm.avescoin.io", + icon: "quantum", + standard: "EIP3091", + }, ], "44787": [ { - "name": "Alfajoresscan", - "url": "https://alfajores.celoscan.io", - "standard": "EIP3091" - } + name: "Alfajoresscan", + url: "https://alfajores.celoscan.io", + standard: "EIP3091", + }, ], "45000": [ { - "name": "autobahn explorer", - "url": "https://explorer.autobahn.network", - "icon": "autobahn", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://swamps-explorer.tc.l2aas.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "45510": [ { - "name": "Deelance Mainnet Explorer", - "url": "https://deescan.com", - "standard": "EIP3091" - } + name: "Deelance Mainnet Explorer", + url: "https://deescan.com", + standard: "EIP3091", + }, ], "46688": [ { - "name": "fsnscan", - "url": "https://testnet.fsnscan.com", - "icon": "fsnscan", - "standard": "EIP3091" - } + name: "fsnscan", + url: "https://testnet.fsnscan.com", + icon: "fsnscan", + standard: "EIP3091", + }, ], "47805": [ { - "name": "rei-scan", - "url": "https://scan.rei.network", - "standard": "none" - } + name: "rei-scan", + url: "https://scan.rei.network", + standard: "none", + }, ], "48795": [ { - "name": "SPACE Explorer", - "url": "https://subnets-test.avax.network/space", - "standard": "EIP3091" - } + name: "SPACE Explorer", + url: "https://subnets-test.avax.network/space", + standard: "EIP3091", + }, ], "48899": [ { - "name": "Zircuit", - "url": "https://explorer.zircuit.com", - "icon": "zircuit", - "standard": "none" - } + name: "Zircuit", + url: "https://explorer.zircuit.com", + icon: "zircuit", + standard: "none", + }, ], "49049": [ { - "name": "Wire Explorer", - "url": "https://floripa-explorer.wireshape.org", - "standard": "EIP3091" - } + name: "Wire Explorer", + url: "https://floripa-explorer.wireshape.org", + standard: "EIP3091", + }, ], "49088": [ { - "name": "explorer-thebifrost", - "url": "https://explorer.testnet.bifrostnetwork.com", - "standard": "EIP3091" - } + name: "explorer-thebifrost", + url: "https://explorer.testnet.bifrostnetwork.com", + standard: "EIP3091", + }, ], "49321": [ { - "name": "blockscout", - "url": "https://testnet.gunzscan.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.gunzscan.io", + standard: "EIP3091", + }, ], "50005": [ { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.yooldo-verse.xyz", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "LumozTestnetInfo", + url: "https://lumoz.info", + icon: "opside-new", + standard: "EIP3091", + }, ], "51712": [ { - "name": "Sardis", - "url": "https://contract-mainnet.sardisnetwork.com", - "standard": "EIP3091" - } + name: "Sardis", + url: "https://contract-mainnet.sardisnetwork.com", + standard: "EIP3091", + }, ], "52014": [ { - "name": "blockscout", - "url": "https://blockexplorer.electroneum.com", - "icon": "electroneum", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockexplorer.electroneum.com", + icon: "electroneum", + standard: "EIP3091", + }, ], "53277": [ { - "name": "DOID Scan", - "url": "https://scan.doid.tech", - "icon": "doid", - "standard": "EIP3091" - } + name: "DOID Scan", + url: "https://scan.doid.tech", + icon: "doid", + standard: "EIP3091", + }, ], "53302": [ { - "name": "seedscout", - "url": "https://sepolia-explorer.superseed.xyz", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ethernal", + url: "https://explorer.dfkchain.com", + icon: "ethereum", + standard: "none", + }, ], "54211": [ { - "name": "TestEdge HAQQ Explorer", - "url": "https://explorer.testedge2.haqq.network", - "standard": "EIP3091" - } + name: "TestEdge HAQQ Explorer", + url: "https://explorer.testedge2.haqq.network", + standard: "EIP3091", + }, ], "54321": [ { - "name": "toronet_explorer", - "url": "https://testnet.toronet.org", - "standard": "none" - } + name: "toronet_explorer", + url: "https://testnet.toronet.org", + standard: "none", + }, ], "54555": [ { - "name": "photon_testnet_explorer", - "url": "https://testnet.photonchain.io", - "standard": "none" - } + name: "photon_testnet_explorer", + url: "https://testnet.photonchain.io", + standard: "none", + }, ], "55004": [ { - "name": "blockscout", - "url": "https://explorer.titan.tokamak.network", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.titan.tokamak.network", + standard: "EIP3091", + }, ], "55555": [ { - "name": "reiscan", - "url": "https://reiscan.com", - "standard": "EIP3091" - } + name: "reiscan", + url: "https://reiscan.com", + standard: "EIP3091", + }, ], "55556": [ { - "name": "reiscan", - "url": "https://testnet.reiscan.com", - "standard": "EIP3091" - } + name: "reiscan", + url: "https://testnet.reiscan.com", + standard: "EIP3091", + }, ], "56026": [ { - "name": "Lambda Chain Mainnet Explorer", - "url": "https://scan.lambda.im", - "standard": "EIP3091" - } + name: "Lambda Chain Mainnet Explorer", + url: "https://scan.lambda.im", + standard: "EIP3091", + }, ], "56288": [ { - "name": "Boba BNB block explorer", - "url": "https://bobascan.com", - "standard": "none" - } + name: "Boba BNB block explorer", + url: "https://bobascan.com", + standard: "none", + }, ], "56400": [ { - "name": "TESTNETZER Explorer", - "url": "https://subnets-test.avax.network/testnetzer", - "standard": "EIP3091" - } + name: "TESTNETZER Explorer", + url: "https://subnets-test.avax.network/testnetzer", + standard: "EIP3091", + }, ], "56789": [ { - "name": "novascan", - "url": "https://novascan.velo.org", - "standard": "EIP3091" - } + name: "novascan", + url: "https://novascan.velo.org", + standard: "EIP3091", + }, ], "56797": [ { - "name": "DOID Testnet Scan", - "url": "https://scan.testnet.doid.tech", - "icon": "doid", - "standard": "EIP3091" - } + 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" - } + name: "Rollux Testnet Explorer", + url: "https://rollux.tanenbaum.io", + standard: "EIP3091", + }, ], "57451": [ { - "name": "coinsecnetwork", - "url": "https://explorer.coinsec.network", - "standard": "EIP3091" - } + name: "coinsecnetwork", + url: "https://explorer.coinsec.network", + standard: "EIP3091", + }, ], "58008": [ { - "name": "blockscout", - "url": "https://explorer.sepolia.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } + 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: "Etherscan", + url: "https://goerli.lineascan.build", + standard: "EIP3091", + icon: "linea", }, { - "name": "Blockscout", - "url": "https://explorer.goerli.linea.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: "Etherscan", + url: "https://sepolia.lineascan.build", + standard: "EIP3091", + icon: "linea", }, { - "name": "Blockscout", - "url": "https://explorer.sepolia.linea.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: "Etherscan", + url: "https://lineascan.build", + standard: "EIP3091", + icon: "linea", }, { - "name": "Blockscout", - "url": "https://explorer.linea.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" - } + name: "L2scan", + url: "https://linea.l2scan.co", + standard: "EIP3091", + icon: "linea", + }, ], "59971": [ { - "name": "Genesys Scan", - "url": "https://genesysscan.io", - "icon": "genesyscode", - "standard": "none" - } + name: "Genesys Scan", + url: "https://genesysscan.io", + icon: "genesyscode", + standard: "none", + }, ], "60000": [ { - "name": "thinkiumscan", - "url": "https://test0.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://test0.thinkiumscan.net", + standard: "EIP3091", + }, ], "60001": [ { - "name": "thinkiumscan", - "url": "https://test1.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://test1.thinkiumscan.net", + standard: "EIP3091", + }, ], "60002": [ { - "name": "thinkiumscan", - "url": "https://test2.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://test2.thinkiumscan.net", + standard: "EIP3091", + }, ], "60103": [ { - "name": "thinkiumscan", - "url": "https://test103.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://test103.thinkiumscan.net", + standard: "EIP3091", + }, ], "60808": [ { - "name": "bobscout", - "url": "https://explorer.gobob.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "bobscout", + url: "https://explorer.gobob.xyz", + icon: "blockscout", + standard: "EIP3091", + }, ], "61406": [ { - "name": "KaiChain Explorer", - "url": "https://explorer.kaichain.net", - "standard": "EIP3091" - } + name: "KaiChain Explorer", + url: "https://explorer.kaichain.net", + standard: "EIP3091", + }, ], "61800": [ { - "name": "AxelChain Dev-Net Explorer", - "url": "https://devexplorer2.viacube.com", - "standard": "EIP3091" - } + name: "AxelChain Dev-Net Explorer", + url: "https://devexplorer2.viacube.com", + standard: "EIP3091", + }, ], "61803": [ { - "name": "eticascan", - "url": "https://eticascan.org", - "standard": "EIP3091" + name: "eticascan", + url: "https://eticascan.org", + standard: "EIP3091", }, { - "name": "eticastats", - "url": "http://explorer.etica-stats.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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Scolscan Explorer", + url: "https://explorer.scolcoin.com", + standard: "EIP3091", + }, ], "66988": [ { - "name": "JanusNetwork Testnet Explorer", - "url": "https://beta.scan.janusnetwork.io", - "standard": "none" - } + name: "JanusNetwork Testnet Explorer", + url: "https://beta.scan.janusnetwork.io", + standard: "none", + }, ], "68770": [ { - "name": "DM2Verse Explorer", - "url": "https://explorer.dm2verse.dmm.com", - "standard": "EIP3091" - } + name: "DM2Verse Explorer", + url: "https://explorer.dm2verse.dmm.com", + standard: "EIP3091", + }, ], "69420": [ { - "name": "Condrieu explorer", - "url": "https://explorer.condrieu.ethdevops.io", - "standard": "none" - } + name: "Condrieu explorer", + url: "https://explorer.condrieu.ethdevops.io", + standard: "none", + }, ], "70000": [ { - "name": "thinkiumscan", - "url": "https://chain0.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://chain0.thinkiumscan.net", + standard: "EIP3091", + }, ], "70001": [ { - "name": "thinkiumscan", - "url": "https://chain1.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://chain1.thinkiumscan.net", + standard: "EIP3091", + }, ], "70002": [ { - "name": "thinkiumscan", - "url": "https://chain2.thinkiumscan.net", - "standard": "EIP3091" - } + name: "thinkiumscan", + url: "https://chain2.thinkiumscan.net", + standard: "EIP3091", + }, ], "70103": [ { - "name": "thinkiumscan", - "url": "https://chain103.thinkiumscan.net", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "GWScan Block Explorer", + url: "https://v1.testnet.gwscan.com", + standard: "none", + }, ], "71402": [ { - "name": "GWScan Block Explorer", - "url": "https://v1.gwscan.com", - "standard": "none" - } + name: "GWScan Block Explorer", + url: "https://v1.gwscan.com", + standard: "none", + }, ], "72778": [ { - "name": "ankara", - "url": "https://explorer.ankara-cagacrypto.com", - "standard": "EIP3091" - } + name: "ankara", + url: "https://explorer.ankara-cagacrypto.com", + standard: "EIP3091", + }, ], "72992": [ { - "name": "GrokScan", - "url": "https://mainnet-explorer.grokchain.dev", - "standard": "none" - } + name: "GrokScan", + url: "https://mainnet-explorer.grokchain.dev", + standard: "none", + }, ], "73114": [ { - "name": "ICB Tesnet Explorer", - "url": "https://testnet.icbscan.io", - "standard": "EIP3091" - } + name: "ICB Tesnet Explorer", + url: "https://testnet.icbscan.io", + standard: "EIP3091", + }, ], "73115": [ { - "name": "ICB Explorer", - "url": "https://icbscan.io", - "standard": "EIP3091" - } + name: "ICB Explorer", + url: "https://icbscan.io", + standard: "EIP3091", + }, ], "73927": [ { - "name": "mvmscan", - "url": "https://scan.mvm.dev", - "icon": "mvm", - "standard": "EIP3091" - } + name: "mvmscan", + url: "https://scan.mvm.dev", + icon: "mvm", + standard: "EIP3091", + }, ], "75000": [ { - "name": "ResinScan", - "url": "https://explorer.resincoin.dev", - "standard": "none" - } + name: "ResinScan", + url: "https://explorer.resincoin.dev", + standard: "none", + }, ], "75512": [ { - "name": "Geek Explorer", - "url": "https://explorer.geekout-pte.com", - "standard": "EIP3091" - } + 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" - } + name: "Geek Testnet Explorer", + url: "https://explorer-testnet.geekout-pte.com", + standard: "EIP3091", + }, ], "77001": [ { - "name": "BORAchainscope", - "url": "https://scope.boraportal.com", - "standard": "EIP3091" - } + name: "BORAchainscope", + url: "https://scope.boraportal.com", + standard: "EIP3091", + }, ], "77238": [ { - "name": "Foundry Scan Testnet", - "url": "https://testnet-explorer.foundryscan.org", - "standard": "EIP3091" - } + name: "Foundry Scan Testnet", + url: "https://testnet-explorer.foundryscan.org", + standard: "EIP3091", + }, ], "77612": [ { - "name": "ventionscan", - "url": "https://ventionscan.io", - "standard": "EIP3091" - } + name: "ventionscan", + url: "https://ventionscan.io", + standard: "EIP3091", + }, ], "77777": [ { - "name": "toronet_explorer", - "url": "https://toronet.org/explorer", - "standard": "none" - } + name: "toronet_explorer", + url: "https://toronet.org/explorer", + standard: "none", + }, ], "78281": [ { - "name": "Dragonfly Blockscout", - "url": "https://blockscout.dragonfly.hexapod.network", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Gold Smart Chain", + url: "https://testnet.goldsmartchain.com", + standard: "EIP3091", + }, ], "80001": [ { - "name": "polygonscan", - "url": "https://mumbai.polygonscan.com", - "standard": "EIP3091" - } + name: "polygonscan", + url: "https://mumbai.polygonscan.com", + standard: "EIP3091", + }, ], "80002": [ { - "name": "polygonamoy", - "url": "https://www.oklink.com/amoy", - "standard": "EIP3091" - } + name: "polygonamoy", + url: "https://www.oklink.com/amoy", + standard: "EIP3091", + }, ], "80084": [ { - "name": "Beratrail", - "url": "https://bartio.beratrail.io", - "icon": "berachain", - "standard": "none" - } + name: "Beratrail", + url: "https://bartio.beratrail.io", + icon: "berachain", + standard: "none", + }, ], "80085": [ { - "name": "Beratrail", - "url": "https://artio.beratrail.io", - "icon": "berachain", - "standard": "none" - } + name: "Beratrail", + url: "https://artio.beratrail.io", + icon: "berachain", + standard: "none", + }, ], "80096": [ { - "name": "blockscout", - "url": "https://hizoco.net:38443", - "standard": "none" - } + name: "blockscout", + url: "https://hizoco.net:38443", + standard: "none", + }, ], "81041": [ { - "name": "nordek", - "url": "https://nordekscan.com", - "standard": "EIP3091" - } + name: "nordek", + url: "https://nordekscan.com", + standard: "EIP3091", + }, ], "81457": [ { - "name": "Blastscan", - "url": "https://blastscan.io", - "icon": "blast", - "standard": "EIP3091" + name: "Blastscan", + url: "https://blastscan.io", + icon: "blast", + standard: "EIP3091", }, { - "name": "Blast Explorer", - "url": "https://blastexplorer.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" - } + name: "Quantum Scan Mainnet", + url: "https://quantumscan.org", + standard: "EIP3091", + }, ], "82459": [ { - "name": "SLN Testnet Explorer", - "url": "https://explorer.test.smartlayer.network", - "standard": "EIP3091" - } + name: "SLN Testnet Explorer", + url: "https://explorer.test.smartlayer.network", + standard: "EIP3091", + }, ], "83872": [ { - "name": "Zedscan", - "url": "http://zedscan.net", - "standard": "EIP3091" - } + name: "Zedscan", + url: "http://zedscan.net", + standard: "EIP3091", + }, ], "84531": [ { - "name": "basescan", - "url": "https://goerli.basescan.org", - "standard": "none" + name: "basescan", + url: "https://goerli.basescan.org", + standard: "none", }, { - "name": "basescout", - "url": "https://base-goerli.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: "basescout", + url: "https://base-goerli.blockscout.com", + icon: "blockscout", + standard: "EIP3091", }, { - "name": "dexguru", - "url": "https://base-goerli.dex.guru", - "icon": "dexguru", - "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" - } + 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" - } + name: "Aerie Explorer", + url: "https://explorer.aerielab.io", + icon: "aerie", + standard: "EIP3091", + }, ], "88002": [ { - "name": "Nautscan", - "url": "https://proteus.nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" - } + name: "Nautscan", + url: "https://proteus.nautscan.com", + standard: "EIP3091", + icon: "nautilus", + }, ], "88559": [ { - "name": "inoai live", - "url": "https://inoai.live", - "standard": "none" - } + name: "inoai live", + url: "https://inoai.live", + standard: "none", + }, ], "88817": [ { - "name": "explorer-testnet", - "url": "https://explorer-testnet.unit0.dev", - "standard": "EIP3091" - } + name: "explorer-testnet", + url: "https://explorer-testnet.unit0.dev", + standard: "EIP3091", + }, ], "88819": [ { - "name": "explorer-stagenet", - "url": "https://explorer-stagenet.unit0.dev", - "standard": "EIP3091" - } + name: "explorer-stagenet", + url: "https://explorer-stagenet.unit0.dev", + standard: "EIP3091", + }, ], "88882": [ { - "name": "spicy-explorer", - "url": "https://testnet.chiliscan.com", - "standard": "EIP3091" - } + name: "spicy-explorer", + url: "https://testnet.chiliscan.com", + standard: "EIP3091", + }, ], "88888": [ { - "name": "chiliscan", - "url": "https://chiliscan.com", - "standard": "EIP3091" + name: "chiliscan", + url: "https://chiliscan.com", + standard: "EIP3091", }, { - "name": "chilizscan", - "url": "https://scan.chiliz.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" - } + 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" - } + 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" - } + name: "Nautscan", + url: "https://triton.nautscan.com", + standard: "EIP3091", + }, ], "91120": [ { - "name": "MetaDAP Enterprise Mainnet explorer", - "url": "https://explorer.chain.metadap.io", - "standard": "none" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Green Chain Explorer", + url: "https://explorer.greenchain.app", + standard: "EIP3091", + }, ], "97970": [ { - "name": "OptimusZ7 Testnet Explorer", - "url": "https://testnet.optimusz7.com", - "standard": "EIP3091" - } + name: "OptimusZ7 Testnet Explorer", + url: "https://testnet.optimusz7.com", + standard: "EIP3091", + }, ], "99099": [ { - "name": "eLiberty Testnet", - "url": "https://testnet.eliberty.ngo", - "standard": "EIP3091" - } + name: "eLiberty Testnet", + url: "https://testnet.eliberty.ngo", + standard: "EIP3091", + }, ], "100001": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/0", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/0", + standard: "EIP3091", + }, ], "100002": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/1", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/1", + standard: "EIP3091", + }, ], "100003": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/2", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/2", + standard: "EIP3091", + }, ], "100004": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/3", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/3", + standard: "EIP3091", + }, ], "100005": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/4", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/4", + standard: "EIP3091", + }, ], "100006": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/5", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/5", + standard: "EIP3091", + }, ], "100007": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/6", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/6", + standard: "EIP3091", + }, ], "100008": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/7", - "standard": "EIP3091" - } + name: "quarkchain-mainnet", + url: "https://mainnet.quarkchain.io/7", + standard: "EIP3091", + }, ], "100009": [ { - "name": "VeChain Stats", - "url": "https://vechainstats.com", - "standard": "none" + name: "VeChain Stats", + url: "https://vechainstats.com", + standard: "none", }, { - "name": "VeChain Explorer", - "url": "https://explore.vechain.org", - "standard": "none" - } + name: "VeChain Explorer", + url: "https://explore.vechain.org", + standard: "none", + }, ], "100010": [ { - "name": "VeChain Explorer", - "url": "https://explore-testnet.vechain.org", - "standard": "none" - } + name: "VeChain Explorer", + url: "https://explore-testnet.vechain.org", + standard: "none", + }, ], "101010": [ { - "name": "blockscout", - "url": "https://stability.blockscout.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://stability.blockscout.com", + standard: "EIP3091", + }, ], "102031": [ { - "name": "blockscout", - "url": "https://creditcoin-testnet.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://creditcoin-testnet.blockscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "103090": [ { - "name": "blockscout", - "url": "https://scan.crystaleum.org", - "icon": "crystal", - "standard": "EIP3091" - } + 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" - } + name: "Masa Testnet Explorer", + url: "https://subnets-test.avax.network/masatestnet", + standard: "EIP3091", + }, ], "104566": [ { - "name": "KaspaClassic Explorer", - "url": "https://explorer.kaspaclassic.world", - "standard": "none" - } + name: "KaspaClassic Explorer", + url: "https://explorer.kaspaclassic.world", + standard: "none", + }, ], "105105": [ { - "name": "Stratis Explorer", - "url": "https://explorer.stratisevm.com", - "standard": "EIP3091" - } + name: "Stratis Explorer", + url: "https://explorer.stratisevm.com", + standard: "EIP3091", + }, ], "108801": [ { - "name": "BROChain Explorer", - "url": "https://explorer.brochain.org", - "standard": "EIP3091" - } + name: "BROChain Explorer", + url: "https://explorer.brochain.org", + standard: "EIP3091", + }, ], "110001": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/0", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/0", + standard: "EIP3091", + }, ], "110002": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/1", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/1", + standard: "EIP3091", + }, ], "110003": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/2", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/2", + standard: "EIP3091", + }, ], "110004": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/3", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/3", + standard: "EIP3091", + }, ], "110005": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/4", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/4", + standard: "EIP3091", + }, ], "110006": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/5", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/5", + standard: "EIP3091", + }, ], "110007": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/6", - "standard": "EIP3091" - } + name: "quarkchain-devnet", + url: "https://devnet.quarkchain.io/6", + standard: "EIP3091", + }, ], "110008": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/7", - "standard": "EIP3091" - } + 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" - } + 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 - 1", + url: "https://explorer.main.siberium.net", + icon: "siberium", + standard: "EIP3091", }, { - "name": "Siberium Mainnet Explorer - blockscout - 2", - "url": "https://explorer.main.siberium.net.ru", - "icon": "siberium", - "standard": "EIP3091" - } + name: "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" - } + name: "blockscout", + url: "https://explorer.re.al", + icon: "real", + standard: "EIP3091", + }, ], "112358": [ { - "name": "blockscout", - "url": "https://explorer.metachain.one", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Etherlink Testnet Explorer", + url: "https://testnet-explorer.etherlink.com", + standard: "EIP3091", + }, ], "131419": [ { - "name": "etndscan", - "url": "https://scan.etnd.pro", - "icon": "ETND", - "standard": "none" - } + name: "etndscan", + url: "https://scan.etnd.pro", + icon: "ETND", + standard: "none", + }, ], "132902": [ { - "name": "Form Testnet explorer", - "url": "https://testnet-explorer.form.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ICPlaza", + url: "https://browsemainnet.ic-plaza.org/index", + standard: "none", + }, ], "165279": [ { - "name": "Eclat Mainnet Explorer", - "url": "https://eclatscan.com", - "standard": "EIP3091" - } + name: "Eclat Mainnet Explorer", + url: "https://eclatscan.com", + standard: "EIP3091", + }, ], "167000": [ { - "name": "etherscan", - "url": "https://taikoscan.io", - "standard": "EIP3091" - } + name: "etherscan", + url: "https://taikoscan.io", + standard: "EIP3091", + }, ], "167008": [ { - "name": "blockscout", - "url": "https://explorer.katla.taiko.xyz", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.katla.taiko.xyz", + standard: "EIP3091", + }, ], "167009": [ { - "name": "blockscout", - "url": "https://blockscoutapi.hekla.taiko.xyz", - "standard": "EIP3091" + name: "blockscout", + url: "https://blockscoutapi.hekla.taiko.xyz", + standard: "EIP3091", }, { - "name": "routescan", - "url": "https://hekla.taikoscan.network", - "standard": "EIP3091" - } + name: "routescan", + url: "https://hekla.taikoscan.network", + standard: "EIP3091", + }, ], "188710": [ { - "name": "Bitica DPOS Blockchain Explorer", - "url": "https://biticablockchain.com", - "standard": "none" - } + name: "Bitica DPOS Blockchain Explorer", + url: "https://biticablockchain.com", + standard: "none", + }, ], "188881": [ { - "name": "CondorScan", - "url": "https://explorer.condor.systems", - "standard": "none" - } + name: "CondorScan", + url: "https://explorer.condor.systems", + standard: "none", + }, ], "200101": [ { - "name": "Blockscout", - "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } + 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" - } + 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" - } + name: "bitlayer testnet scan", + url: "https://testnet.btrscan.com", + standard: "EIP3091", + }, ], "200901": [ { - "name": "bitlayer mainnet scan", - "url": "https://www.btrscan.com", - "standard": "EIP3091" - } + name: "bitlayer mainnet scan", + url: "https://www.btrscan.com", + standard: "EIP3091", + }, ], "201018": [ { - "name": "alaya explorer", - "url": "https://scan.alaya.network", - "standard": "none" - } + name: "alaya explorer", + url: "https://scan.alaya.network", + standard: "none", + }, ], "201030": [ { - "name": "alaya explorer", - "url": "https://devnetscan.alaya.network", - "standard": "none" - } + name: "alaya explorer", + url: "https://devnetscan.alaya.network", + standard: "none", + }, ], "201804": [ { - "name": "Mythical Chain Explorer", - "url": "https://explorer.mythicalgames.com", - "icon": "mythical", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Auroria Testnet Explorer", + url: "https://auroria.explorer.stratisevm.com", + standard: "EIP3091", + }, ], "210425": [ { - "name": "PlatON explorer", - "url": "https://scan.platon.network", - "standard": "none" - } + name: "PlatON explorer", + url: "https://scan.platon.network", + standard: "none", + }, ], "220315": [ { - "name": "explorer masnet", - "url": "https://explorer.masnet.ai", - "standard": "EIP3091" - } + name: "explorer masnet", + url: "https://explorer.masnet.ai", + standard: "EIP3091", + }, ], "221230": [ { - "name": "Reapchain Dashboard", - "url": "https://dashboard.reapchain.org", - "icon": "reapchain", - "standard": "none" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://explorer.evm.hydration.cloud", + standard: "EIP3091", + }, ], "222555": [ { - "name": "DeepL Mainnet Explorer", - "url": "https://scan.deeplnetwork.org", - "icon": "deepl", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "Taf ECO Chain Mainnet", + url: "https://ecoscan.tafchain.com", + standard: "EIP3091", + }, ], "224422": [ { - "name": "CONET Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" - } + name: "CONET Scan", + url: "https://scan.conet.network", + standard: "EIP3091", + }, ], "224433": [ { - "name": "CONET Holesky Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" - } + name: "CONET Holesky Scan", + url: "https://scan.conet.network", + standard: "EIP3091", + }, ], "230315": [ { - "name": "HashKey Chain Testnet Explorer", - "url": "https://testnet.hashkeyscan.io", - "standard": "none" - } + 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" - } + 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" - } + name: "saakuru-explorer-testnet", + url: "https://explorer-testnet.saakuru.network", + standard: "EIP3091", + }, ], "256256": [ { - "name": "Mainnet Scan", - "url": "https://mainnet.scan.caduceus.foundation", - "standard": "none" - } + name: "Mainnet Scan", + url: "https://mainnet.scan.caduceus.foundation", + standard: "none", + }, ], "262371": [ { - "name": "Eclat Testnet Explorer", - "url": "https://testnet-explorer.eclatscan.com", - "standard": "EIP3091" - } + name: "Eclat Testnet Explorer", + url: "https://testnet-explorer.eclatscan.com", + standard: "EIP3091", + }, ], "271271": [ { - "name": "EgonCoin Testnet", - "url": "https://testnet.egonscan.com", - "standard": "EIP3091" - } + name: "EgonCoin Testnet", + url: "https://testnet.egonscan.com", + standard: "EIP3091", + }, ], "282828": [ { - "name": "zillscout", - "url": "https://sepolia.zillnet.io", - "icon": "zillion", - "standard": "EIP3091" - } + 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" - } + name: "One World Chain Mainnet Explorer", + url: "https://mainnet.oneworldchain.org", + standard: "EIP3091", + }, ], "313313": [ { - "name": "Testnet Scan", - "url": "https://explorer.saharaa.info", - "standard": "EIP3091" - } + name: "Testnet Scan", + url: "https://explorer.saharaa.info", + standard: "EIP3091", + }, ], "314159": [ { - "name": "Filscan - Calibration", - "url": "https://calibration.filscan.io", - "standard": "none" + name: "Filscan - Calibration", + url: "https://calibration.filscan.io", + standard: "none", }, { - "name": "Filscout - Calibration", - "url": "https://calibration.filscout.com/en", - "standard": "none" + name: "Filscout - Calibration", + url: "https://calibration.filscout.com/en", + standard: "none", }, { - "name": "Filfox - Calibration", - "url": "https://calibration.filfox.info", - "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: "Glif Explorer - Calibration", + url: "https://explorer.glif.io/?network=calibration", + standard: "none", }, { - "name": "Beryx", - "url": "https://beryx.zondax.ch", - "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" - } + 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" - } + 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" - } + 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" - } + name: "Bloom Genesis Mainnet", + url: "https://explorer.bloomgenesis.com", + standard: "EIP3091", + }, ], "333331": [ { - "name": "avescan", - "url": "https://testnet.avescoin.io", - "icon": "avescan", - "standard": "EIP3091" - } + name: "avescan", + url: "https://testnet.avescoin.io", + icon: "avescan", + standard: "EIP3091", + }, ], "333333": [ { - "name": "Nativ3 Test Explorer", - "url": "https://scantest.nativ3.network", - "standard": "EIP3091" - } + name: "Nativ3 Test Explorer", + url: "https://scantest.nativ3.network", + standard: "EIP3091", + }, ], "333666": [ { - "name": "blockscout", - "url": "https://testnet.oonescan.com", - "standard": "none" - } + name: "blockscout", + url: "https://testnet.oonescan.com", + standard: "none", + }, ], "333777": [ { - "name": "blockscout", - "url": "https://dev.oonescan.com", - "standard": "none" - } + name: "blockscout", + url: "https://dev.oonescan.com", + standard: "none", + }, ], "336655": [ { - "name": "UPchain Testnet Explorer", - "url": "https://explorer-testnet.uniport.network", - "icon": "up", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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://explorer.testnet.bitfinity.network", + icon: "bitfinity", + standard: "EIP3091", }, { - "name": "Bitfinity Testnet Block Explorer", - "url": "https://bitfinity-test.dex.guru", - "icon": "dexguru", - "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" - } + 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" - } + 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" - } + name: "HAP EVM Explorer (Blockscout)", + url: "https://blockscout-test.hap.land", + standard: "none", + icon: "hap", + }, ], "381931": [ { - "name": "metalscan", - "url": "https://metalscan.io", - "standard": "EIP3091" - } + name: "metalscan", + url: "https://metalscan.io", + standard: "EIP3091", + }, ], "381932": [ { - "name": "metalscan", - "url": "https://tahoe.metalscan.io", - "standard": "EIP3091" - } + name: "metalscan", + url: "https://tahoe.metalscan.io", + standard: "EIP3091", + }, ], "404040": [ { - "name": "Tipboxcoin", - "url": "https://tipboxcoin.net", - "standard": "EIP3091" - } + name: "Tipboxcoin", + url: "https://tipboxcoin.net", + standard: "EIP3091", + }, ], "413413": [ { - "name": "aiescan-testnet", - "icon": "aie", - "url": "https://testnet.aiescan.io", - "standard": "none" - } + 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" - } + 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" - } + 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" - } + 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: "arbiscan-testnet", + url: "https://testnet.arbiscan.io", + standard: "EIP3091", }, { - "name": "arbitrum-rinkeby", - "url": "https://rinkeby-explorer.arbitrum.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" - } + 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" - } + name: "Arbitrum Sepolia Rollup Testnet Explorer", + url: "https://sepolia-explorer.arbitrum.io", + standard: "EIP3091", + }, ], "424242": [ { - "name": "blockscout", - "url": "https://testnet.ftnscan.com", - "standard": "none" - } + name: "blockscout", + url: "https://testnet.ftnscan.com", + standard: "none", + }, ], "432201": [ { - "name": "Avalanche Subnet Testnet Explorer", - "url": "https://subnets-test.avax.network/dexalot", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "weelink-testnet", + url: "https://weelink.cloud/#/blockView/overview", + standard: "none", + }, ], "473861": [ { - "name": "ultraproscan", - "url": "https://ultraproscan.io", - "icon": "ultrapro", - "standard": "EIP3091" - } + name: "ultraproscan", + url: "https://ultraproscan.io", + icon: "ultrapro", + standard: "EIP3091", + }, ], "474142": [ { - "name": "SIDE SCAN", - "url": "https://sidescan.luniverse.io/1641349324562974539", - "standard": "none" - } + name: "SIDE SCAN", + url: "https://sidescan.luniverse.io/1641349324562974539", + standard: "none", + }, ], "504441": [ { - "name": "Playdapp Explorer", - "url": "https://subnets.avax.network/playdappne", - "standard": "EIP3091" - } + name: "Playdapp Explorer", + url: "https://subnets.avax.network/playdappne", + standard: "EIP3091", + }, ], "512512": [ { - "name": "Galaxy Scan", - "url": "https://galaxy.scan.caduceus.foundation", - "standard": "none" - } + name: "Galaxy Scan", + url: "https://galaxy.scan.caduceus.foundation", + standard: "none", + }, ], "513100": [ { - "name": "DisChain", - "url": "https://www.oklink.com/dis", - "standard": "EIP3091" - } + name: "DisChain", + url: "https://www.oklink.com/dis", + standard: "EIP3091", + }, ], "526916": [ { - "name": "DoCoin Community Chain Explorer", - "url": "https://explorer.docoin.shop", - "standard": "EIP3091" - } + name: "DoCoin Community Chain Explorer", + url: "https://explorer.docoin.shop", + standard: "EIP3091", + }, ], "534351": [ { - "name": "Scroll Sepolia Etherscan", - "url": "https://sepolia.scrollscan.com", - "standard": "EIP3091" - } + name: "Scroll Sepolia Etherscan", + url: "https://sepolia.scrollscan.com", + standard: "EIP3091", + }, ], "534352": [ { - "name": "Scrollscan", - "url": "https://scrollscan.com", - "standard": "EIP3091" - } + name: "Scrollscan", + url: "https://scrollscan.com", + standard: "EIP3091", + }, ], "534849": [ { - "name": "shinascan", - "url": "https://shinascan.shinarium.org", - "standard": "EIP3091" - } + name: "shinascan", + url: "https://shinascan.shinarium.org", + standard: "EIP3091", + }, ], "535037": [ { - "name": "bescscan", - "url": "https://Bescscan.io", - "standard": "EIP3091" - } + name: "bescscan", + url: "https://Bescscan.io", + standard: "EIP3091", + }, ], "552981": [ { - "name": "One World Chain Testnet Explorer", - "url": "https://testnet.oneworldchain.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "ECLIPSE Explorer", + url: "https://subnets-test.avax.network/eclipsecha", + standard: "EIP3091", + }, ], "622277": [ { - "name": "hypra", - "url": "https://explorer.hypra.network", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + name: "Atlas Testnet Scan", + url: "https://explorer.testnet.atl.network", + icon: "atlas", + standard: "EIP3091", + }, ], "641230": [ { - "name": "brnkscan", - "url": "https://brnkscan.bearnetwork.net", - "standard": "EIP3091" - } + name: "brnkscan", + url: "https://brnkscan.bearnetwork.net", + standard: "EIP3091", + }, ], "651940": [ { - "name": "Alltra SmartChain Explorer", - "url": "https://alltra.global", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Won Explorer", + url: "https://scan.wonnetwork.org", + standard: "EIP3091", + }, ], "696969": [ { - "name": "Galadriel Explorer", - "url": "https://explorer.galadriel.com", - "standard": "none" - } + name: "Galadriel Explorer", + url: "https://explorer.galadriel.com", + standard: "none", + }, ], "710420": [ { - "name": "TILTYARD Explorer", - "url": "https://subnets.avax.network/tiltyard", - "standard": "EIP3091" - } + name: "TILTYARD Explorer", + url: "https://subnets.avax.network/tiltyard", + standard: "EIP3091", + }, ], "713715": [ { - "name": "Seistream", - "url": "https://seistream.app", - "standard": "none" + name: "Seistream", + url: "https://seistream.app", + standard: "none", }, { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } + name: "Seitrace", + url: "https://seitrace.com", + standard: "EIP3091", + }, ], "721529": [ { - "name": "Eramscan", - "url": "https://eramscan.com", - "standard": "EIP3091" - } + name: "Eramscan", + url: "https://eramscan.com", + standard: "EIP3091", + }, ], "743111": [ { - "name": "blockscout", - "url": "https://testnet.explorer.hemi.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://testnet.explorer.hemi.xyz", + icon: "blockscout", + standard: "EIP3091", + }, ], "751230": [ { - "name": "brnktestscan", - "url": "https://brnktest-scan.bearnetwork.net", - "standard": "EIP3091" - } + name: "brnktestscan", + url: "https://brnktest-scan.bearnetwork.net", + standard: "EIP3091", + }, ], "761412": [ { - "name": "Miexs Smartchain Explorer", - "url": "https://miexs.com", - "standard": "EIP3091" - } + name: "Miexs Smartchain Explorer", + url: "https://miexs.com", + standard: "EIP3091", + }, ], "764984": [ { - "name": "Lamina1 Test Explorer", - "url": "https://subnets-test.avax.network/lamina1tes", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "tscscan", + url: "https://testnet.tscscan.io", + icon: "netxscan", + standard: "none", + }, ], "827431": [ { - "name": "CURVE Mainnet", - "url": "https://curvescan.io", - "standard": "EIP3091" - } + name: "CURVE Mainnet", + url: "https://curvescan.io", + standard: "EIP3091", + }, ], "839320": [ { - "name": "Primal Network Testnet", - "url": "https://testnet-explorer.prmscan.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + name: "BlocX Mainnet Explorer", + url: "https://explorer.blxscan.com", + icon: "blx", + standard: "none", + }, ], "888882": [ { - "name": "REXX Mainnet Explorer", - "url": "https://rexxnetwork.com", - "standard": "EIP3091" - } + name: "REXX Mainnet Explorer", + url: "https://rexxnetwork.com", + standard: "EIP3091", + }, ], "888888": [ { - "name": "Visionscan", - "url": "https://www.visionscan.org", - "standard": "EIP3091" - } + name: "Visionscan", + url: "https://www.visionscan.org", + standard: "EIP3091", + }, ], "900000": [ { - "name": "Posichain Explorer", - "url": "https://explorer.posichain.org", - "standard": "EIP3091" - } + name: "Posichain Explorer", + url: "https://explorer.posichain.org", + standard: "EIP3091", + }, ], "910000": [ { - "name": "Posichain Explorer Testnet", - "url": "https://explorer-testnet.posichain.org", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "JONO12 Explorer", + url: "https://subnets-test.avax.network/jono12", + standard: "EIP3091", + }, ], "955305": [ { - "name": "blockscout", - "url": "https://explorer.eluv.io", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://explorer.eluv.io", + standard: "EIP3091", + }, ], "978657": [ { - "name": "treasurescan", - "url": "https://testnet.treasurescan.io", - "icon": "treasure", - "standard": "EIP3091" - } + name: "treasurescan", + url: "https://testnet.treasurescan.io", + icon: "treasure", + standard: "EIP3091", + }, ], "984122": [ { - "name": "blockscout", - "url": "https://explorer.forma.art", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + name: "blockscout", + url: "https://explorer.sketchpad-1.forma.art", + icon: "blockscout", + standard: "EIP3091", + }, ], "988207": [ { - "name": "Ecrox Chain Explorer", - "url": "https://ecroxscan.com", - "standard": "EIP3091" - } + name: "Ecrox Chain Explorer", + url: "https://ecroxscan.com", + standard: "EIP3091", + }, ], "998899": [ { - "name": "supernet-testnet-explorer", - "url": "https://testnet-explorer.supernet.chaingames.io", - "standard": "EIP3091" - } + name: "supernet-testnet-explorer", + url: "https://testnet-explorer.supernet.chaingames.io", + standard: "EIP3091", + }, ], "999999": [ { - "name": "AMCAmChain explorer", - "url": "https://explorer.amchain.net", - "standard": "none" - } + 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" - } + 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" - } + 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: "Blockscout zKatana chain explorer", + url: "https://zkatana.blockscout.com", + standard: "EIP3091", }, { - "name": "Startale zKatana chain explorer", - "url": "https://zkatana.explorer.startale.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" - } + name: "blockscout", + url: "https://explorer.ethoprotocol.com", + standard: "none", + }, ], "1337702": [ { - "name": "kintsugi explorer", - "url": "https://explorer.kintsugi.themerge.dev", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "PlayFi Block Explorer", + url: "https://albireo-explorer.playfi.ai", + standard: "EIP3091", + }, ], "1637450": [ { - "name": "Xterio Testnet Explorer", - "url": "https://testnet.xterscan.io", - "standard": "EIP3091" - } + name: "Xterio Testnet Explorer", + url: "https://testnet.xterscan.io", + standard: "EIP3091", + }, ], "2021398": [ { - "name": "DeBank Chain Explorer", - "url": "https://explorer.testnet.debank.com", - "standard": "EIP3091" - } + name: "DeBank Chain Explorer", + url: "https://explorer.testnet.debank.com", + standard: "EIP3091", + }, ], "2099156": [ { - "name": "piscan", - "url": "https://piscan.plian.org/pchain", - "standard": "EIP3091" - } + name: "piscan", + url: "https://piscan.plian.org/pchain", + standard: "EIP3091", + }, ], "2206132": [ { - "name": "PlatON explorer", - "url": "https://devnet2scan.platon.network", - "standard": "none" - } + name: "PlatON explorer", + url: "https://devnet2scan.platon.network", + standard: "none", + }, ], "3397901": [ { - "name": "Funki Sepolia Sandbox Explorer", - "url": "https://sepolia-sandbox.funkichain.com", - "standard": "none" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "Moonchain Geneva Testnet", + url: "https://geneva-explorer.moonchain.com", + standard: "EIP3091", + }, ], "5201420": [ { - "name": "blockscout", - "url": "https://blockexplorer.thesecurityteam.rocks", - "icon": "electroneum", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://blockexplorer.thesecurityteam.rocks", + icon: "electroneum", + standard: "EIP3091", + }, ], "5318008": [ { - "name": "reactscan", - "url": "https://kopli.reactscan.net", - "standard": "none" - } + 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 EVM explorer (Blockscout)", + url: "https://txe.imversed.network", + icon: "imversed", + standard: "EIP3091", }, { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-c.imversed.com", - "icon": "imversed", - "standard": "none" - } + name: "Imversed 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 EVM Explorer (Blockscout)", + url: "https://txe-test.imversed.network", + icon: "imversed", + standard: "EIP3091", }, { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-t.imversed.com", - "icon": "imversed", - "standard": "none" - } + name: "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" - } + 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" - } + 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" - } + 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" - } + name: "saakuru-explorer", + url: "https://explorer.saakuru.network", + standard: "EIP3091", + }, ], "7355310": [ { - "name": "openvessel-mainnet", - "url": "https://mainnet-explorer.openvessel.io", - "standard": "none" - } + 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" - } + 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" - } + name: "Zora Network Explorer", + url: "https://explorer.zora.energy", + standard: "EIP3091", + }, ], "8007736": [ { - "name": "piscan", - "url": "https://piscan.plian.org/child_0", - "standard": "EIP3091" - } + 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" - } + name: "Fhenix Helium Explorer (Blockscout)", + url: "https://explorer.helium.fhenix.zone", + standard: "EIP3091", + }, ], "8080808": [ { - "name": "Hokum Explorer", - "url": "https://explorer.hokum.gg", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "piscan", + url: "https://testnet.plian.org/child_test", + standard: "EIP3091", + }, ], "10101010": [ { - "name": "Soverun", - "url": "https://explorer.soverun.com", - "standard": "EIP3091" - } + name: "Soverun", + url: "https://explorer.soverun.com", + standard: "EIP3091", + }, ], "10241025": [ { - "name": "Hal Explorer", - "url": "https://hal-explorer.alienxchain.io", - "standard": "EIP3091" - } + name: "Hal Explorer", + url: "https://hal-explorer.alienxchain.io", + standard: "EIP3091", + }, ], "11155111": [ { - "name": "etherscan-sepolia", - "url": "https://sepolia.etherscan.io", - "standard": "EIP3091" + name: "etherscan-sepolia", + url: "https://sepolia.etherscan.io", + standard: "EIP3091", }, { - "name": "otterscan-sepolia", - "url": "https://sepolia.otterscan.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" - } + 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" - } + 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" - } + name: "anduschain explorer", + url: "https://explorer.anduschain.io", + icon: "daon", + standard: "none", + }, ], "16658437": [ { - "name": "piscan", - "url": "https://testnet.plian.org/testnet", - "standard": "EIP3091" - } + name: "piscan", + url: "https://testnet.plian.org/testnet", + standard: "EIP3091", + }, ], "17000920": [ { - "name": "Lambda Chain Testnet Explorer", - "url": "https://testscan.lambda.im", - "standard": "EIP3091" - } + name: "Lambda Chain Testnet Explorer", + url: "https://testscan.lambda.im", + standard: "EIP3091", + }, ], "20180427": [ { - "name": "blockscout", - "url": "https://stability-testnet.blockscout.com", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://stability-testnet.blockscout.com", + standard: "EIP3091", + }, ], "20180430": [ { - "name": "spectrum", - "url": "https://spectrum.pub", - "standard": "none" - } + name: "spectrum", + url: "https://spectrum.pub", + standard: "none", + }, ], "20181205": [ { - "name": "qkiscan", - "url": "https://qkiscan.io", - "standard": "EIP3091" - } + name: "qkiscan", + url: "https://qkiscan.io", + standard: "EIP3091", + }, ], "20201022": [ { - "name": "Pego Network Explorer", - "url": "https://scan.pego.network", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "Hokum Explorer", + url: "https://testnet-explorer.hokum.gg", + standard: "EIP3091", + }, ], "22052002": [ { - "name": "Excelon explorer", - "url": "https://explorer.excelon.io", - "standard": "EIP3091" - } + name: "Excelon explorer", + url: "https://explorer.excelon.io", + standard: "EIP3091", + }, ], "27082017": [ { - "name": "exlscan", - "url": "https://testnet-explorer.exlscan.com", - "icon": "exl", - "standard": "EIP3091" - } + name: "exlscan", + url: "https://testnet-explorer.exlscan.com", + icon: "exl", + standard: "EIP3091", + }, ], "27082022": [ { - "name": "exlscan", - "url": "https://exlscan.com", - "icon": "exl", - "standard": "EIP3091" - } + name: "exlscan", + url: "https://exlscan.com", + icon: "exl", + standard: "EIP3091", + }, ], "28122024": [ { - "name": "scan-testnet", - "url": "https://scanv2-testnet.ancient8.gg", - "standard": "EIP3091" - } + name: "scan-testnet", + url: "https://scanv2-testnet.ancient8.gg", + standard: "EIP3091", + }, ], "29032022": [ { - "name": "FLXExplorer", - "url": "https://explorer.flaexchange.top", - "standard": "EIP3091" - } + name: "FLXExplorer", + url: "https://explorer.flaexchange.top", + standard: "EIP3091", + }, ], "37084624": [ { - "name": "Blockscout", - "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } + 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" - } + name: "TravelSong", + url: "https://www.beastkingdom.io/travelsong", + standard: "EIP3091", + }, ], "43214913": [ { - "name": "maistesntet", - "url": "http://174.138.9.169:3006/?network=maistesntet", - "standard": "none" - } + name: "maistesntet", + url: "http://174.138.9.169:3006/?network=maistesntet", + standard: "none", + }, ], "65010002": [ { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } + name: "autonity-blockscout", + url: "https://bakerloo.autonity.org", + standard: "EIP3091", + }, ], "65100002": [ { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } + name: "autonity-blockscout", + url: "https://piccadilly.autonity.org", + standard: "EIP3091", + }, ], "68840142": [ { - "name": "Frame Testnet Explorer", - "url": "https://explorer.testnet.frame.xyz", - "standard": "EIP3091" - } + name: "Frame Testnet Explorer", + url: "https://explorer.testnet.frame.xyz", + standard: "EIP3091", + }, ], "77787778": [ { - "name": "blockscout", - "url": "https://test.0xhashscan.io", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://test.0xhashscan.io", + icon: "blockscout", + standard: "EIP3091", + }, ], "88888888": [ { - "name": "teamscan", - "url": "https://teamblockchain.team", - "standard": "EIP3091" - } + name: "teamscan", + url: "https://teamblockchain.team", + standard: "EIP3091", + }, ], "94204209": [ { - "name": "blockscout", - "url": "https://polygon-blackberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://polygon-blackberry.gelatoscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "111557560": [ { - "name": "Cyber Testnet Explorer", - "url": "https://testnet.cyberscan.co", - "standard": "EIP3091" - } + name: "Cyber Testnet Explorer", + url: "https://testnet.cyberscan.co", + standard: "EIP3091", + }, ], "123420111": [ { - "name": "blockscout", - "url": "https://opcelestia-raspberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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://testnet.meldscan.io", + icon: "meld", + standard: "EIP3091", }, { - "name": "explorer", - "url": "https://subnets-test.avax.network/meld", - "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: "neonscan", + url: "https://devnet.neonscan.org", + standard: "EIP3091", }, { - "name": "blockscout", - "url": "https://neon-devnet.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + name: "blockscout", + url: "https://neon-devnet.blockscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "245022934": [ { - "name": "neonscan", - "url": "https://neonscan.org", - "standard": "EIP3091" + name: "neonscan", + url: "https://neonscan.org", + standard: "EIP3091", }, { - "name": "native", - "url": "https://neon.blockscout.com", - "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" - } + 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" - } + 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" - } + 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://meldscan.io", + icon: "meld", + standard: "EIP3091", }, { - "name": "explorer", - "url": "https://subnets.avax.network/meld", - "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" - } + name: "Blockscout", + url: "https://testnet-explorer.gather.network", + icon: "gather", + standard: "none", + }, ], "486217935": [ { - "name": "Blockscout", - "url": "https://devnet-explorer.gather.network", - "standard": "none" - } + name: "Blockscout", + url: "https://devnet-explorer.gather.network", + standard: "none", + }, ], "888888888": [ { - "name": "Ancient8 Explorer", - "url": "https://scan.ancient8.gg", - "standard": "EIP3091" - } + name: "Ancient8 Explorer", + url: "https://scan.ancient8.gg", + standard: "EIP3091", + }, ], "889910245": [ { - "name": "PTCESCAN Testnet Explorer", - "url": "https://explorer-testnet.ptcscan.io", - "standard": "EIP3091" - } + name: "PTCESCAN Testnet Explorer", + url: "https://explorer-testnet.ptcscan.io", + standard: "EIP3091", + }, ], "889910246": [ { - "name": "PTCESCAN Explorer", - "url": "https://ptcscan.io", - "standard": "EIP3091" - } + name: "PTCESCAN Explorer", + url: "https://ptcscan.io", + standard: "EIP3091", + }, ], "974399131": [ { - "name": "Blockscout", - "url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + name: "aurorascan.dev", + url: "https://aurorascan.dev", + standard: "EIP3091", + }, ], "1313161555": [ { - "name": "aurorascan.dev", - "url": "https://testnet.aurorascan.dev", - "standard": "EIP3091" - } + name: "aurorascan.dev", + url: "https://testnet.aurorascan.dev", + standard: "EIP3091", + }, ], "1313161560": [ { - "name": "PowerGold explorer", - "url": "https://explorer.powergold.aurora.dev", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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" - } + 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 Scan", + url: "https://sepolia.kakarotscan.org", + standard: "EIP3091", }, { - "name": "Kakarot Explorer", - "url": "https://sepolia-explorer.kakarot.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" - } + 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" - } + 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" - } + name: "OneLedger Block Explorer", + url: "https://frankenstein-explorer.oneledger.network", + standard: "EIP3091", + }, ], "11297108109": [ { - "name": "Chainlens", - "url": "https://palm.chainlens.com", - "standard": "EIP3091" + name: "Chainlens", + url: "https://palm.chainlens.com", + standard: "EIP3091", }, { - "name": "Dora", - "url": "https://www.ondora.xyz/network/palm", - "standard": "none" - } + name: "Dora", + url: "https://www.ondora.xyz/network/palm", + standard: "none", + }, ], "11297108099": [ { - "name": "Chainlens", - "url": "https://testnet.palm.chainlens.com", - "standard": "EIP3091" + name: "Chainlens", + url: "https://testnet.palm.chainlens.com", + standard: "EIP3091", }, { - "name": "Dora", - "url": "https://www.ondora.xyz/network/palm-testnet", - "standard": "none" - } + 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" - } + 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" - } + name: "blockscout", + url: "https://arb-blueberry.gelatoscout.com", + icon: "blockscout", + standard: "EIP3091", + }, ], "111222333444": [ { - "name": "Alphabet Explorer", - "url": "https://scan.alphabetnetwork.org", - "standard": "EIP3091" - } + name: "Alphabet Explorer", + url: "https://scan.alphabetnetwork.org", + standard: "EIP3091", + }, ], "197710212030": [ { - "name": "Ntity Blockscout", - "url": "https://blockscout.ntity.io", - "icon": "ntity", - "standard": "EIP3091" - } + 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" - } + 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" - } + 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" - } + name: "zeniq-smart-chain-explorer", + url: "https://smart.zeniq.net", + standard: "EIP3091", + }, ], "666301171999": [ { - "name": "ipdcscan", - "url": "https://scan.ipdc.io", - "standard": "EIP3091" - } + name: "ipdcscan", + url: "https://scan.ipdc.io", + standard: "EIP3091", + }, ], "2713017997578000": [ { - "name": "dchaint scan", - "url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", - "standard": "EIP3091" - } + 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" - } - ] + name: "dchain scan", + url: "https://dchain-2716446429837000-1.sagaexplorer.io", + standard: "EIP3091", + }, + ], }; export const NETWORK_CURRENCIES = { "1": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2": { - "name": "Expanse Network Ether", - "symbol": "EXP", - "decimals": 18 + name: "Expanse Network Ether", + symbol: "EXP", + decimals: 18, }, "3": { - "name": "Ropsten Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ropsten Ether", + symbol: "ETH", + decimals: 18, }, "4": { - "name": "Rinkeby Ether", - "symbol": "ETH", - "decimals": 18 + name: "Rinkeby Ether", + symbol: "ETH", + decimals: 18, }, "5": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: "Goerli Ether", + symbol: "ETH", + decimals: 18, }, "7": { - "name": "ThaiChain Ether", - "symbol": "TCH", - "decimals": 18 + name: "ThaiChain Ether", + symbol: "TCH", + decimals: 18, }, "8": { - "name": "Ubiq Ether", - "symbol": "UBQ", - "decimals": 18 + name: "Ubiq Ether", + symbol: "UBQ", + decimals: 18, }, "9": { - "name": "Ubiq Testnet Ether", - "symbol": "TUBQ", - "decimals": 18 + name: "Ubiq Testnet Ether", + symbol: "TUBQ", + decimals: 18, }, "10": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "11": { - "name": "Metadium Mainnet Ether", - "symbol": "META", - "decimals": 18 + name: "Metadium Mainnet Ether", + symbol: "META", + decimals: 18, }, "12": { - "name": "Metadium Testnet Ether", - "symbol": "KAL", - "decimals": 18 + name: "Metadium Testnet Ether", + symbol: "KAL", + decimals: 18, }, "13": { - "name": "Staging Diodes", - "symbol": "sDIODE", - "decimals": 18 + name: "Staging Diodes", + symbol: "sDIODE", + decimals: 18, }, "14": { - "name": "Flare", - "symbol": "FLR", - "decimals": 18 + name: "Flare", + symbol: "FLR", + decimals: 18, }, "15": { - "name": "Diodes", - "symbol": "DIODE", - "decimals": 18 + name: "Diodes", + symbol: "DIODE", + decimals: 18, }, "16": { - "name": "Coston Flare", - "symbol": "CFLR", - "decimals": 18 + name: "Coston Flare", + symbol: "CFLR", + decimals: 18, }, "17": { - "name": "Thaifi Ether", - "symbol": "TFI", - "decimals": 18 + name: "Thaifi Ether", + symbol: "TFI", + decimals: 18, }, "18": { - "name": "ThunderCore Testnet Token", - "symbol": "TST", - "decimals": 18 + name: "ThunderCore Testnet Token", + symbol: "TST", + decimals: 18, }, "19": { - "name": "Songbird", - "symbol": "SGB", - "decimals": 18 + name: "Songbird", + symbol: "SGB", + decimals: 18, }, "20": { - "name": "Elastos", - "symbol": "ELA", - "decimals": 18 + name: "Elastos", + symbol: "ELA", + decimals: 18, }, "21": { - "name": "Elastos", - "symbol": "tELA", - "decimals": 18 + name: "Elastos", + symbol: "tELA", + decimals: 18, }, "22": { - "name": "Elastos", - "symbol": "ELA", - "decimals": 18 + name: "Elastos", + symbol: "ELA", + decimals: 18, }, "23": { - "name": "Elastos", - "symbol": "tELA", - "decimals": 18 + name: "Elastos", + symbol: "tELA", + decimals: 18, }, "24": { - "name": "KardiaChain", - "symbol": "KAI", - "decimals": 18 + name: "KardiaChain", + symbol: "KAI", + decimals: 18, }, "25": { - "name": "Cronos", - "symbol": "CRO", - "decimals": 18 + name: "Cronos", + symbol: "CRO", + decimals: 18, }, "26": { - "name": "L1 testcoin", - "symbol": "L1test", - "decimals": 18 + name: "L1 testcoin", + symbol: "L1test", + decimals: 18, }, "27": { - "name": "SHIBA INU COIN", - "symbol": "SHIB", - "decimals": 18 + name: "SHIBA INU COIN", + symbol: "SHIB", + decimals: 18, }, "29": { - "name": "L1 coin", - "symbol": "L1", - "decimals": 18 + name: "L1 coin", + symbol: "L1", + decimals: 18, }, "30": { - "name": "Smart Bitcoin", - "symbol": "RBTC", - "decimals": 18 + name: "Smart Bitcoin", + symbol: "RBTC", + decimals: 18, }, "31": { - "name": "Testnet Smart Bitcoin", - "symbol": "tRBTC", - "decimals": 18 + name: "Testnet Smart Bitcoin", + symbol: "tRBTC", + decimals: 18, }, "32": { - "name": "GoodData Testnet Ether", - "symbol": "GooD", - "decimals": 18 + name: "GoodData Testnet Ether", + symbol: "GooD", + decimals: 18, }, "33": { - "name": "GoodData Mainnet Ether", - "symbol": "GooD", - "decimals": 18 + name: "GoodData Mainnet Ether", + symbol: "GooD", + decimals: 18, }, "34": { - "name": "SecureChain", - "symbol": "SCAI", - "decimals": 18 + name: "SecureChain", + symbol: "SCAI", + decimals: 18, }, "35": { - "name": "TBWG Ether", - "symbol": "TBG", - "decimals": 18 + name: "TBWG Ether", + symbol: "TBG", + decimals: 18, }, "36": { - "name": "Dxchain", - "symbol": "DX", - "decimals": 18 + name: "Dxchain", + symbol: "DX", + decimals: 18, }, "37": { - "name": "XPLA", - "symbol": "XPLA", - "decimals": 18 + name: "XPLA", + symbol: "XPLA", + decimals: 18, }, "38": { - "name": "Valorbit", - "symbol": "VAL", - "decimals": 18 + name: "Valorbit", + symbol: "VAL", + decimals: 18, }, "39": { - "name": "Unicorn Ultra", - "symbol": "U2U", - "decimals": 18 + name: "Unicorn Ultra", + symbol: "U2U", + decimals: 18, }, "40": { - "name": "Telos", - "symbol": "TLOS", - "decimals": 18 + name: "Telos", + symbol: "TLOS", + decimals: 18, }, "41": { - "name": "Telos", - "symbol": "TLOS", - "decimals": 18 + name: "Telos", + symbol: "TLOS", + decimals: 18, }, "42": { - "name": "LUKSO", - "symbol": "LYX", - "decimals": 18 + name: "LUKSO", + symbol: "LYX", + decimals: 18, }, "43": { - "name": "Pangolin Network Native Token", - "symbol": "PRING", - "decimals": 18 + name: "Pangolin Network Native Token", + symbol: "PRING", + decimals: 18, }, "44": { - "name": "Crab Network Native Token", - "symbol": "CRAB", - "decimals": 18 + name: "Crab Network Native Token", + symbol: "CRAB", + decimals: 18, }, "45": { - "name": "Pangoro Network Native Token", - "symbol": "ORING", - "decimals": 18 + name: "Pangoro Network Native Token", + symbol: "ORING", + decimals: 18, }, "46": { - "name": "Darwinia Network Native Token", - "symbol": "RING", - "decimals": 18 + name: "Darwinia Network Native Token", + symbol: "RING", + decimals: 18, }, "47": { - "name": "ACRIA", - "symbol": "ACRIA", - "decimals": 18 + name: "ACRIA", + symbol: "ACRIA", + decimals: 18, }, "48": { - "name": "Ennothem", - "symbol": "ETMP", - "decimals": 18 + name: "Ennothem", + symbol: "ETMP", + decimals: 18, }, "49": { - "name": "Ennothem", - "symbol": "ETMP", - "decimals": 18 + name: "Ennothem", + symbol: "ETMP", + decimals: 18, }, "50": { - "name": "XinFin", - "symbol": "XDC", - "decimals": 18 + name: "XinFin", + symbol: "XDC", + decimals: 18, }, "51": { - "name": "XinFin", - "symbol": "TXDC", - "decimals": 18 + name: "XinFin", + symbol: "TXDC", + decimals: 18, }, "52": { - "name": "CoinEx Chain Native Token", - "symbol": "cet", - "decimals": 18 + name: "CoinEx Chain Native Token", + symbol: "cet", + decimals: 18, }, "53": { - "name": "CoinEx Chain Test Native Token", - "symbol": "cett", - "decimals": 18 + name: "CoinEx Chain Test Native Token", + symbol: "cett", + decimals: 18, }, "54": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 + name: "Belly", + symbol: "BELLY", + decimals: 18, }, "55": { - "name": "Zyx", - "symbol": "ZYX", - "decimals": 18 + name: "Zyx", + symbol: "ZYX", + decimals: 18, }, "56": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "BNB", + decimals: 18, }, "57": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 + name: "Syscoin", + symbol: "SYS", + decimals: 18, }, "58": { - "name": "ONG", - "symbol": "ONG", - "decimals": 18 + name: "ONG", + symbol: "ONG", + decimals: 18, }, "60": { - "name": "GoChain Ether", - "symbol": "GO", - "decimals": 18 + name: "GoChain Ether", + symbol: "GO", + decimals: 18, }, "61": { - "name": "Ether", - "symbol": "ETC", - "decimals": 18 + name: "Ether", + symbol: "ETC", + decimals: 18, }, "63": { - "name": "Mordor Ether", - "symbol": "METC", - "decimals": 18 + name: "Mordor Ether", + symbol: "METC", + decimals: 18, }, "64": { - "name": "Ellaism Ether", - "symbol": "ELLA", - "decimals": 18 + name: "Ellaism Ether", + symbol: "ELLA", + decimals: 18, }, "65": { - "name": "OKExChain Global Utility Token in testnet", - "symbol": "OKT", - "decimals": 18 + name: "OKExChain Global Utility Token in testnet", + symbol: "OKT", + decimals: 18, }, "66": { - "name": "OKXChain Global Utility Token", - "symbol": "OKT", - "decimals": 18 + name: "OKXChain Global Utility Token", + symbol: "OKT", + decimals: 18, }, "67": { - "name": "DBChain Testnet", - "symbol": "DBM", - "decimals": 18 + name: "DBChain Testnet", + symbol: "DBM", + decimals: 18, }, "68": { - "name": "SoterOne Mainnet Ether", - "symbol": "SOTER", - "decimals": 18 + name: "SoterOne Mainnet Ether", + symbol: "SOTER", + decimals: 18, }, "69": { - "name": "Kovan Ether", - "symbol": "ETH", - "decimals": 18 + name: "Kovan Ether", + symbol: "ETH", + decimals: 18, }, "70": { - "name": "Hoo Smart Chain Native Token", - "symbol": "HOO", - "decimals": 18 + name: "Hoo Smart Chain Native Token", + symbol: "HOO", + decimals: 18, }, "71": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 + name: "CFX", + symbol: "CFX", + decimals: 18, }, "72": { - "name": "DxChain Testnet", - "symbol": "DX", - "decimals": 18 + name: "DxChain Testnet", + symbol: "DX", + decimals: 18, }, "73": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 + name: "FNCY", + symbol: "FNCY", + decimals: 18, }, "74": { - "name": "EIDI", - "symbol": "EIDI", - "decimals": 18 + name: "EIDI", + symbol: "EIDI", + decimals: 18, }, "75": { - "name": "Decimal", - "symbol": "DEL", - "decimals": 18 + name: "Decimal", + symbol: "DEL", + decimals: 18, }, "76": { - "name": "Mix Ether", - "symbol": "MIX", - "decimals": 18 + name: "Mix Ether", + symbol: "MIX", + decimals: 18, }, "77": { - "name": "POA Sokol Ether", - "symbol": "SPOA", - "decimals": 18 + name: "POA Sokol Ether", + symbol: "SPOA", + decimals: 18, }, "78": { - "name": "Primus Ether", - "symbol": "PETH", - "decimals": 18 + name: "Primus Ether", + symbol: "PETH", + decimals: 18, }, "79": { - "name": "ZENITH", - "symbol": "ZENITH", - "decimals": 18 + name: "ZENITH", + symbol: "ZENITH", + decimals: 18, }, "80": { - "name": "RNA", - "symbol": "RNA", - "decimals": 18 + name: "RNA", + symbol: "RNA", + decimals: 18, }, "81": { - "name": "Japan Open Chain Token", - "symbol": "JOC", - "decimals": 18 + name: "Japan Open Chain Token", + symbol: "JOC", + decimals: 18, }, "82": { - "name": "Meter", - "symbol": "MTR", - "decimals": 18 + name: "Meter", + symbol: "MTR", + decimals: 18, }, "83": { - "name": "Meter", - "symbol": "MTR", - "decimals": 18 + name: "Meter", + symbol: "MTR", + decimals: 18, }, "84": { - "name": "XRP", - "symbol": "XRP", - "decimals": 18 + name: "XRP", + symbol: "XRP", + decimals: 18, }, "85": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 + name: "GateToken", + symbol: "GT", + decimals: 18, }, "86": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 + name: "GateToken", + symbol: "GT", + decimals: 18, }, "87": { - "name": "Supernova", - "symbol": "SNT", - "decimals": 18 + name: "Supernova", + symbol: "SNT", + decimals: 18, }, "88": { - "name": "Viction", - "symbol": "VIC", - "decimals": 18 + name: "Viction", + symbol: "VIC", + decimals: 18, }, "89": { - "name": "Viction", - "symbol": "VIC", - "decimals": 18 + name: "Viction", + symbol: "VIC", + decimals: 18, }, "90": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "91": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "92": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "93": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "94": { - "name": "BCTS", - "symbol": "BCTS", - "decimals": 18 + name: "BCTS", + symbol: "BCTS", + decimals: 18, }, "95": { - "name": "CADL", - "symbol": "CADL", - "decimals": 18 + name: "CADL", + symbol: "CADL", + decimals: 18, }, "96": { - "name": "Bitkub Coin", - "symbol": "KUB", - "decimals": 18 + name: "Bitkub Coin", + symbol: "KUB", + decimals: 18, }, "97": { - "name": "BNB Chain Native Token", - "symbol": "tBNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "tBNB", + decimals: 18, }, "98": { - "name": "SIX evm token", - "symbol": "SIX", - "decimals": 18 + name: "SIX evm token", + symbol: "SIX", + decimals: 18, }, "99": { - "name": "POA Network Core Ether", - "symbol": "POA", - "decimals": 18 + name: "POA Network Core Ether", + symbol: "POA", + decimals: 18, }, "100": { - "name": "xDAI", - "symbol": "XDAI", - "decimals": 18 + name: "xDAI", + symbol: "XDAI", + decimals: 18, }, "101": { - "name": "EtherInc Ether", - "symbol": "ETI", - "decimals": 18 + name: "EtherInc Ether", + symbol: "ETI", + decimals: 18, }, "102": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 + name: "Web3Games", + symbol: "W3G", + decimals: 18, }, "103": { - "name": "Worldland", - "symbol": "WLC", - "decimals": 18 + name: "Worldland", + symbol: "WLC", + decimals: 18, }, "104": { - "name": "Kaiba Testnet Token", - "symbol": "tKAIBA", - "decimals": 18 + name: "Kaiba Testnet Token", + symbol: "tKAIBA", + decimals: 18, }, "105": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 + name: "Web3Games", + symbol: "W3G", + decimals: 18, }, "106": { - "name": "Velas", - "symbol": "VLX", - "decimals": 18 + name: "Velas", + symbol: "VLX", + decimals: 18, }, "107": { - "name": "Nebula X", - "symbol": "NBX", - "decimals": 18 + name: "Nebula X", + symbol: "NBX", + decimals: 18, }, "108": { - "name": "ThunderCore Token", - "symbol": "TT", - "decimals": 18 + name: "ThunderCore Token", + symbol: "TT", + decimals: 18, }, "109": { - "name": "BONE Shibarium", - "symbol": "BONE", - "decimals": 18 + name: "BONE Shibarium", + symbol: "BONE", + decimals: 18, }, "110": { - "name": "Proton", - "symbol": "XPR", - "decimals": 4 + name: "Proton", + symbol: "XPR", + decimals: 4, }, "111": { - "name": "EtherLite", - "symbol": "ETL", - "decimals": 18 + name: "EtherLite", + symbol: "ETL", + decimals: 18, }, "112": { - "name": "Gas IDR", - "symbol": "GIDR", - "decimals": 18 + name: "Gas IDR", + symbol: "GIDR", + decimals: 18, }, "113": { - "name": "Dehvo", - "symbol": "Deh", - "decimals": 18 + name: "Dehvo", + symbol: "Deh", + decimals: 18, }, "114": { - "name": "Coston2 Flare", - "symbol": "C2FLR", - "decimals": 18 + name: "Coston2 Flare", + symbol: "C2FLR", + decimals: 18, }, "117": { - "name": "Uptick", - "symbol": "UPTICK", - "decimals": 18 + name: "Uptick", + symbol: "UPTICK", + decimals: 18, }, "118": { - "name": "Arcology Coin", - "symbol": "Acol", - "decimals": 18 + name: "Arcology Coin", + symbol: "Acol", + decimals: 18, }, "119": { - "name": "NULS", - "symbol": "NULS", - "decimals": 18 + name: "NULS", + symbol: "NULS", + decimals: 18, }, "120": { - "name": "NULS", - "symbol": "NULS", - "decimals": 18 + name: "NULS", + symbol: "NULS", + decimals: 18, }, "121": { - "name": "Realchain", - "symbol": "REAL", - "decimals": 18 + name: "Realchain", + symbol: "REAL", + decimals: 18, }, "122": { - "name": "Fuse", - "symbol": "FUSE", - "decimals": 18 + name: "Fuse", + symbol: "FUSE", + decimals: 18, }, "123": { - "name": "Spark", - "symbol": "SPARK", - "decimals": 18 + name: "Spark", + symbol: "SPARK", + decimals: 18, }, "124": { - "name": "Decentralized Web Utility", - "symbol": "DWU", - "decimals": 18 + name: "Decentralized Web Utility", + symbol: "DWU", + decimals: 18, }, "125": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 + name: "OYchain Token", + symbol: "OY", + decimals: 18, }, "126": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 + name: "OYchain Token", + symbol: "OY", + decimals: 18, }, "127": { - "name": "Factory 127 Token", - "symbol": "FETH", - "decimals": 18 + name: "Factory 127 Token", + symbol: "FETH", + decimals: 18, }, "128": { - "name": "Huobi ECO Chain Native Token", - "symbol": "HT", - "decimals": 18 + name: "Huobi ECO Chain Native Token", + symbol: "HT", + decimals: 18, }, "129": { - "name": "INOV8", - "symbol": "INOV8", - "decimals": 18 + name: "INOV8", + symbol: "INOV8", + decimals: 18, }, "131": { - "name": "Engram Tokio Testnet", - "symbol": "tGRAM", - "decimals": 18 + name: "Engram Tokio Testnet", + symbol: "tGRAM", + decimals: 18, }, "132": { - "name": "Namefi Coin", - "symbol": "NFIC", - "decimals": 18 + name: "Namefi Coin", + symbol: "NFIC", + decimals: 18, }, "133": { - "name": "HashKey EcoPoints", - "symbol": "HSK", - "decimals": 18 + name: "HashKey EcoPoints", + symbol: "HSK", + decimals: 18, }, "134": { - "name": "xRLC", - "symbol": "xRLC", - "decimals": 18 + name: "xRLC", + symbol: "xRLC", + decimals: 18, }, "135": { - "name": "Alyx Testnet Native Token", - "symbol": "ALYX", - "decimals": 18 + name: "Alyx Testnet Native Token", + symbol: "ALYX", + decimals: 18, }, "136": { - "name": "Deamchain Native Token", - "symbol": "DEAM", - "decimals": 18 + name: "Deamchain Native Token", + symbol: "DEAM", + decimals: 18, }, "137": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: "MATIC", + symbol: "MATIC", + decimals: 18, }, "138": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "139": { - "name": "WoopCoin", - "symbol": "WOOC", - "decimals": 18 + name: "WoopCoin", + symbol: "WOOC", + decimals: 18, }, "140": { - "name": "Eternal", - "symbol": "Eter", - "decimals": 18 + name: "Eternal", + symbol: "Eter", + decimals: 18, }, "141": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 + name: "Belly", + symbol: "BELLY", + decimals: 18, }, "142": { - "name": "Prodax", - "symbol": "DAX", - "decimals": 18 + name: "Prodax", + symbol: "DAX", + decimals: 18, }, "144": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 + name: "PHI", + symbol: "Φ", + decimals: 18, }, "145": { - "name": "SoraETH", - "symbol": "SETH", - "decimals": 18 + name: "SoraETH", + symbol: "SETH", + decimals: 18, }, "147": { - "name": "Flag", - "symbol": "FLAG", - "decimals": 18 + name: "Flag", + symbol: "FLAG", + decimals: 18, }, "148": { - "name": "SMR", - "symbol": "SMR", - "decimals": 18 + name: "SMR", + symbol: "SMR", + decimals: 18, }, "150": { - "name": "SIX testnet evm token", - "symbol": "tSIX", - "decimals": 18 + name: "SIX testnet evm token", + symbol: "tSIX", + decimals: 18, }, "151": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 + name: "Redbelly Network Coin", + symbol: "RBNT", + decimals: 18, }, "152": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 + name: "Redbelly Network Coin", + symbol: "RBNT", + decimals: 18, }, "153": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 + name: "Redbelly Network Coin", + symbol: "RBNT", + decimals: 18, }, "154": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 + name: "Redbelly Network Coin", + symbol: "RBNT", + decimals: 18, }, "155": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 + name: "TENET", + symbol: "TENET", + decimals: 18, }, "156": { - "name": "OEBlock", - "symbol": "OEB", - "decimals": 18 + name: "OEBlock", + symbol: "OEB", + decimals: 18, }, "157": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 + name: "BONE", + symbol: "BONE", + decimals: 18, }, "158": { - "name": "Roburna", - "symbol": "RBA", - "decimals": 18 + name: "Roburna", + symbol: "RBA", + decimals: 18, }, "159": { - "name": "Roburna", - "symbol": "RBAT", - "decimals": 18 + name: "Roburna", + symbol: "RBAT", + decimals: 18, }, "160": { - "name": "Armonia Multichain Native Token", - "symbol": "AMAX", - "decimals": 18 + name: "Armonia Multichain Native Token", + symbol: "AMAX", + decimals: 18, }, "161": { - "name": "Armonia Multichain Native Token", - "symbol": "AMAX", - "decimals": 18 + name: "Armonia Multichain Native Token", + symbol: "AMAX", + decimals: 18, }, "162": { - "name": "Lightstreams PHT", - "symbol": "PHT", - "decimals": 18 + name: "Lightstreams PHT", + symbol: "PHT", + decimals: 18, }, "163": { - "name": "Lightstreams PHT", - "symbol": "PHT", - "decimals": 18 + name: "Lightstreams PHT", + symbol: "PHT", + decimals: 18, }, "164": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 + name: "Omni", + symbol: "OMNI", + decimals: 18, }, "166": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 + name: "Omni", + symbol: "OMNI", + decimals: 18, }, "167": { - "name": "ATOSHI", - "symbol": "ATOS", - "decimals": 18 + name: "ATOSHI", + symbol: "ATOS", + decimals: 18, }, "168": { - "name": "AIOZ", - "symbol": "AIOZ", - "decimals": 18 + name: "AIOZ", + symbol: "AIOZ", + decimals: 18, }, "169": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "170": { - "name": "HOO", - "symbol": "HOO", - "decimals": 18 + name: "HOO", + symbol: "HOO", + decimals: 18, }, "172": { - "name": "Latam-Blockchain Resil Test Native Token", - "symbol": "usd", - "decimals": 18 + name: "Latam-Blockchain Resil Test Native Token", + symbol: "usd", + decimals: 18, }, "176": { - "name": "DC Native Token", - "symbol": "DCT", - "decimals": 18 + name: "DC Native Token", + symbol: "DCT", + decimals: 18, }, "180": { - "name": "AME", - "symbol": "AME", - "decimals": 18 + name: "AME", + symbol: "AME", + decimals: 18, }, "181": { - "name": "WATER", - "symbol": "WATER", - "decimals": 18 + name: "WATER", + symbol: "WATER", + decimals: 18, }, "185": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "186": { - "name": "Seele", - "symbol": "Seele", - "decimals": 18 + name: "Seele", + symbol: "Seele", + decimals: 18, }, "188": { - "name": "BTM", - "symbol": "BTM", - "decimals": 18 + name: "BTM", + symbol: "BTM", + decimals: 18, }, "189": { - "name": "BTM", - "symbol": "BTM", - "decimals": 18 + name: "BTM", + symbol: "BTM", + decimals: 18, }, "191": { - "name": "FFG", - "symbol": "FFG", - "decimals": 18 + name: "FFG", + symbol: "FFG", + decimals: 18, }, "193": { - "name": "Crypto Emergency", - "symbol": "CEM", - "decimals": 18 + name: "Crypto Emergency", + symbol: "CEM", + decimals: 18, }, "195": { - "name": "X Layer Global Utility Token in testnet", - "symbol": "OKB", - "decimals": 18 + name: "X Layer Global Utility Token in testnet", + symbol: "OKB", + decimals: 18, }, "196": { - "name": "X Layer Global Utility Token", - "symbol": "OKB", - "decimals": 18 + name: "X Layer Global Utility Token", + symbol: "OKB", + decimals: 18, }, "197": { - "name": "Neutrinos", - "symbol": "NEUTR", - "decimals": 18 + name: "Neutrinos", + symbol: "NEUTR", + decimals: 18, }, "198": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "199": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 + name: "BitTorrent", + symbol: "BTT", + decimals: 18, }, "200": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 + name: "xDAI", + symbol: "xDAI", + decimals: 18, }, "201": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 + name: "MOAC", + symbol: "mc", + decimals: 18, }, "202": { - "name": "Edgeless Wrapped Eth", - "symbol": "EwEth", - "decimals": 18 + name: "Edgeless Wrapped Eth", + symbol: "EwEth", + decimals: 18, }, "204": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "BNB", + decimals: 18, }, "206": { - "name": "VinuChain", - "symbol": "VC", - "decimals": 18 + name: "VinuChain", + symbol: "VC", + decimals: 18, }, "207": { - "name": "VinuChain", - "symbol": "VC", - "decimals": 18 + name: "VinuChain", + symbol: "VC", + decimals: 18, }, "208": { - "name": "Notes", - "symbol": "utx", - "decimals": 18 + name: "Notes", + symbol: "utx", + decimals: 18, }, "210": { - "name": "Bitnet", - "symbol": "BTN", - "decimals": 18 + name: "Bitnet", + symbol: "BTN", + decimals: 18, }, "211": { - "name": "Freight Trust Native", - "symbol": "0xF", - "decimals": 18 + name: "Freight Trust Native", + symbol: "0xF", + decimals: 18, }, "212": { - "name": "Makalu MAPO", - "symbol": "MAPO", - "decimals": 18 + name: "Makalu MAPO", + symbol: "MAPO", + decimals: 18, }, "213": { - "name": "BSquared Token", - "symbol": "B2", - "decimals": 18 + name: "BSquared Token", + symbol: "B2", + decimals: 18, }, "214": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 + name: "Shina Inu", + symbol: "SHI", + decimals: 18, }, "217": { - "name": "MCD", - "symbol": "MCD", - "decimals": 18 + name: "MCD", + symbol: "MCD", + decimals: 18, }, "220": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "223": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "224": { - "name": "Viridis Token", - "symbol": "VRD", - "decimals": 18 + name: "Viridis Token", + symbol: "VRD", + decimals: 18, }, "225": { - "name": "LA", - "symbol": "LA", - "decimals": 18 + name: "LA", + symbol: "LA", + decimals: 18, }, "226": { - "name": "TLA", - "symbol": "TLA", - "decimals": 18 + name: "TLA", + symbol: "TLA", + decimals: 18, }, "228": { - "name": "FHE", - "symbol": "FHE", - "decimals": 18 + name: "FHE", + symbol: "FHE", + decimals: 18, }, "230": { - "name": "SwapDEX", - "symbol": "SDX", - "decimals": 18 + name: "SwapDEX", + symbol: "SDX", + decimals: 18, }, "234": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 + name: "JNFTC", + symbol: "JNFTC", + decimals: 18, }, "236": { - "name": "Deamchain Native Token", - "symbol": "DEAM", - "decimals": 18 + name: "Deamchain Native Token", + symbol: "DEAM", + decimals: 18, }, "242": { - "name": "Plinga", - "symbol": "PLINGA", - "decimals": 18 + name: "Plinga", + symbol: "PLINGA", + decimals: 18, }, "246": { - "name": "Energy Web Token", - "symbol": "EWT", - "decimals": 18 + name: "Energy Web Token", + symbol: "EWT", + decimals: 18, }, "248": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "250": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 + name: "Fantom", + symbol: "FTM", + decimals: 18, }, "252": { - "name": "Frax Ether", - "symbol": "frxETH", - "decimals": 18 + name: "Frax Ether", + symbol: "frxETH", + decimals: 18, }, "255": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "256": { - "name": "Huobi ECO Chain Test Native Token", - "symbol": "htt", - "decimals": 18 + name: "Huobi ECO Chain Test Native Token", + symbol: "htt", + decimals: 18, }, "258": { - "name": "Setheum", - "symbol": "SETM", - "decimals": 18 + name: "Setheum", + symbol: "SETM", + decimals: 18, }, "259": { - "name": "Neonlink Native Token", - "symbol": "NEON", - "decimals": 18 + name: "Neonlink Native Token", + symbol: "NEON", + decimals: 18, }, "262": { - "name": "Suren", - "symbol": "SRN", - "decimals": 18 + name: "Suren", + symbol: "SRN", + decimals: 18, }, "266": { - "name": "Ankr", - "symbol": "ANKR", - "decimals": 18 + name: "Ankr", + symbol: "ANKR", + decimals: 18, }, "267": { - "name": "Testnet Ankr", - "symbol": "ANKR", - "decimals": 18 + name: "Testnet Ankr", + symbol: "ANKR", + decimals: 18, }, "268": { - "name": "Devnet Ankr", - "symbol": "ANKR", - "decimals": 18 + name: "Devnet Ankr", + symbol: "ANKR", + decimals: 18, }, "269": { - "name": "High Performance Blockchain Ether", - "symbol": "HPB", - "decimals": 18 + name: "High Performance Blockchain Ether", + symbol: "HPB", + decimals: 18, }, "271": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 + name: "EgonCoin", + symbol: "EGON", + decimals: 18, }, "274": { - "name": "LaCoin", - "symbol": "LAC", - "decimals": 18 + name: "LaCoin", + symbol: "LAC", + decimals: 18, }, "278": { - "name": "FAI", - "symbol": "FAI", - "decimals": 18 + name: "FAI", + symbol: "FAI", + decimals: 18, }, "279": { - "name": "BPX", - "symbol": "BPX", - "decimals": 18 + name: "BPX", + symbol: "BPX", + decimals: 18, }, "282": { - "name": "Cronos zkEVM Test Coin", - "symbol": "zkTCRO", - "decimals": 18 + name: "Cronos zkEVM Test Coin", + symbol: "zkTCRO", + decimals: 18, }, "288": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "291": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "295": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 18 + name: "hbar", + symbol: "HBAR", + decimals: 18, }, "296": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 18 + name: "hbar", + symbol: "HBAR", + decimals: 18, }, "297": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 18 + name: "hbar", + symbol: "HBAR", + decimals: 18, }, "298": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 18 + name: "hbar", + symbol: "HBAR", + decimals: 18, }, "300": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "302": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "303": { - "name": "Neurochain", - "symbol": "tNCN", - "decimals": 18 + name: "Neurochain", + symbol: "tNCN", + decimals: 18, }, "305": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "307": { - "name": "Lovely", - "symbol": "LOVELY", - "decimals": 18 + name: "Lovely", + symbol: "LOVELY", + decimals: 18, }, "308": { - "name": "Furtheon", - "symbol": "FTH", - "decimals": 18 + name: "Furtheon", + symbol: "FTH", + decimals: 18, }, "309": { - "name": "Wyzth", - "symbol": "WYZ", - "decimals": 18 + name: "Wyzth", + symbol: "WYZ", + decimals: 18, }, "311": { - "name": "OMAX COIN", - "symbol": "OMAX", - "decimals": 18 + name: "OMAX COIN", + symbol: "OMAX", + decimals: 18, }, "313": { - "name": "Neurochain", - "symbol": "NCN", - "decimals": 18 + name: "Neurochain", + symbol: "NCN", + decimals: 18, }, "314": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 + name: "filecoin", + symbol: "FIL", + decimals: 18, }, "321": { - "name": "KuCoin Token", - "symbol": "KCS", - "decimals": 18 + name: "KuCoin Token", + symbol: "KCS", + decimals: 18, }, "322": { - "name": "KuCoin Testnet Token", - "symbol": "tKCS", - "decimals": 18 + name: "KuCoin Testnet Token", + symbol: "tKCS", + decimals: 18, }, "323": { - "name": "Cosvm", - "symbol": "CVM", - "decimals": 18 + name: "Cosvm", + symbol: "CVM", + decimals: 18, }, "324": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "333": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 + name: "Web3Q", + symbol: "W3Q", + decimals: 18, }, "335": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 + name: "Jewel", + symbol: "JEWEL", + decimals: 18, }, "336": { - "name": "Shiden", - "symbol": "SDN", - "decimals": 18 + name: "Shiden", + symbol: "SDN", + decimals: 18, }, "338": { - "name": "Cronos Test Coin", - "symbol": "TCRO", - "decimals": 18 + name: "Cronos Test Coin", + symbol: "TCRO", + decimals: 18, }, "345": { - "name": "TAS", - "symbol": "TAS", - "decimals": 18 + name: "TAS", + symbol: "TAS", + decimals: 18, }, "361": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 + name: "Theta Fuel", + symbol: "TFUEL", + decimals: 18, }, "363": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 + name: "Theta Fuel", + symbol: "TFUEL", + decimals: 18, }, "364": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 + name: "Theta Fuel", + symbol: "TFUEL", + decimals: 18, }, "365": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 + name: "Theta Fuel", + symbol: "TFUEL", + decimals: 18, }, "369": { - "name": "Pulse", - "symbol": "PLS", - "decimals": 18 + name: "Pulse", + symbol: "PLS", + decimals: 18, }, "371": { - "name": "tCNT", - "symbol": "tCNT", - "decimals": 18 + name: "tCNT", + symbol: "tCNT", + decimals: 18, }, "380": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 + name: "filecoin", + symbol: "FIL", + decimals: 18, }, "381": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 + name: "filecoin", + symbol: "FIL", + decimals: 18, }, "385": { - "name": "Lisinski Ether", - "symbol": "LISINS", - "decimals": 18 + name: "Lisinski Ether", + symbol: "LISINS", + decimals: 18, }, "395": { - "name": "CADL", - "symbol": "CADL", - "decimals": 18 + name: "CADL", + symbol: "CADL", + decimals: 18, }, "397": { - "name": "NEAR", - "symbol": "NEAR", - "decimals": 18 + name: "NEAR", + symbol: "NEAR", + decimals: 18, }, "398": { - "name": "Testnet NEAR", - "symbol": "NEAR", - "decimals": 18 + name: "Testnet NEAR", + symbol: "NEAR", + decimals: 18, }, "399": { - "name": "USNT", - "symbol": "USNT", - "decimals": 18 + name: "USNT", + symbol: "USNT", + decimals: 18, }, "400": { - "name": "HyperonChain", - "symbol": "HPN", - "decimals": 18 + name: "HyperonChain", + symbol: "HPN", + decimals: 18, }, "401": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 + name: "OZONE", + symbol: "OZO", + decimals: 18, }, "404": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "411": { - "name": "Pepe", - "symbol": "PEPE", - "decimals": 18 + name: "Pepe", + symbol: "PEPE", + decimals: 18, }, "416": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 + name: "SX Network", + symbol: "SX", + decimals: 18, }, "418": { - "name": "Test LaCoin", - "symbol": "TLA", - "decimals": 18 + name: "Test LaCoin", + symbol: "TLA", + decimals: 18, }, "420": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: "Goerli Ether", + symbol: "ETH", + decimals: 18, }, "422": { - "name": "Viridis Token", - "symbol": "VRD", - "decimals": 18 + name: "Viridis Token", + symbol: "VRD", + decimals: 18, }, "424": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "427": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 + name: "Zeeth Token", + symbol: "ZTH", + decimals: 18, }, "428": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "434": { - "name": "Boyaa mainnet native coin", - "symbol": "BYC", - "decimals": 18 + name: "Boyaa mainnet native coin", + symbol: "BYC", + decimals: 18, }, "443": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "444": { - "name": "Sepolia ETH", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia ETH", + symbol: "ETH", + decimals: 18, }, "456": { - "name": "ARZIO", - "symbol": "AZO", - "decimals": 18 + name: "ARZIO", + symbol: "AZO", + decimals: 18, }, "462": { - "name": "Areon", - "symbol": "TAREA", - "decimals": 18 + name: "Areon", + symbol: "TAREA", + decimals: 18, }, "463": { - "name": "Areon", - "symbol": "AREA", - "decimals": 18 + name: "Areon", + symbol: "AREA", + decimals: 18, }, "499": { - "name": "Rupaya", - "symbol": "RUPX", - "decimals": 18 + name: "Rupaya", + symbol: "RUPX", + decimals: 18, }, "500": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 + name: "Camino", + symbol: "CAM", + decimals: 18, }, "501": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 + name: "Camino", + symbol: "CAM", + decimals: 18, }, "510": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "512": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 + name: "Acuteangle Native Token", + symbol: "AAC", + decimals: 18, }, "513": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 + name: "Acuteangle Native Token", + symbol: "AAC", + decimals: 18, }, "516": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 + name: "Gear Zero Network Native Token", + symbol: "GZN", + decimals: 18, }, "520": { - "name": "XT Smart Chain Native Token", - "symbol": "XT", - "decimals": 18 + name: "XT Smart Chain Native Token", + symbol: "XT", + decimals: 18, }, "529": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 + name: "Firechain", + symbol: "FIRE", + decimals: 18, }, "530": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 + name: "Function X", + symbol: "FX", + decimals: 18, }, "534": { - "name": "CANDLE", - "symbol": "CNDL", - "decimals": 18 + name: "CANDLE", + symbol: "CNDL", + decimals: 18, }, "537": { - "name": "BSC", - "symbol": "BNB", - "decimals": 18 + name: "BSC", + symbol: "BNB", + decimals: 18, }, "542": { - "name": "PAW", - "symbol": "PAW", - "decimals": 18 + name: "PAW", + symbol: "PAW", + decimals: 18, }, "545": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 + name: "FLOW", + symbol: "FLOW", + decimals: 18, }, "555": { - "name": "CLASS COIN", - "symbol": "CLASS", - "decimals": 18 + name: "CLASS COIN", + symbol: "CLASS", + decimals: 18, }, "558": { - "name": "Tao", - "symbol": "TAO", - "decimals": 18 + name: "Tao", + symbol: "TAO", + decimals: 18, }, "568": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 + name: "Dogecoin", + symbol: "DOGE", + decimals: 18, }, "570": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 + name: "Syscoin", + symbol: "SYS", + decimals: 18, }, "571": { - "name": "Metatime Coin", - "symbol": "MTC", - "decimals": 18 + name: "Metatime Coin", + symbol: "MTC", + decimals: 18, }, "579": { - "name": "Filecoin", - "symbol": "FIL", - "decimals": 18 + name: "Filecoin", + symbol: "FIL", + decimals: 18, }, "592": { - "name": "Astar", - "symbol": "ASTR", - "decimals": 18 + name: "Astar", + symbol: "ASTR", + decimals: 18, }, "595": { - "name": "Acala Mandala Token", - "symbol": "mACA", - "decimals": 18 + name: "Acala Mandala Token", + symbol: "mACA", + decimals: 18, }, "596": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 + name: "Karura Token", + symbol: "KAR", + decimals: 18, }, "597": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 + name: "Acala Token", + symbol: "ACA", + decimals: 18, }, "600": { - "name": "Meshnyan Testnet Native Token", - "symbol": "MESHT", - "decimals": 18 + name: "Meshnyan Testnet Native Token", + symbol: "MESHT", + decimals: 18, }, "601": { - "name": "VINE", - "symbol": "VNE", - "decimals": 18 + name: "VINE", + symbol: "VNE", + decimals: 18, }, "612": { - "name": "EIOB", - "symbol": "EIOB", - "decimals": 18 + name: "EIOB", + symbol: "EIOB", + decimals: 18, }, "614": { - "name": "GLQ", - "symbol": "GLQ", - "decimals": 18 + name: "GLQ", + symbol: "GLQ", + decimals: 18, }, "634": { - "name": "USDC", - "symbol": "USDC", - "decimals": 18 + name: "USDC", + symbol: "USDC", + decimals: 18, }, "646": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 + name: "FLOW", + symbol: "FLOW", + decimals: 18, }, "647": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 + name: "SX Network", + symbol: "SX", + decimals: 18, }, "648": { - "name": "Endurance Chain Native Token", - "symbol": "ACE", - "decimals": 18 + name: "Endurance Chain Native Token", + symbol: "ACE", + decimals: 18, }, "653": { - "name": "kalis", - "symbol": "KALIS", - "decimals": 18 + name: "kalis", + symbol: "KALIS", + decimals: 18, }, "654": { - "name": "kalis", - "symbol": "KALIS", - "decimals": 18 + name: "kalis", + symbol: "KALIS", + decimals: 18, }, "662": { - "name": "ulc", - "symbol": "ULC", - "decimals": 18 + name: "ulc", + symbol: "ULC", + decimals: 18, }, "666": { - "name": "Pixie Chain Testnet Native Token", - "symbol": "PCTT", - "decimals": 18 + name: "Pixie Chain Testnet Native Token", + symbol: "PCTT", + decimals: 18, }, "667": { - "name": "LAOS", - "symbol": "LAOS", - "decimals": 18 + name: "LAOS", + symbol: "LAOS", + decimals: 18, }, "668": { - "name": "JuncaChain Native Token", - "symbol": "JGC", - "decimals": 18 + name: "JuncaChain Native Token", + symbol: "JGC", + decimals: 18, }, "669": { - "name": "JuncaChain Testnet Native Token", - "symbol": "JGCT", - "decimals": 18 + name: "JuncaChain Testnet Native Token", + symbol: "JGCT", + decimals: 18, }, "686": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 + name: "Karura Token", + symbol: "KAR", + decimals: 18, }, "690": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "700": { - "name": "Social", - "symbol": "SNS", - "decimals": 18 + name: "Social", + symbol: "SNS", + decimals: 18, }, "701": { - "name": "Koi Network Native Token", - "symbol": "KRING", - "decimals": 18 + name: "Koi Network Native Token", + symbol: "KRING", + decimals: 18, }, "707": { - "name": "BCS Token", - "symbol": "BCS", - "decimals": 18 + name: "BCS Token", + symbol: "BCS", + decimals: 18, }, "708": { - "name": "BCS Testnet Token", - "symbol": "tBCS", - "decimals": 18 + name: "BCS Testnet Token", + symbol: "tBCS", + decimals: 18, }, "710": { - "name": "Fury", - "symbol": "FURY", - "decimals": 18 + name: "Fury", + symbol: "FURY", + decimals: 18, }, "713": { - "name": "VRC Chain", - "symbol": "VRC", - "decimals": 18 + name: "VRC Chain", + symbol: "VRC", + decimals: 18, }, "719": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 + name: "BONE", + symbol: "BONE", + decimals: 18, }, "721": { - "name": "Lycan", - "symbol": "LYC", - "decimals": 18 + name: "Lycan", + symbol: "LYC", + decimals: 18, }, "727": { - "name": "Blucrates", - "symbol": "BLU", - "decimals": 18 + name: "Blucrates", + symbol: "BLU", + decimals: 18, }, "730": { - "name": "Lovely", - "symbol": "LOVELY", - "decimals": 18 + name: "Lovely", + symbol: "LOVELY", + decimals: 18, }, "741": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 + name: "VNT", + symbol: "VNT", + decimals: 18, }, "742": { - "name": "Script", - "symbol": "SPAY", - "decimals": 18 + name: "Script", + symbol: "SPAY", + decimals: 18, }, "747": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 + name: "FLOW", + symbol: "FLOW", + decimals: 18, }, "766": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 + name: "Shiba Predator", + symbol: "QOM", + decimals: 18, }, "776": { - "name": "Openchain Testnet", - "symbol": "TOPC", - "decimals": 18 + name: "Openchain Testnet", + symbol: "TOPC", + decimals: 18, }, "777": { - "name": "cTH", - "symbol": "cTH", - "decimals": 18 + name: "cTH", + symbol: "cTH", + decimals: 18, }, "786": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 + name: "MAAL", + symbol: "MAAL", + decimals: 18, }, "787": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 + name: "Acala Token", + symbol: "ACA", + decimals: 18, }, "788": { - "name": "Aerochain Testnet", - "symbol": "TAero", - "decimals": 18 + name: "Aerochain Testnet", + symbol: "TAero", + decimals: 18, }, "789": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "799": { - "name": "Test Rupaya", - "symbol": "TRUPX", - "decimals": 18 + name: "Test Rupaya", + symbol: "TRUPX", + decimals: 18, }, "800": { - "name": "LUCID", - "symbol": "LUCID", - "decimals": 18 + name: "LUCID", + symbol: "LUCID", + decimals: 18, }, "803": { - "name": "Haicoin", - "symbol": "HAIC", - "decimals": 18 + name: "Haicoin", + symbol: "HAIC", + decimals: 18, }, "808": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 + name: "Portal Fantasy Token", + symbol: "PFT", + decimals: 18, }, "810": { - "name": "Haven1", - "symbol": "H1", - "decimals": 18 + name: "Haven1", + symbol: "H1", + decimals: 18, }, "813": { - "name": "Qitmeer", - "symbol": "MEER", - "decimals": 18 + name: "Qitmeer", + symbol: "MEER", + decimals: 18, }, "814": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "818": { - "name": "BeOne Chain Mainnet", - "symbol": "BOC", - "decimals": 18 + name: "BeOne Chain Mainnet", + symbol: "BOC", + decimals: 18, }, "820": { - "name": "Callisto", - "symbol": "CLO", - "decimals": 18 + name: "Callisto", + symbol: "CLO", + decimals: 18, }, "822": { - "name": "Bitcoin", - "symbol": "rBTC", - "decimals": 18 + name: "Bitcoin", + symbol: "rBTC", + decimals: 18, }, "831": { - "name": "CDT", - "symbol": "CDT", - "decimals": 18 + name: "CDT", + symbol: "CDT", + decimals: 18, }, "841": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 + name: "Tara", + symbol: "TARA", + decimals: 18, }, "842": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 + name: "Tara", + symbol: "TARA", + decimals: 18, }, "859": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 + name: "Zeeth Token", + symbol: "ZTH", + decimals: 18, }, "868": { - "name": "FST", - "symbol": "FST", - "decimals": 18 + name: "FST", + symbol: "FST", + decimals: 18, }, "876": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "877": { - "name": "Dexit network", - "symbol": "DXT", - "decimals": 18 + name: "Dexit network", + symbol: "DXT", + decimals: 18, }, "880": { - "name": "AMBROS", - "symbol": "AMBROS", - "decimals": 18 + name: "AMBROS", + symbol: "AMBROS", + decimals: 18, }, "888": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 + name: "Wancoin", + symbol: "WAN", + decimals: 18, }, "898": { - "name": "MAXI GAS", - "symbol": "MGAS", - "decimals": 18 + name: "MAXI GAS", + symbol: "MGAS", + decimals: 18, }, "899": { - "name": "MAXI GAS", - "symbol": "MGAS", - "decimals": 18 + name: "MAXI GAS", + symbol: "MGAS", + decimals: 18, }, "900": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "901": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "902": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "903": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 + name: "Garizon", + symbol: "GAR", + decimals: 18, }, "909": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 + name: "Portal Fantasy Token", + symbol: "PFT", + decimals: 18, }, "910": { - "name": "DecentraBone", - "symbol": "DBONE", - "decimals": 18 + name: "DecentraBone", + symbol: "DBONE", + decimals: 18, }, "911": { - "name": "TBTC", - "symbol": "TBTC", - "decimals": 18 + name: "TBTC", + symbol: "TBTC", + decimals: 18, }, "917": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 + name: "Firechain", + symbol: "FIRE", + decimals: 18, }, "919": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "927": { - "name": "Yidark", - "symbol": "YDK", - "decimals": 18 + name: "Yidark", + symbol: "YDK", + decimals: 18, }, "943": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 + name: "Test Pulse", + symbol: "tPLS", + decimals: 18, }, "956": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "957": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "963": { - "name": "BTCC", - "symbol": "BTCC", - "decimals": 18 + name: "BTCC", + symbol: "BTCC", + decimals: 18, }, "969": { - "name": "Settled EthXY Token", - "symbol": "SEXY", - "decimals": 18 + name: "Settled EthXY Token", + symbol: "SEXY", + decimals: 18, }, "970": { - "name": "Oort", - "symbol": "OORT", - "decimals": 18 + name: "Oort", + symbol: "OORT", + decimals: 18, }, "971": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 + name: "Oort", + symbol: "CCN", + decimals: 18, }, "972": { - "name": "Oort", - "symbol": "CCNA", - "decimals": 18 + name: "Oort", + symbol: "CCNA", + decimals: 18, }, "977": { - "name": "Nepal Blockchain Network Ether", - "symbol": "YETI", - "decimals": 18 + name: "Nepal Blockchain Network Ether", + symbol: "YETI", + decimals: 18, }, "979": { - "name": "Settled EthXY Token", - "symbol": "SEXY", - "decimals": 18 + name: "Settled EthXY Token", + symbol: "SEXY", + decimals: 18, }, "980": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "985": { - "name": "Memo", - "symbol": "CMEMO", - "decimals": 18 + name: "Memo", + symbol: "CMEMO", + decimals: 18, }, "989": { - "name": "TOP", - "symbol": "TOP", - "decimals": 6 + name: "TOP", + symbol: "TOP", + decimals: 6, }, "990": { - "name": "eLiberty", - "symbol": "$EL", - "decimals": 18 + name: "eLiberty", + symbol: "$EL", + decimals: 18, }, "997": { - "name": "5ire Token", - "symbol": "5ire", - "decimals": 18 + name: "5ire Token", + symbol: "5ire", + decimals: 18, }, "998": { - "name": "Lucky", - "symbol": "L99", - "decimals": 18 + name: "Lucky", + symbol: "L99", + decimals: 18, }, "999": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 + name: "Wancoin", + symbol: "WAN", + decimals: 18, }, "1000": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 + name: "GCD", + symbol: "GCD", + decimals: 18, }, "1001": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 + name: "KLAY", + symbol: "KLAY", + decimals: 18, }, "1003": { - "name": "Tectum", - "symbol": "TET", - "decimals": 8 + name: "Tectum", + symbol: "TET", + decimals: 8, }, "1004": { - "name": "T-EKTA", - "symbol": "T-EKTA", - "decimals": 18 + name: "T-EKTA", + symbol: "T-EKTA", + decimals: 18, }, "1007": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 + name: "Newton", + symbol: "NEW", + decimals: 18, }, "1008": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 + name: "Eurus", + symbol: "EUN", + decimals: 18, }, "1009": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 + name: "JNFTC", + symbol: "JNFTC", + decimals: 18, }, "1010": { - "name": "Evrice", - "symbol": "EVC", - "decimals": 18 + name: "Evrice", + symbol: "EVC", + decimals: 18, }, "1011": { - "name": "Rebus", - "symbol": "REBUS", - "decimals": 18 + name: "Rebus", + symbol: "REBUS", + decimals: 18, }, "1012": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 + name: "Newton", + symbol: "NEW", + decimals: 18, }, "1022": { - "name": "Sakura", - "symbol": "SKU", - "decimals": 18 + name: "Sakura", + symbol: "SKU", + decimals: 18, }, "1023": { - "name": "Clover", - "symbol": "CLV", - "decimals": 18 + name: "Clover", + symbol: "CLV", + decimals: 18, }, "1024": { - "name": "CLV", - "symbol": "CLV", - "decimals": 18 + name: "CLV", + symbol: "CLV", + decimals: 18, }, "1028": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 + name: "BitTorrent", + symbol: "BTT", + decimals: 18, }, "1030": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 + name: "CFX", + symbol: "CFX", + decimals: 18, }, "1031": { - "name": "PRX", - "symbol": "PRX", - "decimals": 18 + name: "PRX", + symbol: "PRX", + decimals: 18, }, "1038": { - "name": "tBRO", - "symbol": "tBRO", - "decimals": 18 + name: "tBRO", + symbol: "tBRO", + decimals: 18, }, "1039": { - "name": "BRO", - "symbol": "BRO", - "decimals": 18 + name: "BRO", + symbol: "BRO", + decimals: 18, }, "1073": { - "name": "SMR", - "symbol": "SMR", - "decimals": 18 + name: "SMR", + symbol: "SMR", + decimals: 18, }, "1075": { - "name": "IOTA", - "symbol": "IOTA", - "decimals": 18 + name: "IOTA", + symbol: "IOTA", + decimals: 18, }, "1079": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 + name: "MINTARA", + symbol: "MNTR", + decimals: 18, }, "1080": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 + name: "MINTARA", + symbol: "MNTR", + decimals: 18, }, "1088": { - "name": "Metis", - "symbol": "METIS", - "decimals": 18 + name: "Metis", + symbol: "METIS", + decimals: 18, }, "1089": { - "name": "HEART", - "symbol": "HEART", - "decimals": 18 + name: "HEART", + symbol: "HEART", + decimals: 18, }, "1099": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 + name: "MOAC", + symbol: "mc", + decimals: 18, }, "1100": { - "name": "DYM", - "symbol": "DYM", - "decimals": 18 + name: "DYM", + symbol: "DYM", + decimals: 18, }, "1101": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1107": { - "name": "BLXQ", - "symbol": "BLXQ", - "decimals": 18 + name: "BLXQ", + symbol: "BLXQ", + decimals: 18, }, "1108": { - "name": "BLXQ", - "symbol": "BLXQ", - "decimals": 18 + name: "BLXQ", + symbol: "BLXQ", + decimals: 18, }, "1111": { - "name": "WEMIX", - "symbol": "WEMIX", - "decimals": 18 + name: "WEMIX", + symbol: "WEMIX", + decimals: 18, }, "1112": { - "name": "TestnetWEMIX", - "symbol": "tWEMIX", - "decimals": 18 + name: "TestnetWEMIX", + symbol: "tWEMIX", + decimals: 18, }, "1113": { - "name": "BSquared Token", - "symbol": "B2", - "decimals": 18 + name: "BSquared Token", + symbol: "B2", + decimals: 18, }, "1115": { - "name": "Core Blockchain Testnet Native Token", - "symbol": "tCORE", - "decimals": 18 + name: "Core Blockchain Testnet Native Token", + symbol: "tCORE", + decimals: 18, }, "1116": { - "name": "Core Blockchain Native Token", - "symbol": "CORE", - "decimals": 18 + name: "Core Blockchain Native Token", + symbol: "CORE", + decimals: 18, }, "1117": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 + name: "Dogcoin", + symbol: "DOGS", + decimals: 18, }, "1123": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "1130": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 + name: "DeFiChain", + symbol: "DFI", + decimals: 18, }, "1131": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 + name: "DeFiChain", + symbol: "DFI", + decimals: 18, }, "1133": { - "name": "DeFiChain Token", - "symbol": "DFI", - "decimals": 18 + name: "DeFiChain Token", + symbol: "DFI", + decimals: 18, }, "1135": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1138": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 + name: "SINSO", + symbol: "SINSO", + decimals: 18, }, "1139": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 + name: "MathChain", + symbol: "MATH", + decimals: 18, }, "1140": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 + name: "MathChain", + symbol: "MATH", + decimals: 18, }, "1147": { - "name": "Flag Testnet", - "symbol": "FLAG", - "decimals": 18 + name: "Flag Testnet", + symbol: "FLAG", + decimals: 18, }, "1149": { - "name": "Plex Native Token", - "symbol": "PLEX", - "decimals": 18 + name: "Plex Native Token", + symbol: "PLEX", + decimals: 18, }, "1170": { - "name": "Origin", - "symbol": "UOC", - "decimals": 18 + name: "Origin", + symbol: "UOC", + decimals: 18, }, "1177": { - "name": "Smart Host Teknoloji TESTNET", - "symbol": "tSHT", - "decimals": 18 + name: "Smart Host Teknoloji TESTNET", + symbol: "tSHT", + decimals: 18, }, "1188": { - "name": "ClubMos", - "symbol": "MOS", - "decimals": 18 + name: "ClubMos", + symbol: "MOS", + decimals: 18, }, "1197": { - "name": "Iora", - "symbol": "IORA", - "decimals": 18 + name: "Iora", + symbol: "IORA", + decimals: 18, }, "1200": { - "name": "CuckooAI", - "symbol": "CAI", - "decimals": 18 + name: "CuckooAI", + symbol: "CAI", + decimals: 18, }, "1201": { - "name": "AVIS", - "symbol": "AVIS", - "decimals": 18 + name: "AVIS", + symbol: "AVIS", + decimals: 18, }, "1202": { - "name": "World Trade Token", - "symbol": "WTT", - "decimals": 18 + name: "World Trade Token", + symbol: "WTT", + decimals: 18, }, "1209": { - "name": "SaitaBlockChain(SBC)", - "symbol": "STC", - "decimals": 18 + name: "SaitaBlockChain(SBC)", + symbol: "STC", + decimals: 18, }, "1210": { - "name": "CuckooAI", - "symbol": "CAI", - "decimals": 18 + name: "CuckooAI", + symbol: "CAI", + decimals: 18, }, "1213": { - "name": "Popcat", - "symbol": "POP", - "decimals": 18 + name: "Popcat", + symbol: "POP", + decimals: 18, }, "1214": { - "name": "EnterCoin", - "symbol": "ENTER", - "decimals": 18 + name: "EnterCoin", + symbol: "ENTER", + decimals: 18, }, "1221": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1225": { - "name": "Hybrid", - "symbol": "HYB", - "decimals": 18 + name: "Hybrid", + symbol: "HYB", + decimals: 18, }, "1229": { - "name": "Exzo", - "symbol": "XZO", - "decimals": 18 + name: "Exzo", + symbol: "XZO", + decimals: 18, }, "1230": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 + name: "Ultron", + symbol: "ULX", + decimals: 18, }, "1231": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 + name: "Ultron", + symbol: "ULX", + decimals: 18, }, "1234": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 + name: "FITFI", + symbol: "FITFI", + decimals: 18, }, "1235": { - "name": "ITX", - "symbol": "ITX", - "decimals": 18 + name: "ITX", + symbol: "ITX", + decimals: 18, }, "1243": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 + name: "ARC", + symbol: "ARC", + decimals: 18, }, "1244": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 + name: "ARC", + symbol: "ARC", + decimals: 18, }, "1246": { - "name": "OMCOIN", - "symbol": "OM", - "decimals": 18 + name: "OMCOIN", + symbol: "OM", + decimals: 18, }, "1248": { - "name": "Dogether", - "symbol": "dogeth", - "decimals": 18 + name: "Dogether", + symbol: "dogeth", + decimals: 18, }, "1252": { - "name": "Crazy Internet Coin", - "symbol": "CICT", - "decimals": 18 + name: "Crazy Internet Coin", + symbol: "CICT", + decimals: 18, }, "1280": { - "name": "HALO", - "symbol": "HO", - "decimals": 18 + name: "HALO", + symbol: "HO", + decimals: 18, }, "1284": { - "name": "Glimmer", - "symbol": "GLMR", - "decimals": 18 + name: "Glimmer", + symbol: "GLMR", + decimals: 18, }, "1285": { - "name": "Moonriver", - "symbol": "MOVR", - "decimals": 18 + name: "Moonriver", + symbol: "MOVR", + decimals: 18, }, "1287": { - "name": "Dev", - "symbol": "DEV", - "decimals": 18 + name: "Dev", + symbol: "DEV", + decimals: 18, }, "1288": { - "name": "Rocs", - "symbol": "ROC", - "decimals": 18 + name: "Rocs", + symbol: "ROC", + decimals: 18, }, "1291": { - "name": "Swisstronik", - "symbol": "SWTR", - "decimals": 18 + name: "Swisstronik", + symbol: "SWTR", + decimals: 18, }, "1311": { - "name": "Dos Native Token", - "symbol": "DOS", - "decimals": 18 + name: "Dos Native Token", + symbol: "DOS", + decimals: 18, }, "1314": { - "name": "Alyx Chain Native Token", - "symbol": "ALYX", - "decimals": 18 + name: "Alyx Chain Native Token", + symbol: "ALYX", + decimals: 18, }, "1319": { - "name": "AIA Mainnet", - "symbol": "AIA", - "decimals": 18 + name: "AIA Mainnet", + symbol: "AIA", + decimals: 18, }, "1320": { - "name": "AIA Testnet", - "symbol": "AIA", - "decimals": 18 + name: "AIA Testnet", + symbol: "AIA", + decimals: 18, }, "1328": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 + name: "Sei", + symbol: "SEI", + decimals: 18, }, "1329": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 + name: "Sei", + symbol: "SEI", + decimals: 18, }, "1337": { - "name": "Geth Testnet Ether", - "symbol": "ETH", - "decimals": 18 + name: "Geth Testnet Ether", + symbol: "ETH", + decimals: 18, }, "1338": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 + name: "LAVA", + symbol: "LAVA", + decimals: 18, }, "1339": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 + name: "LAVA", + symbol: "LAVA", + decimals: 18, }, "1343": { - "name": "BLITZ GAS", - "symbol": "BGAS", - "decimals": 18 + name: "BLITZ GAS", + symbol: "BGAS", + decimals: 18, }, "1353": { - "name": "Crazy Internet Coin", - "symbol": "CIC", - "decimals": 18 + name: "Crazy Internet Coin", + symbol: "CIC", + decimals: 18, }, "1369": { - "name": "Zakumi Chain Native Token", - "symbol": "ZAFIC", - "decimals": 18 + name: "Zakumi Chain Native Token", + symbol: "ZAFIC", + decimals: 18, }, "1370": { - "name": "Rama", - "symbol": "RAMA", - "decimals": 18 + name: "Rama", + symbol: "RAMA", + decimals: 18, }, "1377": { - "name": "Rama", - "symbol": "tRAMA", - "decimals": 18 + name: "Rama", + symbol: "tRAMA", + decimals: 18, }, "1379": { - "name": "Kalar", - "symbol": "KLC", - "decimals": 18 + name: "Kalar", + symbol: "KLC", + decimals: 18, }, "1388": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 + name: "SINSO", + symbol: "SINSO", + decimals: 18, }, "1392": { - "name": "Joseon Mun", - "symbol": "JSM", - "decimals": 18 + name: "Joseon Mun", + symbol: "JSM", + decimals: 18, }, "1414": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1433": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 + name: "Rikeza", + symbol: "RIK", + decimals: 18, }, "1440": { - "name": "LAS", - "symbol": "LAS", - "decimals": 18 + name: "LAS", + symbol: "LAS", + decimals: 18, }, "1442": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1452": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 + name: "GANG", + symbol: "GANG", + decimals: 18, }, "1453": { - "name": "Metatime Coin", - "symbol": "MTC", - "decimals": 18 + name: "Metatime Coin", + symbol: "MTC", + decimals: 18, }, "1455": { - "name": "CTEX", - "symbol": "CTEX", - "decimals": 18 + name: "CTEX", + symbol: "CTEX", + decimals: 18, }, "1490": { - "name": "Vitruveo Coin", - "symbol": "VTRU", - "decimals": 18 + name: "Vitruveo Coin", + symbol: "VTRU", + decimals: 18, }, "1499": { - "name": "iDos Games Coin", - "symbol": "IGC", - "decimals": 18 + name: "iDos Games Coin", + symbol: "IGC", + decimals: 18, }, "1501": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "1506": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 + name: "KSX", + symbol: "KSX", + decimals: 18, }, "1507": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 + name: "KSX", + symbol: "KSX", + decimals: 18, }, "1515": { - "name": "Beagle", - "symbol": "BG", - "decimals": 18 + name: "Beagle", + symbol: "BG", + decimals: 18, }, "1559": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 + name: "TENET", + symbol: "TENET", + decimals: 18, }, "1617": { - "name": "Ethereum Inscription", - "symbol": "ETINS", - "decimals": 18 + name: "Ethereum Inscription", + symbol: "ETINS", + decimals: 18, }, "1618": { - "name": "Catecoin", - "symbol": "CATE", - "decimals": 18 + name: "Catecoin", + symbol: "CATE", + decimals: 18, }, "1620": { - "name": "Atheios Ether", - "symbol": "ATH", - "decimals": 18 + name: "Atheios Ether", + symbol: "ATH", + decimals: 18, }, "1625": { - "name": "Gravity", - "symbol": "G.", - "decimals": 18 + name: "Gravity", + symbol: "G.", + decimals: 18, }, "1657": { - "name": "Bitcoin Asset", - "symbol": "BTA", - "decimals": 18 + name: "Bitcoin Asset", + symbol: "BTA", + decimals: 18, }, "1662": { - "name": "Licoin", - "symbol": "LCN", - "decimals": 18 + name: "Licoin", + symbol: "LCN", + decimals: 18, }, "1663": { - "name": "Testnet Zen", - "symbol": "tZEN", - "decimals": 18 + name: "Testnet Zen", + symbol: "tZEN", + decimals: 18, }, "1686": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1687": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1688": { - "name": "LUDAN", - "symbol": "LUDAN", - "decimals": 18 + name: "LUDAN", + symbol: "LUDAN", + decimals: 18, }, "1701": { - "name": "ANY", - "symbol": "ANY", - "decimals": 18 + name: "ANY", + symbol: "ANY", + decimals: 18, }, "1707": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 + name: "Jinda", + symbol: "JINDA", + decimals: 18, }, "1708": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 + name: "Jinda", + symbol: "JINDA", + decimals: 18, }, "1717": { - "name": "Doric Native Token", - "symbol": "DRC", - "decimals": 18 + name: "Doric Native Token", + symbol: "DRC", + decimals: 18, }, "1718": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 + name: "Palette Token", + symbol: "PLT", + decimals: 18, }, "1729": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1740": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "1750": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "1773": { - "name": "Grams", - "symbol": "GRAMS", - "decimals": 18 + name: "Grams", + symbol: "GRAMS", + decimals: 18, }, "1777": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 + name: "GANG", + symbol: "GANG", + decimals: 18, }, "1789": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1804": { - "name": "Climate awaReness Coin", - "symbol": "CRC", - "decimals": 18 + name: "Climate awaReness Coin", + symbol: "CRC", + decimals: 18, }, "1807": { - "name": "Rabbit Analog Test Chain Native Token ", - "symbol": "rAna", - "decimals": 18 + name: "Rabbit Analog Test Chain Native Token ", + symbol: "rAna", + decimals: 18, }, "1818": { - "name": "Cube Chain Native Token", - "symbol": "CUBE", - "decimals": 18 + name: "Cube Chain Native Token", + symbol: "CUBE", + decimals: 18, }, "1819": { - "name": "Cube Chain Test Native Token", - "symbol": "CUBET", - "decimals": 18 + name: "Cube Chain Test Native Token", + symbol: "CUBET", + decimals: 18, }, "1821": { - "name": "RUBY Smart Chain Native Token", - "symbol": "RUBY", - "decimals": 18 + name: "RUBY Smart Chain Native Token", + symbol: "RUBY", + decimals: 18, }, "1856": { - "name": "Teslafunds Ether", - "symbol": "TSF", - "decimals": 18 + name: "Teslafunds Ether", + symbol: "TSF", + decimals: 18, }, "1875": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 + name: "WhiteBIT Coin", + symbol: "WBT", + decimals: 18, }, "1881": { - "name": "Gitshock Cartenz", - "symbol": "tGTFX", - "decimals": 18 + name: "Gitshock Cartenz", + symbol: "tGTFX", + decimals: 18, }, "1890": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "1891": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "1898": { - "name": "BOYACoin", - "symbol": "BOY", - "decimals": 18 + name: "BOYACoin", + symbol: "BOY", + decimals: 18, }, "1904": { - "name": "SCN", - "symbol": "SCN", - "decimals": 18 + name: "SCN", + symbol: "SCN", + decimals: 18, }, "1907": { - "name": "Bitci", - "symbol": "BITCI", - "decimals": 18 + name: "Bitci", + symbol: "BITCI", + decimals: 18, }, "1908": { - "name": "Test Bitci", - "symbol": "TBITCI", - "decimals": 18 + name: "Test Bitci", + symbol: "TBITCI", + decimals: 18, }, "1909": { - "name": "Merkle", - "symbol": "MRK", - "decimals": 18 + name: "Merkle", + symbol: "MRK", + decimals: 18, }, "1911": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1912": { - "name": "RUBY Smart Chain Native Token", - "symbol": "tRUBY", - "decimals": 18 + name: "RUBY Smart Chain Native Token", + symbol: "tRUBY", + decimals: 18, }, "1918": { - "name": "UPBEth", - "symbol": "UPBEth", - "decimals": 18 + name: "UPBEth", + symbol: "UPBEth", + decimals: 18, }, "1945": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 + name: "ONUS", + symbol: "ONUS", + decimals: 18, }, "1951": { - "name": "DOINX", - "symbol": "DOINX", - "decimals": 18 + name: "DOINX", + symbol: "DOINX", + decimals: 18, }, "1953": { - "name": "Selendra", - "symbol": "tSEL", - "decimals": 18 + name: "Selendra", + symbol: "tSEL", + decimals: 18, }, "1954": { - "name": "Dexilla Native Token", - "symbol": "DXZ", - "decimals": 18 + name: "Dexilla Native Token", + symbol: "DXZ", + decimals: 18, }, "1956": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "1961": { - "name": "Selendra", - "symbol": "SEL", - "decimals": 18 + name: "Selendra", + symbol: "SEL", + decimals: 18, }, "1967": { - "name": "Eleanor Metacoin", - "symbol": "MTC", - "decimals": 18 + name: "Eleanor Metacoin", + symbol: "MTC", + decimals: 18, }, "1969": { - "name": "Super Chain Native Token", - "symbol": "TSCS", - "decimals": 18 + name: "Super Chain Native Token", + symbol: "TSCS", + decimals: 18, }, "1970": { - "name": "Super Chain Native Token", - "symbol": "SCS", - "decimals": 18 + name: "Super Chain Native Token", + symbol: "SCS", + decimals: 18, }, "1971": { - "name": "ATLR", - "symbol": "ATLR", - "decimals": 18 + name: "ATLR", + symbol: "ATLR", + decimals: 18, }, "1972": { - "name": "RedeCoin", - "symbol": "REDEV2", - "decimals": 18 + name: "RedeCoin", + symbol: "REDEV2", + decimals: 18, }, "1975": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 + name: "ONUS", + symbol: "ONUS", + decimals: 18, }, "1984": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 + name: "Eurus", + symbol: "EUN", + decimals: 18, }, "1985": { - "name": "Tushy Token", - "symbol": "TUSHY", - "decimals": 18 + name: "Tushy Token", + symbol: "TUSHY", + decimals: 18, }, "1986": { - "name": "Tushy Token", - "symbol": "TUSHY", - "decimals": 18 + name: "Tushy Token", + symbol: "TUSHY", + decimals: 18, }, "1987": { - "name": "EtherGem Ether", - "symbol": "EGEM", - "decimals": 18 + name: "EtherGem Ether", + symbol: "EGEM", + decimals: 18, }, "1992": { - "name": "USD Coin", - "symbol": "USDC", - "decimals": 18 + name: "USD Coin", + symbol: "USDC", + decimals: 18, }, "1994": { - "name": "EKTA", - "symbol": "EKTA", - "decimals": 18 + name: "EKTA", + symbol: "EKTA", + decimals: 18, }, "1995": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 + name: "EDEXA", + symbol: "EDX", + decimals: 18, }, "1996": { - "name": "DMT", - "symbol": "DMT", - "decimals": 18 + name: "DMT", + symbol: "DMT", + decimals: 18, }, "1997": { - "name": "Kyoto", - "symbol": "KYOTO", - "decimals": 18 + name: "Kyoto", + symbol: "KYOTO", + decimals: 18, }, "1998": { - "name": "Kyoto", - "symbol": "KYOTO", - "decimals": 18 + name: "Kyoto", + symbol: "KYOTO", + decimals: 18, }, "2000": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 + name: "Dogecoin", + symbol: "DOGE", + decimals: 18, }, "2001": { - "name": "milkAda", - "symbol": "mADA", - "decimals": 18 + name: "milkAda", + symbol: "mADA", + decimals: 18, }, "2002": { - "name": "milkALGO", - "symbol": "mALGO", - "decimals": 18 + name: "milkALGO", + symbol: "mALGO", + decimals: 18, }, "2004": { - "name": "MetaLink", - "symbol": "MTL", - "decimals": 18 + name: "MetaLink", + symbol: "MTL", + decimals: 18, }, "2008": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 + name: "CloudWalk Native Token", + symbol: "CWN", + decimals: 18, }, "2009": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 + name: "CloudWalk Native Token", + symbol: "CWN", + decimals: 18, }, "2013": { - "name": "GAS", - "symbol": "GAS", - "decimals": 18 + name: "GAS", + symbol: "GAS", + decimals: 18, }, "2014": { - "name": "NOW Coin", - "symbol": "NOW", - "decimals": 18 + name: "NOW Coin", + symbol: "NOW", + decimals: 18, }, "2016": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 + name: "MainnetZ", + symbol: "NetZ", + decimals: 18, }, "2017": { - "name": "Telcoin", - "symbol": "TEL", - "decimals": 18 + name: "Telcoin", + symbol: "TEL", + decimals: 18, }, "2018": { - "name": "USD", - "symbol": "USD", - "decimals": 18 + name: "USD", + symbol: "USD", + decimals: 18, }, "2019": { - "name": "USD", - "symbol": "USD", - "decimals": 18 + name: "USD", + symbol: "USD", + decimals: 18, }, "2020": { - "name": "USD", - "symbol": "USD", - "decimals": 18 + name: "USD", + symbol: "USD", + decimals: 18, }, "2021": { - "name": "Edgeware", - "symbol": "EDG", - "decimals": 18 + name: "Edgeware", + symbol: "EDG", + decimals: 18, }, "2022": { - "name": "Testnet EDG", - "symbol": "tEDG", - "decimals": 18 + name: "Testnet EDG", + symbol: "tEDG", + decimals: 18, }, "2023": { - "name": "test-Shuffle", - "symbol": "tSFL", - "decimals": 18 + name: "test-Shuffle", + symbol: "tSFL", + decimals: 18, }, "2024": { - "name": "SWANETH", - "symbol": "sETH", - "decimals": 18 + name: "SWANETH", + symbol: "sETH", + decimals: 18, }, "2025": { - "name": "Rangers Protocol Gas", - "symbol": "RPG", - "decimals": 18 + name: "Rangers Protocol Gas", + symbol: "RPG", + decimals: 18, }, "2026": { - "name": "Edgeless Wrapped Eth", - "symbol": "EwEth", - "decimals": 18 + name: "Edgeless Wrapped Eth", + symbol: "EwEth", + decimals: 18, }, "2031": { - "name": "Centrifuge", - "symbol": "CFG", - "decimals": 18 + name: "Centrifuge", + symbol: "CFG", + decimals: 18, }, "2032": { - "name": "Catalyst CFG", - "symbol": "NCFG", - "decimals": 18 + name: "Catalyst CFG", + symbol: "NCFG", + decimals: 18, }, "2035": { - "name": "Phala", - "symbol": "PHA", - "decimals": 18 + name: "Phala", + symbol: "PHA", + decimals: 18, }, "2037": { - "name": "Shrapgas", - "symbol": "SHRAP", - "decimals": 18 + name: "Shrapgas", + symbol: "SHRAP", + decimals: 18, }, "2038": { - "name": "SHRAPG", - "symbol": "SHRAPG", - "decimals": 18 + name: "SHRAPG", + symbol: "SHRAPG", + decimals: 18, }, "2039": { - "name": "TZERO", - "symbol": "TZERO", - "decimals": 18 + name: "TZERO", + symbol: "TZERO", + decimals: 18, }, "2040": { - "name": "VANRY", - "symbol": "VANRY", - "decimals": 18 + name: "VANRY", + symbol: "VANRY", + decimals: 18, }, "2043": { - "name": "NeuroWeb Token", - "symbol": "NEURO", - "decimals": 12 + name: "NeuroWeb Token", + symbol: "NEURO", + decimals: 12, }, "2044": { - "name": "Shrapnel Gas Token", - "symbol": "SHRAPG", - "decimals": 18 + name: "Shrapnel Gas Token", + symbol: "SHRAPG", + decimals: 18, }, "2045": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "2047": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 + name: "STOS", + symbol: "STOS", + decimals: 18, }, "2048": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 + name: "STOS", + symbol: "STOS", + decimals: 18, }, "2049": { - "name": "Movo Smart Chain", - "symbol": "MOVO", - "decimals": 18 + name: "Movo Smart Chain", + symbol: "MOVO", + decimals: 18, }, "2077": { - "name": "Qkacoin", - "symbol": "QKA", - "decimals": 18 + name: "Qkacoin", + symbol: "QKA", + decimals: 18, }, "2088": { - "name": "Altair", - "symbol": "AIR", - "decimals": 18 + name: "Altair", + symbol: "AIR", + decimals: 18, }, "2100": { - "name": "Ecoball Coin", - "symbol": "ECO", - "decimals": 18 + name: "Ecoball Coin", + symbol: "ECO", + decimals: 18, }, "2101": { - "name": "Espuma Coin", - "symbol": "ECO", - "decimals": 18 + name: "Espuma Coin", + symbol: "ECO", + decimals: 18, }, "2109": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 + name: "Sama Token", + symbol: "SAMA", + decimals: 18, }, "2112": { - "name": "UCASH", - "symbol": "UCASH", - "decimals": 18 + name: "UCASH", + symbol: "UCASH", + decimals: 18, }, "2121": { - "name": "Catena", - "symbol": "CMCX", - "decimals": 18 + name: "Catena", + symbol: "CMCX", + decimals: 18, }, "2122": { - "name": "METAD", - "symbol": "METAD", - "decimals": 18 + name: "METAD", + symbol: "METAD", + decimals: 18, }, "2124": { - "name": "Metaunit", - "symbol": "MEU", - "decimals": 18 + name: "Metaunit", + symbol: "MEU", + decimals: 18, }, "2136": { - "name": "Dolarz", - "symbol": "Dolarz", - "decimals": 18 + name: "Dolarz", + symbol: "Dolarz", + decimals: 18, }, "2137": { - "name": "USD Coin", - "symbol": "USDC", - "decimals": 18 + name: "USD Coin", + symbol: "USDC", + decimals: 18, }, "2138": { - "name": "testEther", - "symbol": "tETH", - "decimals": 18 + name: "testEther", + symbol: "tETH", + decimals: 18, }, "2140": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "2141": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "2151": { - "name": "BOSAGORA", - "symbol": "BOA", - "decimals": 18 + name: "BOSAGORA", + symbol: "BOA", + decimals: 18, }, "2152": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 + name: "FRA", + symbol: "FRA", + decimals: 18, }, "2153": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 + name: "FRA", + symbol: "FRA", + decimals: 18, }, "2154": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 + name: "FRA", + symbol: "FRA", + decimals: 18, }, "2199": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 + name: "Sama Token", + symbol: "SAMA", + decimals: 18, }, "2202": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 + name: "Antofy", + symbol: "ABN", + decimals: 18, }, "2203": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "2213": { - "name": "EVA", - "symbol": "EVA", - "decimals": 18 + name: "EVA", + symbol: "EVA", + decimals: 18, }, "2221": { - "name": "TKava", - "symbol": "TKAVA", - "decimals": 18 + name: "TKava", + symbol: "TKAVA", + decimals: 18, }, "2222": { - "name": "Kava", - "symbol": "KAVA", - "decimals": 18 + name: "Kava", + symbol: "KAVA", + decimals: 18, }, "2223": { - "name": "VNDT", - "symbol": "VNDT", - "decimals": 18 + name: "VNDT", + symbol: "VNDT", + decimals: 18, }, "2241": { - "name": "Krest", - "symbol": "KRST", - "decimals": 18 + name: "Krest", + symbol: "KRST", + decimals: 18, }, "2300": { - "name": "BOMB Token", - "symbol": "BOMB", - "decimals": 18 + name: "BOMB Token", + symbol: "BOMB", + decimals: 18, }, "2306": { - "name": "Ebro", - "symbol": "ebro", - "decimals": 18 + name: "Ebro", + symbol: "ebro", + decimals: 18, }, "2309": { - "name": "Arev", - "symbol": "ARÉV", - "decimals": 18 + name: "Arev", + symbol: "ARÉV", + decimals: 18, }, "2323": { - "name": "SMA", - "symbol": "tSMA", - "decimals": 18 + name: "SMA", + symbol: "tSMA", + decimals: 18, }, "2330": { - "name": "Altcoin", - "symbol": "ALT", - "decimals": 18 + name: "Altcoin", + symbol: "ALT", + decimals: 18, }, "2331": { - "name": "RSS3", - "symbol": "RSS3", - "decimals": 18 + name: "RSS3", + symbol: "RSS3", + decimals: 18, }, "2332": { - "name": "Soma Native Token", - "symbol": "SMA", - "decimals": 18 + name: "Soma Native Token", + symbol: "SMA", + decimals: 18, }, "2340": { - "name": "Atla", - "symbol": "ATLA", - "decimals": 18 + name: "Atla", + symbol: "ATLA", + decimals: 18, }, "2342": { - "name": "Omnia", - "symbol": "OMNIA", - "decimals": 18 + name: "Omnia", + symbol: "OMNIA", + decimals: 18, }, "2355": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2358": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "2370": { - "name": "Nexis", - "symbol": "NZT", - "decimals": 18 + name: "Nexis", + symbol: "NZT", + decimals: 18, }, "2399": { - "name": "BOMB Token", - "symbol": "tBOMB", - "decimals": 18 + name: "BOMB Token", + symbol: "tBOMB", + decimals: 18, }, "2400": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "2410": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2415": { - "name": "XODEX Native Token", - "symbol": "XODEX", - "decimals": 18 + name: "XODEX Native Token", + symbol: "XODEX", + decimals: 18, }, "2425": { - "name": "King Of Legends", - "symbol": "KOL", - "decimals": 18 + name: "King Of Legends", + symbol: "KOL", + decimals: 18, }, "2442": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2458": { - "name": "Hybrid Chain Native Token", - "symbol": "tHRC", - "decimals": 18 + name: "Hybrid Chain Native Token", + symbol: "tHRC", + decimals: 18, }, "2468": { - "name": "Hybrid Chain Native Token", - "symbol": "HRC", - "decimals": 18 + name: "Hybrid Chain Native Token", + symbol: "HRC", + decimals: 18, }, "2484": { - "name": "Unicorn Ultra Nebulas Testnet", - "symbol": "U2U", - "decimals": 18 + name: "Unicorn Ultra Nebulas Testnet", + symbol: "U2U", + decimals: 18, }, "2522": { - "name": "Frax Ether", - "symbol": "frxETH", - "decimals": 18 + name: "Frax Ether", + symbol: "frxETH", + decimals: 18, }, "2525": { - "name": "Injective", - "symbol": "INJ", - "decimals": 18 + name: "Injective", + symbol: "INJ", + decimals: 18, }, "2559": { - "name": "KorthoChain", - "symbol": "KTO", - "decimals": 11 + name: "KorthoChain", + symbol: "KTO", + decimals: 11, }, "2569": { - "name": "TechPay", - "symbol": "TPC", - "decimals": 18 + name: "TechPay", + symbol: "TPC", + decimals: 18, }, "2606": { - "name": "Climate awaReness Coin", - "symbol": "CRC", - "decimals": 18 + name: "Climate awaReness Coin", + symbol: "CRC", + decimals: 18, }, "2611": { - "name": "Redlight Coin", - "symbol": "REDLC", - "decimals": 18 + name: "Redlight Coin", + symbol: "REDLC", + decimals: 18, }, "2612": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 + name: "EZChain", + symbol: "EZC", + decimals: 18, }, "2613": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 + name: "EZChain", + symbol: "EZC", + decimals: 18, }, "2625": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 + name: "WhiteBIT Coin", + symbol: "WBT", + decimals: 18, }, "2648": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "2649": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "2662": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2710": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2718": { - "name": "KLAOS", - "symbol": "KLAOS", - "decimals": 18 + name: "KLAOS", + symbol: "KLAOS", + decimals: 18, }, "2730": { - "name": "tXR", - "symbol": "tXR", - "decimals": 18 + name: "tXR", + symbol: "tXR", + decimals: 18, }, "2731": { - "name": "TIME", - "symbol": "TIME", - "decimals": 18 + name: "TIME", + symbol: "TIME", + decimals: 18, }, "2748": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2777": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2810": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2907": { - "name": "Elux Chain", - "symbol": "ELUX", - "decimals": 18 + name: "Elux Chain", + symbol: "ELUX", + decimals: 18, }, "2911": { - "name": "TOPIA", - "symbol": "TOPIA", - "decimals": 18 + name: "TOPIA", + symbol: "TOPIA", + decimals: 18, }, "2941": { - "name": "Xenon Testnet", - "symbol": "tXEN", - "decimals": 18 + name: "Xenon Testnet", + symbol: "tXEN", + decimals: 18, }, "2999": { - "name": "BTY", - "symbol": "BTY", - "decimals": 18 + name: "BTY", + symbol: "BTY", + decimals: 18, }, "3000": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 + name: "CPAY", + symbol: "CPAY", + decimals: 18, }, "3001": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 + name: "CPAY", + symbol: "CPAY", + decimals: 18, }, "3003": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 + name: "Canxium", + symbol: "CAU", + decimals: 18, }, "3011": { - "name": "3ULL", - "symbol": "3ULL", - "decimals": 18 + name: "3ULL", + symbol: "3ULL", + decimals: 18, }, "3031": { - "name": "Orlando", - "symbol": "ORL", - "decimals": 18 + name: "Orlando", + symbol: "ORL", + decimals: 18, }, "3033": { - "name": "Rebus", - "symbol": "REBUS", - "decimals": 18 + name: "Rebus", + symbol: "REBUS", + decimals: 18, }, "3068": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 + name: "Bifrost", + symbol: "BFC", + decimals: 18, }, "3073": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 + name: "Move", + symbol: "MOVE", + decimals: 18, }, "3100": { - "name": "IMMU", - "symbol": "IMMU", - "decimals": 18 + name: "IMMU", + symbol: "IMMU", + decimals: 18, }, "3102": { - "name": "VFI", - "symbol": "VFI", - "decimals": 18 + name: "VFI", + symbol: "VFI", + decimals: 18, }, "3109": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "3110": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "3269": { - "name": "Dubxcoin mainnet", - "symbol": "DUBX", - "decimals": 18 + name: "Dubxcoin mainnet", + symbol: "DUBX", + decimals: 18, }, "3270": { - "name": "Dubxcoin testnet", - "symbol": "TDUBX", - "decimals": 18 + name: "Dubxcoin testnet", + symbol: "TDUBX", + decimals: 18, }, "3306": { - "name": "Debounce Network", - "symbol": "DB", - "decimals": 18 + name: "Debounce Network", + symbol: "DB", + decimals: 18, }, "3331": { - "name": "ZCore", - "symbol": "ZCR", - "decimals": 18 + name: "ZCore", + symbol: "ZCR", + decimals: 18, }, "3333": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3334": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 + name: "Web3Q", + symbol: "W3Q", + decimals: 18, }, "3335": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3400": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 + name: "PRB", + symbol: "PRB", + decimals: 18, }, "3424": { - "name": "Evolve", - "symbol": "EVO", - "decimals": 18 + name: "Evolve", + symbol: "EVO", + decimals: 18, }, "3434": { - "name": "SCAI", - "symbol": "SCAI", - "decimals": 18 + name: "SCAI", + symbol: "SCAI", + decimals: 18, }, "3456": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "3490": { - "name": "GTC", - "symbol": "GTC", - "decimals": 18 + name: "GTC", + symbol: "GTC", + decimals: 18, }, "3500": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 + name: "PRB", + symbol: "PRB", + decimals: 18, }, "3501": { - "name": "JFIN Coin", - "symbol": "JFIN", - "decimals": 18 + name: "JFIN Coin", + symbol: "JFIN", + decimals: 18, }, "3601": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 + name: "pando-token", + symbol: "PTX", + decimals: 18, }, "3602": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 + name: "pando-token", + symbol: "PTX", + decimals: 18, }, "3630": { - "name": "Tycooncoin", - "symbol": "TYCO", - "decimals": 18 + name: "Tycooncoin", + symbol: "TYCO", + decimals: 18, }, "3636": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 + name: "Botanix", + symbol: "BTC", + decimals: 18, }, "3637": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 + name: "Botanix", + symbol: "BTC", + decimals: 18, }, "3639": { - "name": "ISLAMICOIN", - "symbol": "ISLAMI", - "decimals": 18 + name: "ISLAMICOIN", + symbol: "ISLAMI", + decimals: 18, }, "3645": { - "name": "ISLAMICOIN", - "symbol": "ISLAMI", - "decimals": 18 + name: "ISLAMICOIN", + symbol: "ISLAMI", + decimals: 18, }, "3666": { - "name": "J", - "symbol": "J", - "decimals": 18 + name: "J", + symbol: "J", + decimals: 18, }, "3690": { - "name": "Bittex", - "symbol": "BTX", - "decimals": 18 + name: "Bittex", + symbol: "BTX", + decimals: 18, }, "3693": { - "name": "Empire", - "symbol": "EMPIRE", - "decimals": 18 + name: "Empire", + symbol: "EMPIRE", + decimals: 18, }, "3698": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 + name: "SenjePowers", + symbol: "SPC", + decimals: 18, }, "3699": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 + name: "SenjePowers", + symbol: "SPC", + decimals: 18, }, "3737": { - "name": "Crossbell Token", - "symbol": "CSB", - "decimals": 18 + name: "Crossbell Token", + symbol: "CSB", + decimals: 18, }, "3776": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3797": { - "name": "AlveyCoin", - "symbol": "ALV", - "decimals": 18 + name: "AlveyCoin", + symbol: "ALV", + decimals: 18, }, "3799": { - "name": "Testnet Tangle Network Token", - "symbol": "tTNT", - "decimals": 18 + name: "Testnet Tangle Network Token", + symbol: "tTNT", + decimals: 18, }, "3885": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3888": { - "name": "KalyCoin", - "symbol": "KLC", - "decimals": 18 + name: "KalyCoin", + symbol: "KLC", + decimals: 18, }, "3889": { - "name": "KalyCoin", - "symbol": "KLC", - "decimals": 18 + name: "KalyCoin", + symbol: "KLC", + decimals: 18, }, "3912": { - "name": "DRAC", - "symbol": "DRAC", - "decimals": 18 + name: "DRAC", + symbol: "DRAC", + decimals: 18, }, "3939": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 + name: "DOS", + symbol: "DOS", + decimals: 18, }, "3966": { - "name": "DYNO Token", - "symbol": "DYNO", - "decimals": 18 + name: "DYNO Token", + symbol: "DYNO", + decimals: 18, }, "3967": { - "name": "DYNO Token", - "symbol": "tDYNO", - "decimals": 18 + name: "DYNO Token", + symbol: "tDYNO", + decimals: 18, }, "3993": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "3999": { - "name": "YCC", - "symbol": "YCC", - "decimals": 18 + name: "YCC", + symbol: "YCC", + decimals: 18, }, "4000": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 + name: "OZONE", + symbol: "OZO", + decimals: 18, }, "4001": { - "name": "Peperium Chain Testnet", - "symbol": "PERIUM", - "decimals": 18 + name: "Peperium Chain Testnet", + symbol: "PERIUM", + decimals: 18, }, "4002": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 + name: "Fantom", + symbol: "FTM", + decimals: 18, }, "4003": { - "name": "XN", - "symbol": "XN", - "decimals": 18 + name: "XN", + symbol: "XN", + decimals: 18, }, "4040": { - "name": "Carbonium", - "symbol": "tCBR", - "decimals": 18 + name: "Carbonium", + symbol: "tCBR", + decimals: 18, }, "4048": { - "name": "GP Token", - "symbol": "GP", - "decimals": 18 + name: "GP Token", + symbol: "GP", + decimals: 18, }, "4058": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 + name: "FTN", + symbol: "FTN", + decimals: 18, }, "4061": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "4062": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "4078": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "4080": { - "name": "Tobe Coin", - "symbol": "TBC", - "decimals": 18 + name: "Tobe Coin", + symbol: "TBC", + decimals: 18, }, "4090": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 + name: "FTN", + symbol: "FTN", + decimals: 18, }, "4096": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 + name: "BNI", + symbol: "$BNI", + decimals: 18, }, "4099": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 + name: "BNI", + symbol: "$BNI", + decimals: 18, }, "4102": { - "name": "testAIOZ", - "symbol": "AIOZ", - "decimals": 18 + name: "testAIOZ", + symbol: "AIOZ", + decimals: 18, }, "4139": { - "name": "HEART", - "symbol": "HEART", - "decimals": 18 + name: "HEART", + symbol: "HEART", + decimals: 18, }, "4141": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 + name: "Tipboxcoin", + symbol: "TPBX", + decimals: 18, }, "4157": { - "name": "XFI", - "symbol": "XFI", - "decimals": 18 + name: "XFI", + symbol: "XFI", + decimals: 18, }, "4181": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 + name: "PHI", + symbol: "Φ", + decimals: 18, }, "4200": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "4201": { - "name": "TestLYX", - "symbol": "LYXt", - "decimals": 18 + name: "TestLYX", + symbol: "LYXt", + decimals: 18, }, "4202": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "4242": { - "name": "Nexi", - "symbol": "NEXI", - "decimals": 18 + name: "Nexi", + symbol: "NEXI", + decimals: 18, }, "4243": { - "name": "NexiV2", - "symbol": "NEXI", - "decimals": 18 + name: "NexiV2", + symbol: "NEXI", + decimals: 18, }, "4337": { - "name": "Beam", - "symbol": "BEAM", - "decimals": 18 + name: "Beam", + symbol: "BEAM", + decimals: 18, }, "4400": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 + name: "Credit", + symbol: "CREDIT", + decimals: 18, }, "4444": { - "name": "Htmlcoin", - "symbol": "HTML", - "decimals": 8 + name: "Htmlcoin", + symbol: "HTML", + decimals: 8, }, "4460": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "4488": { - "name": "Hydra", - "symbol": "HYDRA", - "decimals": 18 + name: "Hydra", + symbol: "HYDRA", + decimals: 18, }, "4544": { - "name": "Emoney Network", - "symbol": "EMYC", - "decimals": 18 + name: "Emoney Network", + symbol: "EMYC", + decimals: 18, }, "4613": { - "name": "VERY", - "symbol": "VERY", - "decimals": 18 + name: "VERY", + symbol: "VERY", + decimals: 18, }, "4653": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "4689": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 + name: "IoTeX", + symbol: "IOTX", + decimals: 18, }, "4690": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 + name: "IoTeX", + symbol: "IOTX", + decimals: 18, }, "4759": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 + name: "MEVerse", + symbol: "MEV", + decimals: 18, }, "4777": { - "name": "BlackFort Testnet Token", - "symbol": "TBXN", - "decimals": 18 + name: "BlackFort Testnet Token", + symbol: "TBXN", + decimals: 18, }, "4893": { - "name": "Globel Chain", - "symbol": "GC", - "decimals": 18 + name: "Globel Chain", + symbol: "GC", + decimals: 18, }, "4918": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 + name: "Venidium", + symbol: "XVM", + decimals: 18, }, "4919": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 + name: "Venidium", + symbol: "XVM", + decimals: 18, }, "4999": { - "name": "BlackFort Token", - "symbol": "BXN", - "decimals": 18 + name: "BlackFort Token", + symbol: "BXN", + decimals: 18, }, "5000": { - "name": "Mantle", - "symbol": "MNT", - "decimals": 18 + name: "Mantle", + symbol: "MNT", + decimals: 18, }, "5001": { - "name": "Testnet Mantle", - "symbol": "MNT", - "decimals": 18 + name: "Testnet Mantle", + symbol: "MNT", + decimals: 18, }, "5002": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 + name: "UNIT", + symbol: "UNIT", + decimals: 18, }, "5003": { - "name": "Sepolia Mantle", - "symbol": "MNT", - "decimals": 18 + name: "Sepolia Mantle", + symbol: "MNT", + decimals: 18, }, "5005": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 + name: "UNIT", + symbol: "UNIT", + decimals: 18, }, "5039": { - "name": "ONIGIRI", - "symbol": "ONGR", - "decimals": 18 + name: "ONIGIRI", + symbol: "ONGR", + decimals: 18, }, "5040": { - "name": "ONIGIRI", - "symbol": "ONGR", - "decimals": 18 + name: "ONIGIRI", + symbol: "ONGR", + decimals: 18, }, "5051": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5100": { - "name": "S-Ether", - "symbol": "ETH", - "decimals": 18 + name: "S-Ether", + symbol: "ETH", + decimals: 18, }, "5101": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5102": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5103": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5104": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5105": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5106": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "5112": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5165": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 + name: "FTN", + symbol: "FTN", + decimals: 18, }, "5169": { - "name": "Service Unit Token", - "symbol": "SU", - "decimals": 18 + name: "Service Unit Token", + symbol: "SU", + decimals: 18, }, "5177": { - "name": "TLChain Network", - "symbol": "TLC", - "decimals": 18 + name: "TLChain Network", + symbol: "TLC", + decimals: 18, }, "5197": { - "name": "EraSwap", - "symbol": "ES", - "decimals": 18 + name: "EraSwap", + symbol: "ES", + decimals: 18, }, "5234": { - "name": "eHMND", - "symbol": "eHMND", - "decimals": 18 + name: "eHMND", + symbol: "eHMND", + decimals: 18, }, "5315": { - "name": "UZMI", - "symbol": "UZMI", - "decimals": 18 + name: "UZMI", + symbol: "UZMI", + decimals: 18, }, "5317": { - "name": "TestBSC", - "symbol": "tBNB", - "decimals": 18 + name: "TestBSC", + symbol: "tBNB", + decimals: 18, }, "5321": { - "name": "ITX", - "symbol": "ITX", - "decimals": 18 + name: "ITX", + symbol: "ITX", + decimals: 18, }, "5353": { - "name": "Tritanium Native Token", - "symbol": "tTRN", - "decimals": 18 + name: "Tritanium Native Token", + symbol: "tTRN", + decimals: 18, }, "5372": { - "name": "Setl", - "symbol": "SETL", - "decimals": 18 + name: "Setl", + symbol: "SETL", + decimals: 18, }, "5424": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 + name: "EDEXA", + symbol: "EDX", + decimals: 18, }, "5439": { - "name": "EGAX", - "symbol": "EGAX", - "decimals": 18 + name: "EGAX", + symbol: "EGAX", + decimals: 18, }, "5522": { - "name": "VEX EVM TESTNET", - "symbol": "VEX", - "decimals": 18 + name: "VEX EVM TESTNET", + symbol: "VEX", + decimals: 18, }, "5551": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5555": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 + name: "Oasys", + symbol: "OAS", + decimals: 18, }, "5611": { - "name": "BNB Chain Native Token", - "symbol": "tBNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "tBNB", + decimals: 18, }, "5615": { - "name": "tARC", - "symbol": "tARC", - "decimals": 18 + name: "tARC", + symbol: "tARC", + decimals: 18, }, "5616": { - "name": "Test Arct", - "symbol": "tARCT", - "decimals": 18 + name: "Test Arct", + symbol: "tARCT", + decimals: 18, }, "5656": { - "name": "QIE Blockchain", - "symbol": "QIE", - "decimals": 18 + name: "QIE Blockchain", + symbol: "QIE", + decimals: 18, }, "5675": { - "name": "Test Filecoin", - "symbol": "tFIL", - "decimals": 18 + name: "Test Filecoin", + symbol: "tFIL", + decimals: 18, }, "5678": { - "name": "TANGO", - "symbol": "TANGO", - "decimals": 18 + name: "TANGO", + symbol: "TANGO", + decimals: 18, }, "5700": { - "name": "Testnet Syscoin", - "symbol": "tSYS", - "decimals": 18 + name: "Testnet Syscoin", + symbol: "tSYS", + decimals: 18, }, "5729": { - "name": "Hik Token", - "symbol": "HIK", - "decimals": 18 + name: "Hik Token", + symbol: "HIK", + decimals: 18, }, "5758": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 + name: "SatoshiChain Coin", + symbol: "SATS", + decimals: 18, }, "5777": { - "name": "Ganache Test Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ganache Test Ether", + symbol: "ETH", + decimals: 18, }, "5845": { - "name": "Tangle", - "symbol": "TNT", - "decimals": 18 + name: "Tangle", + symbol: "TNT", + decimals: 18, }, "5851": { - "name": "ONG", - "symbol": "ONG", - "decimals": 18 + name: "ONG", + symbol: "ONG", + decimals: 18, }, "5869": { - "name": "Rubid", - "symbol": "RBD", - "decimals": 18 + name: "Rubid", + symbol: "RBD", + decimals: 18, }, "6000": { - "name": "BounceBit", - "symbol": "BB", - "decimals": 18 + name: "BounceBit", + symbol: "BB", + decimals: 18, }, "6001": { - "name": "BounceBit", - "symbol": "BB", - "decimals": 18 + name: "BounceBit", + symbol: "BB", + decimals: 18, }, "6065": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 + name: "TRES", + symbol: "TRES", + decimals: 18, }, "6066": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 + name: "TRES", + symbol: "TRES", + decimals: 18, }, "6102": { - "name": "CC", - "symbol": "tCC", - "decimals": 18 + name: "CC", + symbol: "tCC", + decimals: 18, }, "6118": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 + name: "UPTN", + symbol: "UPTN", + decimals: 18, }, "6119": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 + name: "UPTN", + symbol: "UPTN", + decimals: 18, }, "6321": { - "name": "test-EAura", - "symbol": "eAura", - "decimals": 18 + name: "test-EAura", + symbol: "eAura", + decimals: 18, }, "6322": { - "name": "Aura", - "symbol": "AURA", - "decimals": 18 + name: "Aura", + symbol: "AURA", + decimals: 18, }, "6363": { - "name": "Digit Coin", - "symbol": "DGC", - "decimals": 18 + name: "Digit Coin", + symbol: "DGC", + decimals: 18, }, "6502": { - "name": "Peerpay", - "symbol": "P2P", - "decimals": 18 + name: "Peerpay", + symbol: "P2P", + decimals: 18, }, "6552": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 + name: "Scolcoin", + symbol: "SCOL", + decimals: 18, }, "6565": { - "name": "FOX Native Token", - "symbol": "tFOX", - "decimals": 18 + name: "FOX Native Token", + symbol: "tFOX", + decimals: 18, }, "6626": { - "name": "Pixie Chain Native Token", - "symbol": "PIX", - "decimals": 18 + name: "Pixie Chain Native Token", + symbol: "PIX", + decimals: 18, }, "6660": { - "name": "Latest", - "symbol": "LATEST", - "decimals": 18 + name: "Latest", + symbol: "LATEST", + decimals: 18, }, "6661": { - "name": "Cybria", - "symbol": "CYBA", - "decimals": 18 + name: "Cybria", + symbol: "CYBA", + decimals: 18, }, "6666": { - "name": "Cybria", - "symbol": "CYBA", - "decimals": 18 + name: "Cybria", + symbol: "CYBA", + decimals: 18, }, "6688": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 + name: "Eris", + symbol: "ERIS", + decimals: 18, }, "6699": { - "name": "OX", - "symbol": "OX", - "decimals": 18 + name: "OX", + symbol: "OX", + decimals: 18, }, "6701": { - "name": "PAXB", - "symbol": "PAXB", - "decimals": 18 + name: "PAXB", + symbol: "PAXB", + decimals: 18, }, "6779": { - "name": "compverse", - "symbol": "CPV", - "decimals": 18 + name: "compverse", + symbol: "CPV", + decimals: 18, }, "6789": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 + name: "Standard in Gold", + symbol: "STAND", + decimals: 18, }, "6868": { - "name": "POOLS Native Token", - "symbol": "POOLS", - "decimals": 18 + name: "POOLS Native Token", + symbol: "POOLS", + decimals: 18, }, "6969": { - "name": "Tomb", - "symbol": "TOMB", - "decimals": 18 + name: "Tomb", + symbol: "TOMB", + decimals: 18, }, "6999": { - "name": "PSC", - "symbol": "PSC", - "decimals": 18 + name: "PSC", + symbol: "PSC", + decimals: 18, }, "7000": { - "name": "Zeta", - "symbol": "ZETA", - "decimals": 18 + name: "Zeta", + symbol: "ZETA", + decimals: 18, }, "7001": { - "name": "Zeta", - "symbol": "ZETA", - "decimals": 18 + name: "Zeta", + symbol: "ZETA", + decimals: 18, }, "7007": { - "name": "BST Chain", - "symbol": "BSTC", - "decimals": 18 + name: "BST Chain", + symbol: "BSTC", + decimals: 18, }, "7027": { - "name": "Ella", - "symbol": "ELLA", - "decimals": 18 + name: "Ella", + symbol: "ELLA", + decimals: 18, }, "7070": { - "name": "Planq", - "symbol": "PLQ", - "decimals": 18 + name: "Planq", + symbol: "PLQ", + decimals: 18, }, "7077": { - "name": "Planq", - "symbol": "tPLQ", - "decimals": 18 + name: "Planq", + symbol: "tPLQ", + decimals: 18, }, "7100": { - "name": "Dai Stablecoin", - "symbol": "DAI", - "decimals": 18 + name: "Dai Stablecoin", + symbol: "DAI", + decimals: 18, }, "7118": { - "name": "Help The Homeless Coin", - "symbol": "HTH", - "decimals": 18 + name: "Help The Homeless Coin", + symbol: "HTH", + decimals: 18, }, "7171": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 + name: "BITROCK", + symbol: "BROCK", + decimals: 18, }, "7300": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "7331": { - "name": "KLYNTAR", - "symbol": "KLY", - "decimals": 18 + name: "KLYNTAR", + symbol: "KLY", + decimals: 18, }, "7332": { - "name": "Zencash", - "symbol": "ZEN", - "decimals": 18 + name: "Zencash", + symbol: "ZEN", + decimals: 18, }, "7341": { - "name": "Shyft", - "symbol": "SHYFT", - "decimals": 18 + name: "Shyft", + symbol: "SHYFT", + decimals: 18, }, "7484": { - "name": "Raba", - "symbol": "RABA", - "decimals": 18 + name: "Raba", + symbol: "RABA", + decimals: 18, }, "7518": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 + name: "MEVerse", + symbol: "MEV", + decimals: 18, }, "7560": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "7575": { - "name": "Testnet ADIL", - "symbol": "ADIL", - "decimals": 18 + name: "Testnet ADIL", + symbol: "ADIL", + decimals: 18, }, "7576": { - "name": "ADIL", - "symbol": "ADIL", - "decimals": 18 + name: "ADIL", + symbol: "ADIL", + decimals: 18, }, "7668": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 + name: "XRP", + symbol: "XRP", + decimals: 6, }, "7672": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 + name: "XRP", + symbol: "XRP", + decimals: 6, }, "7700": { - "name": "Canto", - "symbol": "CANTO", - "decimals": 18 + name: "Canto", + symbol: "CANTO", + decimals: 18, }, "7701": { - "name": "Testnet Canto", - "symbol": "CANTO", - "decimals": 18 + name: "Testnet Canto", + symbol: "CANTO", + decimals: 18, }, "7771": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 + name: "BITROCK", + symbol: "BROCK", + decimals: 18, }, "7775": { - "name": "GDCC", - "symbol": "GDCC", - "decimals": 18 + name: "GDCC", + symbol: "GDCC", + decimals: 18, }, "7777": { - "name": "Nano Machines", - "symbol": "NMAC", - "decimals": 18 + name: "Nano Machines", + symbol: "NMAC", + decimals: 18, }, "7778": { - "name": "ORENIUM", - "symbol": "ORE", - "decimals": 18 + name: "ORENIUM", + symbol: "ORE", + decimals: 18, }, "7798": { - "name": "USDT Testnet", - "symbol": "USDT", - "decimals": 18 + name: "USDT Testnet", + symbol: "USDT", + decimals: 18, }, "7860": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 + name: "MAAL", + symbol: "MAAL", + decimals: 18, }, "7878": { - "name": "Hazlor Test Coin", - "symbol": "TSCAS", - "decimals": 18 + name: "Hazlor Test Coin", + symbol: "TSCAS", + decimals: 18, }, "7887": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "7895": { - "name": "ARD", - "symbol": "tARD", - "decimals": 18 + name: "ARD", + symbol: "tARD", + decimals: 18, }, "7923": { - "name": "Dot Blox", - "symbol": "DTBX", - "decimals": 18 + name: "Dot Blox", + symbol: "DTBX", + decimals: 18, }, "7924": { - "name": "MO", - "symbol": "MO", - "decimals": 18 + name: "MO", + symbol: "MO", + decimals: 18, }, "7979": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 + name: "DOS", + symbol: "DOS", + decimals: 18, }, "8000": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 + name: "Tele", + symbol: "TELE", + decimals: 18, }, "8001": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 + name: "Tele", + symbol: "TELE", + decimals: 18, }, "8029": { - "name": "MDGL Token", - "symbol": "MDGLT", - "decimals": 18 + name: "MDGL Token", + symbol: "MDGLT", + decimals: 18, }, "8047": { - "name": "Best Of All Time Token", - "symbol": "BOAT", - "decimals": 18 + name: "Best Of All Time Token", + symbol: "BOAT", + decimals: 18, }, "8054": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8080": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 + name: "Shardeum SHM", + symbol: "SHM", + decimals: 18, }, "8081": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 + name: "Shardeum SHM", + symbol: "SHM", + decimals: 18, }, "8082": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 + name: "Shardeum SHM", + symbol: "SHM", + decimals: 18, }, "8086": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 + name: "Bitcoin", + symbol: "BTC", + decimals: 18, }, "8087": { - "name": "E-Dollar", - "symbol": "USD", - "decimals": 18 + name: "E-Dollar", + symbol: "USD", + decimals: 18, }, "8098": { - "name": "StreamuX", - "symbol": "SmuX", - "decimals": 18 + name: "StreamuX", + symbol: "SmuX", + decimals: 18, }, "8131": { - "name": "Qitmeer Testnet", - "symbol": "MEER-T", - "decimals": 18 + name: "Qitmeer Testnet", + symbol: "MEER-T", + decimals: 18, }, "8132": { - "name": "Qitmeer Mixnet", - "symbol": "MEER-M", - "decimals": 18 + name: "Qitmeer Mixnet", + symbol: "MEER-M", + decimals: 18, }, "8133": { - "name": "Qitmeer Privnet", - "symbol": "MEER-P", - "decimals": 18 + name: "Qitmeer Privnet", + symbol: "MEER-P", + decimals: 18, }, "8134": { - "name": "Amana Mainnet", - "symbol": "MEER", - "decimals": 18 + name: "Amana Mainnet", + symbol: "MEER", + decimals: 18, }, "8135": { - "name": "Flana Mainnet", - "symbol": "MEER", - "decimals": 18 + name: "Flana Mainnet", + symbol: "MEER", + decimals: 18, }, "8136": { - "name": "Mizana Mainnet", - "symbol": "MEER", - "decimals": 18 + name: "Mizana Mainnet", + symbol: "MEER", + decimals: 18, }, "8181": { - "name": "Testnet BeOne Chain", - "symbol": "tBOC", - "decimals": 18 + name: "Testnet BeOne Chain", + symbol: "tBOC", + decimals: 18, }, "8192": { - "name": "TQF", - "symbol": "TQF", - "decimals": 18 + name: "TQF", + symbol: "TQF", + decimals: 18, }, "8194": { - "name": "tTQF", - "symbol": "TTQF", - "decimals": 18 + name: "tTQF", + symbol: "TTQF", + decimals: 18, }, "8217": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 + name: "KLAY", + symbol: "KLAY", + decimals: 18, }, "8227": { - "name": "FUEL", - "symbol": "FUEL", - "decimals": 18 + name: "FUEL", + symbol: "FUEL", + decimals: 18, }, "8272": { - "name": "BLOCKTON", - "symbol": "BTON", - "decimals": 18 + name: "BLOCKTON", + symbol: "BTON", + decimals: 18, }, "8285": { - "name": "Kortho Test", - "symbol": "KTO", - "decimals": 11 + name: "Kortho Test", + symbol: "KTO", + decimals: 11, }, "8329": { - "name": "Lorenzo stBTC", - "symbol": "stBTC", - "decimals": 18 + name: "Lorenzo stBTC", + symbol: "stBTC", + decimals: 18, }, "8387": { - "name": "Functionally Universal Coin Kind", - "symbol": "FUCK", - "decimals": 18 + name: "Functionally Universal Coin Kind", + symbol: "FUCK", + decimals: 18, }, "8453": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8654": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 + name: "Toki", + symbol: "TOKI", + decimals: 18, }, "8655": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 + name: "Toki", + symbol: "TOKI", + decimals: 18, }, "8668": { - "name": "Hela HLUSD", - "symbol": "HLUSD", - "decimals": 18 + name: "Hela HLUSD", + symbol: "HLUSD", + decimals: 18, }, "8723": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 + name: "TOOL Global", + symbol: "OLO", + decimals: 18, }, "8724": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 + name: "TOOL Global", + symbol: "OLO", + decimals: 18, }, "8726": { - "name": "Storagechain", - "symbol": "STOR", - "decimals": 18 + name: "Storagechain", + symbol: "STOR", + decimals: 18, }, "8727": { - "name": "Storagechain", - "symbol": "STOR", - "decimals": 18 + name: "Storagechain", + symbol: "STOR", + decimals: 18, }, "8738": { - "name": "Alph Network", - "symbol": "ALPH", - "decimals": 18 + name: "Alph Network", + symbol: "ALPH", + decimals: 18, }, "8768": { - "name": "TMY", - "symbol": "TMY", - "decimals": 18 + name: "TMY", + symbol: "TMY", + decimals: 18, }, "8822": { - "name": "IOTA", - "symbol": "IOTA", - "decimals": 18 + name: "IOTA", + symbol: "IOTA", + decimals: 18, }, "8844": { - "name": "tHydra", - "symbol": "tHYDRA", - "decimals": 18 + name: "tHydra", + symbol: "tHYDRA", + decimals: 18, }, "8848": { - "name": "MARO", - "symbol": "MARO", - "decimals": 18 + name: "MARO", + symbol: "MARO", + decimals: 18, }, "8866": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8880": { - "name": "Unique", - "symbol": "UNQ", - "decimals": 18 + name: "Unique", + symbol: "UNQ", + decimals: 18, }, "8881": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 + name: "Quartz", + symbol: "QTZ", + decimals: 18, }, "8882": { - "name": "Opal", - "symbol": "UNQ", - "decimals": 18 + name: "Opal", + symbol: "UNQ", + decimals: 18, }, "8883": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 + name: "Quartz", + symbol: "QTZ", + decimals: 18, }, "8888": { - "name": "XETA", - "symbol": "XETA", - "decimals": 18 + name: "XETA", + symbol: "XETA", + decimals: 18, }, "8889": { - "name": "VSC", - "symbol": "VSC", - "decimals": 18 + name: "VSC", + symbol: "VSC", + decimals: 18, }, "8890": { - "name": "ORENIUM", - "symbol": "tORE", - "decimals": 18 + name: "ORENIUM", + symbol: "tORE", + decimals: 18, }, "8898": { - "name": "Mammoth Token", - "symbol": "MMT", - "decimals": 18 + name: "Mammoth Token", + symbol: "MMT", + decimals: 18, }, "8899": { - "name": "JIBCOIN", - "symbol": "JBC", - "decimals": 18 + name: "JIBCOIN", + symbol: "JBC", + decimals: 18, }, "8911": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 + name: "ALG", + symbol: "ALG", + decimals: 18, }, "8912": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 + name: "ALG", + symbol: "ALG", + decimals: 18, }, "8921": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 + name: "ALG", + symbol: "ALG", + decimals: 18, }, "8922": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 + name: "ALG", + symbol: "ALG", + decimals: 18, }, "8989": { - "name": "Giant Mammoth Coin", - "symbol": "GMMT", - "decimals": 18 + name: "Giant Mammoth Coin", + symbol: "GMMT", + decimals: 18, }, "8995": { - "name": "BERG", - "symbol": "U+25B3", - "decimals": 18 + name: "BERG", + symbol: "U+25B3", + decimals: 18, }, "9000": { - "name": "test-Evmos", - "symbol": "tEVMOS", - "decimals": 18 + name: "test-Evmos", + symbol: "tEVMOS", + decimals: 18, }, "9001": { - "name": "Evmos", - "symbol": "EVMOS", - "decimals": 18 + name: "Evmos", + symbol: "EVMOS", + decimals: 18, }, "9007": { - "name": "Shido Testnet Token", - "symbol": "SHIDO", - "decimals": 18 + name: "Shido Testnet Token", + symbol: "SHIDO", + decimals: 18, }, "9008": { - "name": "Shido Mainnet Token", - "symbol": "SHIDO", - "decimals": 18 + name: "Shido Mainnet Token", + symbol: "SHIDO", + decimals: 18, }, "9012": { - "name": "BerylBit Chain Native Token", - "symbol": "BRB", - "decimals": 18 + name: "BerylBit Chain Native Token", + symbol: "BRB", + decimals: 18, }, "9024": { - "name": "Nexa Testnet Token", - "symbol": "NEXB", - "decimals": 18 + name: "Nexa Testnet Token", + symbol: "NEXB", + decimals: 18, }, "9025": { - "name": "Nexa Mainnet Token", - "symbol": "NEXB", - "decimals": 18 + name: "Nexa Mainnet Token", + symbol: "NEXB", + decimals: 18, }, "9100": { - "name": "GN Coin", - "symbol": "GNC", - "decimals": 18 + name: "GN Coin", + symbol: "GNC", + decimals: 18, }, "9223": { - "name": "Codefin", - "symbol": "COF", - "decimals": 18 + name: "Codefin", + symbol: "COF", + decimals: 18, }, "9339": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 + name: "Dogcoin", + symbol: "DOGS", + decimals: 18, }, "9393": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "9395": { - "name": "MTHN", - "symbol": "MTHN", - "decimals": 18 + name: "MTHN", + symbol: "MTHN", + decimals: 18, }, "9527": { - "name": "Rangers Protocol Gas", - "symbol": "tRPG", - "decimals": 18 + name: "Rangers Protocol Gas", + symbol: "tRPG", + decimals: 18, }, "9528": { - "name": "QET", - "symbol": "QET", - "decimals": 18 + name: "QET", + symbol: "QET", + decimals: 18, }, "9559": { - "name": "Neonlink Native Token", - "symbol": "tNEON", - "decimals": 18 + name: "Neonlink Native Token", + symbol: "tNEON", + decimals: 18, }, "9700": { - "name": "Oort", - "symbol": "OORT", - "decimals": 18 + name: "Oort", + symbol: "OORT", + decimals: 18, }, "9728": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 + name: "Boba Token", + symbol: "BOBA", + decimals: 18, }, "9768": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 + name: "MainnetZ", + symbol: "NetZ", + decimals: 18, }, "9779": { - "name": "Pepe", - "symbol": "WPEPE", - "decimals": 18 + name: "Pepe", + symbol: "WPEPE", + decimals: 18, }, "9789": { - "name": "Tabi", - "symbol": "TABI", - "decimals": 18 + name: "Tabi", + symbol: "TABI", + decimals: 18, }, "9790": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 + name: "swth", + symbol: "SWTH", + decimals: 18, }, "9792": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 + name: "swth", + symbol: "SWTH", + decimals: 18, }, "9797": { - "name": "OptimusZ7", - "symbol": "OZ7", - "decimals": 18 + name: "OptimusZ7", + symbol: "OZ7", + decimals: 18, }, "9818": { - "name": "tIMP", - "symbol": "tIMP", - "decimals": 18 + name: "tIMP", + symbol: "tIMP", + decimals: 18, }, "9819": { - "name": "IMP", - "symbol": "IMP", - "decimals": 18 + name: "IMP", + symbol: "IMP", + decimals: 18, }, "9888": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 + name: "Dogecoin", + symbol: "DOGE", + decimals: 18, }, "9898": { - "name": "Larissa", - "symbol": "LRS", - "decimals": 18 + name: "Larissa", + symbol: "LRS", + decimals: 18, }, "9911": { - "name": "ESPENTO", - "symbol": "SPENT", - "decimals": 18 + name: "ESPENTO", + symbol: "SPENT", + decimals: 18, }, "9977": { - "name": "MIND Coin", - "symbol": "tMIND", - "decimals": 18 + name: "MIND Coin", + symbol: "tMIND", + decimals: 18, }, "9980": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "BNB", + decimals: 18, }, "9981": { - "name": "V2X", - "symbol": "V2X", - "decimals": 18 + name: "V2X", + symbol: "V2X", + decimals: 18, }, "9990": { - "name": "Agung", - "symbol": "AGNG", - "decimals": 18 + name: "Agung", + symbol: "AGNG", + decimals: 18, }, "9996": { - "name": "MIND Coin", - "symbol": "MIND", - "decimals": 18 + name: "MIND Coin", + symbol: "MIND", + decimals: 18, }, "9997": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "9998": { - "name": "Ztcer", - "symbol": "ZTC", - "decimals": 5 + name: "Ztcer", + symbol: "ZTC", + decimals: 5, }, "9999": { - "name": "MYN", - "symbol": "MYN", - "decimals": 18 + name: "MYN", + symbol: "MYN", + decimals: 18, }, "10000": { - "name": "Bitcoin Cash", - "symbol": "BCH", - "decimals": 18 + name: "Bitcoin Cash", + symbol: "BCH", + decimals: 18, }, "10001": { - "name": "Bitcoin Cash Test Token", - "symbol": "BCHT", - "decimals": 18 + name: "Bitcoin Cash Test Token", + symbol: "BCHT", + decimals: 18, }, "10024": { - "name": "Gon Token", - "symbol": "GT", - "decimals": 18 + name: "Gon Token", + symbol: "GT", + decimals: 18, }, "10081": { - "name": "Japan Open Chain Testnet Token", - "symbol": "JOCT", - "decimals": 18 + name: "Japan Open Chain Testnet Token", + symbol: "JOCT", + decimals: 18, }, "10086": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "10101": { - "name": "GEN", - "symbol": "GEN", - "decimals": 18 + name: "GEN", + symbol: "GEN", + decimals: 18, }, "10200": { - "name": "Chiado xDAI", - "symbol": "XDAI", - "decimals": 18 + name: "Chiado xDAI", + symbol: "XDAI", + decimals: 18, }, "10201": { - "name": "Power", - "symbol": "PWR", - "decimals": 18 + name: "Power", + symbol: "PWR", + decimals: 18, }, "10222": { - "name": "GLC", - "symbol": "GLC", - "decimals": 18 + name: "GLC", + symbol: "GLC", + decimals: 18, }, "10242": { - "name": "Arthera", - "symbol": "AA", - "decimals": 18 + name: "Arthera", + symbol: "AA", + decimals: 18, }, "10243": { - "name": "Arthera", - "symbol": "AA", - "decimals": 18 + name: "Arthera", + symbol: "AA", + decimals: 18, }, "10248": { - "name": "0XT", - "symbol": "0XT", - "decimals": 18 + name: "0XT", + symbol: "0XT", + decimals: 18, }, "10321": { - "name": "TAO", - "symbol": "TAO", - "decimals": 18 + name: "TAO", + symbol: "TAO", + decimals: 18, }, "10324": { - "name": "TAO", - "symbol": "TAO", - "decimals": 18 + name: "TAO", + symbol: "TAO", + decimals: 18, }, "10395": { - "name": "Worldland", - "symbol": "WLC", - "decimals": 18 + name: "Worldland", + symbol: "WLC", + decimals: 18, }, "10507": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 + name: "NUM Token", + symbol: "NUM", + decimals: 18, }, "10508": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 + name: "NUM Token", + symbol: "NUM", + decimals: 18, }, "10823": { - "name": "CryptoCoinPay", - "symbol": "CCP", - "decimals": 18 + name: "CryptoCoinPay", + symbol: "CCP", + decimals: 18, }, "10849": { - "name": "L1", - "symbol": "L1", - "decimals": 18 + name: "L1", + symbol: "L1", + decimals: 18, }, "10850": { - "name": "L1 ID", - "symbol": "L1ID", - "decimals": 18 + name: "L1 ID", + symbol: "L1ID", + decimals: 18, }, "10946": { - "name": "Quadrans Coin", - "symbol": "QDC", - "decimals": 18 + name: "Quadrans Coin", + symbol: "QDC", + decimals: 18, }, "10947": { - "name": "Quadrans Testnet Coin", - "symbol": "tQDC", - "decimals": 18 + name: "Quadrans Testnet Coin", + symbol: "tQDC", + decimals: 18, }, "11110": { - "name": "Astra", - "symbol": "ASA", - "decimals": 18 + name: "Astra", + symbol: "ASA", + decimals: 18, }, "11111": { - "name": "WAGMI", - "symbol": "WGM", - "decimals": 18 + name: "WAGMI", + symbol: "WGM", + decimals: 18, }, "11115": { - "name": "test-Astra", - "symbol": "tASA", - "decimals": 18 + name: "test-Astra", + symbol: "tASA", + decimals: 18, }, "11119": { - "name": "HashBit Native Token", - "symbol": "HBIT", - "decimals": 18 + name: "HashBit Native Token", + symbol: "HBIT", + decimals: 18, }, "11221": { - "name": "Shine", - "symbol": "SC20", - "decimals": 18 + name: "Shine", + symbol: "SC20", + decimals: 18, }, "11227": { - "name": "JIRI", - "symbol": "TZW", - "decimals": 18 + name: "JIRI", + symbol: "TZW", + decimals: 18, }, "11235": { - "name": "Islamic Coin", - "symbol": "ISLM", - "decimals": 18 + name: "Islamic Coin", + symbol: "ISLM", + decimals: 18, }, "11437": { - "name": "Shyft Test Token", - "symbol": "SHYFTT", - "decimals": 18 + name: "Shyft Test Token", + symbol: "SHYFTT", + decimals: 18, }, "11501": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "11503": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "11612": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 + name: "Sardis", + symbol: "SRDX", + decimals: 18, }, "11822": { - "name": "ART", - "symbol": "ART", - "decimals": 18 + name: "ART", + symbol: "ART", + decimals: 18, }, "11891": { - "name": "Arianee", - "symbol": "ARIA20", - "decimals": 18 + name: "Arianee", + symbol: "ARIA20", + decimals: 18, }, "12009": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 + name: "SatoshiChain Coin", + symbol: "SATS", + decimals: 18, }, "12020": { - "name": "Aternos", - "symbol": "ATR", - "decimals": 18 + name: "Aternos", + symbol: "ATR", + decimals: 18, }, "12051": { - "name": "ZERO", - "symbol": "tZERO", - "decimals": 18 + name: "ZERO", + symbol: "tZERO", + decimals: 18, }, "12052": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 + name: "ZERO", + symbol: "ZERO", + decimals: 18, }, "12123": { - "name": "BRC Chain mainnet native token", - "symbol": "BRC", - "decimals": 18 + name: "BRC Chain mainnet native token", + symbol: "BRC", + decimals: 18, }, "12306": { - "name": "FIBONACCI UTILITY TOKEN", - "symbol": "FIBO", - "decimals": 18 + name: "FIBONACCI UTILITY TOKEN", + symbol: "FIBO", + decimals: 18, }, "12321": { - "name": "Blg", - "symbol": "BLG", - "decimals": 18 + name: "Blg", + symbol: "BLG", + decimals: 18, }, "12324": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "12325": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "12345": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 + name: "FITFI", + symbol: "FITFI", + decimals: 18, }, "12553": { - "name": "RSS3", - "symbol": "RSS3", - "decimals": 18 + name: "RSS3", + symbol: "RSS3", + decimals: 18, }, "12715": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 + name: "Rikeza", + symbol: "RIK", + decimals: 18, }, "12781": { - "name": "Playdapp", - "symbol": "PDA", - "decimals": 18 + name: "Playdapp", + symbol: "PDA", + decimals: 18, }, "12890": { - "name": "Quantum Chain", - "symbol": "tQNET", - "decimals": 18 + name: "Quantum Chain", + symbol: "tQNET", + decimals: 18, }, "12898": { - "name": "BTLT Token", - "symbol": "BTLT", - "decimals": 18 + name: "BTLT Token", + symbol: "BTLT", + decimals: 18, }, "13000": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 + name: "ECG", + symbol: "ECG", + decimals: 18, }, "13308": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 + name: "Credit", + symbol: "CREDIT", + decimals: 18, }, "13337": { - "name": "Beam", - "symbol": "BEAM", - "decimals": 18 + name: "Beam", + symbol: "BEAM", + decimals: 18, }, "13371": { - "name": "IMX", - "symbol": "IMX", - "decimals": 18 + name: "IMX", + symbol: "IMX", + decimals: 18, }, "13381": { - "name": "Phoenix", - "symbol": "PHX", - "decimals": 18 + name: "Phoenix", + symbol: "PHX", + decimals: 18, }, "13396": { - "name": "Masa Token", - "symbol": "MASA", - "decimals": 18 + name: "Masa Token", + symbol: "MASA", + decimals: 18, }, "13473": { - "name": "Test IMX", - "symbol": "tIMX", - "decimals": 18 + name: "Test IMX", + symbol: "tIMX", + decimals: 18, }, "13505": { - "name": "Sepolia Gravity", - "symbol": "G.", - "decimals": 18 + name: "Sepolia Gravity", + symbol: "G.", + decimals: 18, }, "13600": { - "name": "Kronobit", - "symbol": "KNB", - "decimals": 18 + name: "Kronobit", + symbol: "KNB", + decimals: 18, }, "13812": { - "name": "Susono", - "symbol": "OPN", - "decimals": 18 + name: "Susono", + symbol: "OPN", + decimals: 18, }, "14000": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 + name: "ECG", + symbol: "ECG", + decimals: 18, }, "14324": { - "name": "Evolve", - "symbol": "EVO", - "decimals": 18 + name: "Evolve", + symbol: "EVO", + decimals: 18, }, "14333": { - "name": "Vitruveo Test Coin", - "symbol": "tVTRU", - "decimals": 18 + name: "Vitruveo Test Coin", + symbol: "tVTRU", + decimals: 18, }, "14801": { - "name": "DAT", - "symbol": "DAT", - "decimals": 18 + name: "DAT", + symbol: "DAT", + decimals: 18, }, "14853": { - "name": "eHMND", - "symbol": "eHMND", - "decimals": 18 + name: "eHMND", + symbol: "eHMND", + decimals: 18, }, "15003": { - "name": "Dev IMX", - "symbol": "dIMX", - "decimals": 18 + name: "Dev IMX", + symbol: "dIMX", + decimals: 18, }, "15257": { - "name": "Poodl", - "symbol": "POODL", - "decimals": 18 + name: "Poodl", + symbol: "POODL", + decimals: 18, }, "15259": { - "name": "Poodl", - "symbol": "POODL", - "decimals": 18 + name: "Poodl", + symbol: "POODL", + decimals: 18, }, "15551": { - "name": "LOOP", - "symbol": "LOOP", - "decimals": 18 + name: "LOOP", + symbol: "LOOP", + decimals: 18, }, "15555": { - "name": "Trust EVM", - "symbol": "EVM", - "decimals": 18 + name: "Trust EVM", + symbol: "EVM", + decimals: 18, }, "15557": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 + name: "EOS", + symbol: "EOS", + decimals: 18, }, "16000": { - "name": "MetaDot Token", - "symbol": "MTT", - "decimals": 18 + name: "MetaDot Token", + symbol: "MTT", + decimals: 18, }, "16001": { - "name": "MetaDot Token TestNet", - "symbol": "MTTest", - "decimals": 18 + name: "MetaDot Token TestNet", + symbol: "MTTest", + decimals: 18, }, "16116": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 + name: "Oasys", + symbol: "OAS", + decimals: 18, }, "16507": { - "name": "Genesys", - "symbol": "GSYS", - "decimals": 18 + name: "Genesys", + symbol: "GSYS", + decimals: 18, }, "16688": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 + name: "Eris", + symbol: "ERIS", + decimals: 18, }, "16718": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 + name: "Amber", + symbol: "AMB", + decimals: 18, }, "16888": { - "name": "tIvar", - "symbol": "tIVAR", - "decimals": 18 + name: "tIvar", + symbol: "tIVAR", + decimals: 18, }, "17000": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 + name: "Testnet ETH", + symbol: "ETH", + decimals: 18, }, "17069": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "17117": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 + name: "Oasys", + symbol: "OAS", + decimals: 18, }, "17171": { - "name": "G8Chain", - "symbol": "G8C", - "decimals": 18 + name: "G8Chain", + symbol: "G8C", + decimals: 18, }, "17172": { - "name": "Eclipse", - "symbol": "ECLP", - "decimals": 16 + name: "Eclipse", + symbol: "ECLP", + decimals: 16, }, "17180": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 + name: "Palette Token", + symbol: "PLT", + decimals: 18, }, "17217": { - "name": "KONET", - "symbol": "KONET", - "decimals": 18 + name: "KONET", + symbol: "KONET", + decimals: 18, }, "17777": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 + name: "EOS", + symbol: "EOS", + decimals: 18, }, "18000": { - "name": "ZKST", - "symbol": "ZKST", - "decimals": 18 + name: "ZKST", + symbol: "ZKST", + decimals: 18, }, "18122": { - "name": "STN", - "symbol": "STN", - "decimals": 18 + name: "STN", + symbol: "STN", + decimals: 18, }, "18159": { - "name": "Proof Of Memes", - "symbol": "POM", - "decimals": 18 + name: "Proof Of Memes", + symbol: "POM", + decimals: 18, }, "18181": { - "name": "G8Coin", - "symbol": "G8C", - "decimals": 18 + name: "G8Coin", + symbol: "G8C", + decimals: 18, }, "18233": { - "name": "unreal Ether", - "symbol": "reETH", - "decimals": 18 + name: "unreal Ether", + symbol: "reETH", + decimals: 18, }, "18686": { - "name": "MXC zkEVM Moonchain", - "symbol": "MXC", - "decimals": 18 + name: "MXC zkEVM Moonchain", + symbol: "MXC", + decimals: 18, }, "18888": { - "name": "Titan tkx", - "symbol": "TKX", - "decimals": 18 + name: "Titan tkx", + symbol: "TKX", + decimals: 18, }, "18889": { - "name": "Titan tkx", - "symbol": "TKX", - "decimals": 18 + name: "Titan tkx", + symbol: "TKX", + decimals: 18, }, "19011": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "19224": { - "name": "Decentraconnect Social", - "symbol": "DCSM", - "decimals": 18 + name: "Decentraconnect Social", + symbol: "DCSM", + decimals: 18, }, "19527": { - "name": "Magnet Network", - "symbol": "DOT", - "decimals": 18 + name: "Magnet Network", + symbol: "DOT", + decimals: 18, }, "19600": { - "name": "LBRY Credits", - "symbol": "LBC", - "decimals": 8 + name: "LBRY Credits", + symbol: "LBC", + decimals: 8, }, "19845": { - "name": "BTCIX Network", - "symbol": "BTCIX", - "decimals": 18 + name: "BTCIX Network", + symbol: "BTCIX", + decimals: 18, }, "20001": { - "name": "EthereumPoW", - "symbol": "ETHW", - "decimals": 18 + name: "EthereumPoW", + symbol: "ETHW", + decimals: 18, }, "20041": { - "name": "Niza Global", - "symbol": "NIZA", - "decimals": 18 + name: "Niza Global", + symbol: "NIZA", + decimals: 18, }, "20073": { - "name": "Niza Global", - "symbol": "NIZA", - "decimals": 18 + name: "Niza Global", + symbol: "NIZA", + decimals: 18, }, "20729": { - "name": "Callisto", - "symbol": "CLO", - "decimals": 18 + name: "Callisto", + symbol: "CLO", + decimals: 18, }, "20736": { - "name": "Hooked P2", - "symbol": "hP2", - "decimals": 18 + name: "Hooked P2", + symbol: "hP2", + decimals: 18, }, "20765": { - "name": "Jono11 Token", - "symbol": "JONO", - "decimals": 18 + name: "Jono11 Token", + symbol: "JONO", + decimals: 18, }, "21004": { - "name": "C4EI", - "symbol": "C4EI", - "decimals": 18 + name: "C4EI", + symbol: "C4EI", + decimals: 18, }, "21133": { - "name": "AAH", - "symbol": "AAH", - "decimals": 18 + name: "AAH", + symbol: "AAH", + decimals: 18, }, "21223": { - "name": "DCP", - "symbol": "DCP", - "decimals": 18 + name: "DCP", + symbol: "DCP", + decimals: 18, }, "21224": { - "name": "DCP", - "symbol": "DCP", - "decimals": 18 + name: "DCP", + symbol: "DCP", + decimals: 18, }, "21337": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 + name: "CPAY", + symbol: "CPAY", + decimals: 18, }, "21816": { - "name": "omChain", - "symbol": "OMC", - "decimals": 18 + name: "omChain", + symbol: "OMC", + decimals: 18, }, "21912": { - "name": "Origin NFT", - "symbol": "ONF", - "decimals": 18 + name: "Origin NFT", + symbol: "ONF", + decimals: 18, }, "22023": { - "name": "shuffle", - "symbol": "SFL", - "decimals": 18 + name: "shuffle", + symbol: "SFL", + decimals: 18, }, "22040": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 + name: "Amber", + symbol: "AMB", + decimals: 18, }, "22222": { - "name": "Zebec", - "symbol": "ZBC", - "decimals": 18 + name: "Zebec", + symbol: "ZBC", + decimals: 18, }, "22324": { - "name": "GoldX", - "symbol": "GOLDX", - "decimals": 18 + name: "GoldX", + symbol: "GOLDX", + decimals: 18, }, "22776": { - "name": "MAPO", - "symbol": "MAPO", - "decimals": 18 + name: "MAPO", + symbol: "MAPO", + decimals: 18, }, "23006": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 + name: "Antofy", + symbol: "ABN", + decimals: 18, }, "23118": { - "name": "IDE", - "symbol": "IDE", - "decimals": 18 + name: "IDE", + symbol: "IDE", + decimals: 18, }, "23294": { - "name": "Sapphire Rose", - "symbol": "ROSE", - "decimals": 18 + name: "Sapphire Rose", + symbol: "ROSE", + decimals: 18, }, "23295": { - "name": "Sapphire Test Rose", - "symbol": "TEST", - "decimals": 18 + name: "Sapphire Test Rose", + symbol: "TEST", + decimals: 18, }, "23451": { - "name": "DreyerX", - "symbol": "DRX", - "decimals": 18 + name: "DreyerX", + symbol: "DRX", + decimals: 18, }, "23452": { - "name": "DreyerX", - "symbol": "DRX", - "decimals": 18 + name: "DreyerX", + symbol: "DRX", + decimals: 18, }, "23888": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "24484": { - "name": "Webchain Ether", - "symbol": "WEB", - "decimals": 18 + name: "Webchain Ether", + symbol: "WEB", + decimals: 18, }, "24734": { - "name": "MintMe.com Coin", - "symbol": "MINTME", - "decimals": 18 + name: "MintMe.com Coin", + symbol: "MINTME", + decimals: 18, }, "25186": { - "name": "LiquidLayer", - "symbol": "LILA", - "decimals": 18 + name: "LiquidLayer", + symbol: "LILA", + decimals: 18, }, "25839": { - "name": "AlveyCoin Testnet", - "symbol": "tALV", - "decimals": 18 + name: "AlveyCoin Testnet", + symbol: "tALV", + decimals: 18, }, "25888": { - "name": "GOLDT", - "symbol": "GOLDT", - "decimals": 18 + name: "GOLDT", + symbol: "GOLDT", + decimals: 18, }, "25925": { - "name": "Bitkub Coin", - "symbol": "tKUB", - "decimals": 18 + name: "Bitkub Coin", + symbol: "tKUB", + decimals: 18, }, "26026": { - "name": "Ferrum", - "symbol": "tFRM", - "decimals": 18 + name: "Ferrum", + symbol: "tFRM", + decimals: 18, }, "26600": { - "name": "Hertz", - "symbol": "HTZ", - "decimals": 18 + name: "Hertz", + symbol: "HTZ", + decimals: 18, }, "26863": { - "name": "OAC", - "symbol": "OAC", - "decimals": 18 + name: "OAC", + symbol: "OAC", + decimals: 18, }, "27181": { - "name": "KLAOS", - "symbol": "KLAOS", - "decimals": 18 + name: "KLAOS", + symbol: "KLAOS", + decimals: 18, }, "27483": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "27827": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 + name: "ZERO", + symbol: "ZERO", + decimals: 18, }, "28516": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "28518": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "28528": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: "Goerli Ether", + symbol: "ETH", + decimals: 18, }, "28882": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "29112": { - "name": "TOPIA", - "symbol": "TOPIA", - "decimals": 18 + name: "TOPIA", + symbol: "TOPIA", + decimals: 18, }, "29536": { - "name": "KaiChain Testnet Native Token", - "symbol": "KEC", - "decimals": 18 + name: "KaiChain Testnet Native Token", + symbol: "KEC", + decimals: 18, }, "29548": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "30067": { - "name": "ECE", - "symbol": "ECE", - "decimals": 18 + name: "ECE", + symbol: "ECE", + decimals: 18, }, "30088": { - "name": "Miyou", - "symbol": "MY", - "decimals": 18 + name: "Miyou", + symbol: "MY", + decimals: 18, }, "30103": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 + name: "Canxium", + symbol: "CAU", + decimals: 18, }, "30730": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 + name: "Move", + symbol: "MOVE", + decimals: 18, }, "30731": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 + name: "Move", + symbol: "MOVE", + decimals: 18, }, "30732": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 + name: "Move", + symbol: "MOVE", + decimals: 18, }, "31102": { - "name": "Ethersocial Network Ether", - "symbol": "ESN", - "decimals": 18 + name: "Ethersocial Network Ether", + symbol: "ESN", + decimals: 18, }, "31223": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 + name: "CloudTx", + symbol: "CLD", + decimals: 18, }, "31224": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 + name: "CloudTx", + symbol: "CLD", + decimals: 18, }, "31337": { - "name": "GoChain Coin", - "symbol": "GO", - "decimals": 18 + name: "GoChain Coin", + symbol: "GO", + decimals: 18, }, "31414": { - "name": "MTHN Testnet", - "symbol": "MTHN", - "decimals": 18 + name: "MTHN Testnet", + symbol: "MTHN", + decimals: 18, }, "31753": { - "name": "Intdestcoin", - "symbol": "INTD", - "decimals": 18 + name: "Intdestcoin", + symbol: "INTD", + decimals: 18, }, "31754": { - "name": "Intdestcoin Testnet", - "symbol": "INTD", - "decimals": 18 + name: "Intdestcoin Testnet", + symbol: "INTD", + decimals: 18, }, "32001": { - "name": "W3Gamez Testnet Ether", - "symbol": "ETH", - "decimals": 18 + name: "W3Gamez Testnet Ether", + symbol: "ETH", + decimals: 18, }, "32382": { - "name": "SANR", - "symbol": "SANR", - "decimals": 18 + name: "SANR", + symbol: "SANR", + decimals: 18, }, "32520": { - "name": "Bitrise Token", - "symbol": "Brise", - "decimals": 18 + name: "Bitrise Token", + symbol: "Brise", + decimals: 18, }, "32659": { - "name": "Fusion", - "symbol": "FSN", - "decimals": 18 + name: "Fusion", + symbol: "FSN", + decimals: 18, }, "32769": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "32990": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "33033": { - "name": "Entangle", - "symbol": "NGL", - "decimals": 18 + name: "Entangle", + symbol: "NGL", + decimals: 18, }, "33101": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "33133": { - "name": "Entangle", - "symbol": "NGL", - "decimals": 18 + name: "Entangle", + symbol: "NGL", + decimals: 18, }, "33210": { - "name": "XCLOUD", - "symbol": "XCLOUD", - "decimals": 18 + name: "XCLOUD", + symbol: "XCLOUD", + decimals: 18, }, "33333": { - "name": "Aves", - "symbol": "AVS", - "decimals": 18 + name: "Aves", + symbol: "AVS", + decimals: 18, }, "33385": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "33469": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 + name: "Zilliqa", + symbol: "ZIL", + decimals: 18, }, "33979": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "34443": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "35011": { - "name": "TARO Coin", - "symbol": "taro", - "decimals": 18 + name: "TARO Coin", + symbol: "taro", + decimals: 18, }, "35441": { - "name": "QGOV", - "symbol": "QGOV", - "decimals": 18 + name: "QGOV", + symbol: "QGOV", + decimals: 18, }, "35443": { - "name": "Q token", - "symbol": "Q", - "decimals": 18 + name: "Q token", + symbol: "Q", + decimals: 18, }, "38400": { - "name": "Rangers Protocol Gas", - "symbol": "cmRPG", - "decimals": 18 + name: "Rangers Protocol Gas", + symbol: "cmRPG", + decimals: 18, }, "38401": { - "name": "Rangers Protocol Gas", - "symbol": "ttRPG", - "decimals": 18 + name: "Rangers Protocol Gas", + symbol: "ttRPG", + decimals: 18, }, "39656": { - "name": "Primal Network", - "symbol": "PRM", - "decimals": 18 + name: "Primal Network", + symbol: "PRM", + decimals: 18, }, "39797": { - "name": "Energi", - "symbol": "NRG", - "decimals": 18 + name: "Energi", + symbol: "NRG", + decimals: 18, }, "39815": { - "name": "OHO", - "symbol": "OHO", - "decimals": 18 + name: "OHO", + symbol: "OHO", + decimals: 18, }, "41500": { - "name": "Oxyn Gas", - "symbol": "OXYN", - "decimals": 18 + name: "Oxyn Gas", + symbol: "OXYN", + decimals: 18, }, "42069": { - "name": "pegglecoin", - "symbol": "peggle", - "decimals": 18 + name: "pegglecoin", + symbol: "peggle", + decimals: 18, }, "42072": { - "name": "Agent", - "symbol": "AGENT", - "decimals": 18 + name: "Agent", + symbol: "AGENT", + decimals: 18, }, "42161": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "42170": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "42220": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 + name: "CELO", + symbol: "CELO", + decimals: 18, }, "42261": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 + name: "Emerald Rose", + symbol: "ROSE", + decimals: 18, }, "42262": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 + name: "Emerald Rose", + symbol: "ROSE", + decimals: 18, }, "42355": { - "name": "GoldX", - "symbol": "GOLDX", - "decimals": 18 + name: "GoldX", + symbol: "GOLDX", + decimals: 18, }, "42766": { - "name": "USDC Token", - "symbol": "USDC", - "decimals": 18 + name: "USDC Token", + symbol: "USDC", + decimals: 18, }, "42793": { - "name": "tez", - "symbol": "XTZ", - "decimals": 18 + name: "tez", + symbol: "XTZ", + decimals: 18, }, "42801": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "42888": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "43110": { - "name": "Athereum Ether", - "symbol": "ATH", - "decimals": 18 + name: "Athereum Ether", + symbol: "ATH", + decimals: 18, }, "43111": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "43113": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 + name: "Avalanche", + symbol: "AVAX", + decimals: 18, }, "43114": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 + name: "Avalanche", + symbol: "AVAX", + decimals: 18, }, "43851": { - "name": "USDC Token", - "symbol": "USDC", - "decimals": 18 + name: "USDC Token", + symbol: "USDC", + decimals: 18, }, "44444": { - "name": "FREN", - "symbol": "FREN", - "decimals": 18 + name: "FREN", + symbol: "FREN", + decimals: 18, }, "44445": { - "name": "Quantum", - "symbol": "QTM", - "decimals": 18 + name: "Quantum", + symbol: "QTM", + decimals: 18, }, "44787": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 + name: "CELO", + symbol: "CELO", + decimals: 18, }, "45000": { - "name": "TXL", - "symbol": "TXL", - "decimals": 18 + name: "TXL", + symbol: "TXL", + decimals: 18, }, "45454": { - "name": "SWP", - "symbol": "SWP", - "decimals": 18 + name: "SWP", + symbol: "SWP", + decimals: 18, }, "45510": { - "name": "Deelance", - "symbol": "DEE", - "decimals": 18 + name: "Deelance", + symbol: "DEE", + decimals: 18, }, "46688": { - "name": "Testnet Fusion", - "symbol": "T-FSN", - "decimals": 18 + name: "Testnet Fusion", + symbol: "T-FSN", + decimals: 18, }, "47805": { - "name": "REI", - "symbol": "REI", - "decimals": 18 + name: "REI", + symbol: "REI", + decimals: 18, }, "48795": { - "name": "FUEL", - "symbol": "FUEL", - "decimals": 18 + name: "FUEL", + symbol: "FUEL", + decimals: 18, }, "48899": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "49049": { - "name": "WIRE", - "symbol": "WIRE", - "decimals": 18 + name: "WIRE", + symbol: "WIRE", + decimals: 18, }, "49088": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 + name: "Bifrost", + symbol: "BFC", + decimals: 18, }, "49321": { - "name": "GUN", - "symbol": "GUN", - "decimals": 18 + name: "GUN", + symbol: "GUN", + decimals: 18, }, "49797": { - "name": "Energi", - "symbol": "NRG", - "decimals": 18 + name: "Energi", + symbol: "NRG", + decimals: 18, }, "50001": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "50005": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "50006": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "50021": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 + name: "GCD", + symbol: "GCD", + decimals: 18, }, "51178": { - "name": "Lumoz Test Token", - "symbol": "MOZ", - "decimals": 18 + name: "Lumoz Test Token", + symbol: "MOZ", + decimals: 18, }, "51712": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 + name: "Sardis", + symbol: "SRDX", + decimals: 18, }, "52014": { - "name": "Electroneum", - "symbol": "ETN", - "decimals": 18 + name: "Electroneum", + symbol: "ETN", + decimals: 18, }, "53277": { - "name": "DOID", - "symbol": "DOID", - "decimals": 18 + name: "DOID", + symbol: "DOID", + decimals: 18, }, "53302": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "53457": { - "name": "DODO", - "symbol": "DODO", - "decimals": 18 + name: "DODO", + symbol: "DODO", + decimals: 18, }, "53935": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 + name: "Jewel", + symbol: "JEWEL", + decimals: 18, }, "54211": { - "name": "Islamic Coin", - "symbol": "ISLMT", - "decimals": 18 + name: "Islamic Coin", + symbol: "ISLMT", + decimals: 18, }, "54321": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 + name: "Toro", + symbol: "TORO", + decimals: 18, }, "54555": { - "name": "Photon", - "symbol": "PTON", - "decimals": 18 + name: "Photon", + symbol: "PTON", + decimals: 18, }, "55004": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "55555": { - "name": "Rei", - "symbol": "REI", - "decimals": 18 + name: "Rei", + symbol: "REI", + decimals: 18, }, "55556": { - "name": "tRei", - "symbol": "tREI", - "decimals": 18 + name: "tRei", + symbol: "tREI", + decimals: 18, }, "56026": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "56288": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 + name: "Boba Token", + symbol: "BOBA", + decimals: 18, }, "56400": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 + name: "ZERO", + symbol: "ZERO", + decimals: 18, }, "56789": { - "name": "Nova", - "symbol": "NOVA", - "decimals": 18 + name: "Nova", + symbol: "NOVA", + decimals: 18, }, "56797": { - "name": "DOID", - "symbol": "DOID", - "decimals": 18 + name: "DOID", + symbol: "DOID", + decimals: 18, }, "57000": { - "name": "Testnet Syscoin", - "symbol": "TSYS", - "decimals": 18 + name: "Testnet Syscoin", + symbol: "TSYS", + decimals: 18, }, "57451": { - "name": "COINSEC", - "symbol": "SEC", - "decimals": 18 + name: "COINSEC", + symbol: "SEC", + decimals: 18, }, "58008": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "59140": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 + name: "Linea Ether", + symbol: "ETH", + decimals: 18, }, "59141": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 + name: "Linea Ether", + symbol: "ETH", + decimals: 18, }, "59144": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 + name: "Linea Ether", + symbol: "ETH", + decimals: 18, }, "59971": { - "name": "GenesysCode", - "symbol": "GCODE", - "decimals": 18 + name: "GenesysCode", + symbol: "GCODE", + decimals: 18, }, "60000": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "60001": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "60002": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "60103": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "60808": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "61406": { - "name": "KaiChain Native Token", - "symbol": "KEC", - "decimals": 18 + name: "KaiChain Native Token", + symbol: "KEC", + decimals: 18, }, "61800": { - "name": "Axelium", - "symbol": "AIUM", - "decimals": 18 + name: "Axelium", + symbol: "AIUM", + decimals: 18, }, "61803": { - "name": "EGAZ", - "symbol": "EGAZ", - "decimals": 18 + name: "EGAZ", + symbol: "EGAZ", + decimals: 18, }, "61916": { - "name": "DoKEN", - "symbol": "DKN", - "decimals": 18 + name: "DoKEN", + symbol: "DKN", + decimals: 18, }, "62049": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "62050": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "62298": { - "name": "Citrea BTC", - "symbol": "cBTC", - "decimals": 18 + name: "Citrea BTC", + symbol: "cBTC", + decimals: 18, }, "62320": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 + name: "CELO", + symbol: "CELO", + decimals: 18, }, "62621": { - "name": "MultiVAC", - "symbol": "MTV", - "decimals": 18 + name: "MultiVAC", + symbol: "MTV", + decimals: 18, }, "62831": { - "name": "PLYR", - "symbol": "PLYR", - "decimals": 18 + name: "PLYR", + symbol: "PLYR", + decimals: 18, }, "63000": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 + name: "eCredits", + symbol: "ECS", + decimals: 18, }, "63001": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 + name: "eCredits", + symbol: "ECS", + decimals: 18, }, "65450": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 + name: "Scolcoin", + symbol: "SCOL", + decimals: 18, }, "66988": { - "name": "Janus", - "symbol": "JNS", - "decimals": 18 + name: "Janus", + symbol: "JNS", + decimals: 18, }, "67588": { - "name": "Cosmic Chain", - "symbol": "COSMIC", - "decimals": 18 + name: "Cosmic Chain", + symbol: "COSMIC", + decimals: 18, }, "68770": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "69420": { - "name": "Condrieu Testnet Ether", - "symbol": "CTE", - "decimals": 18 + name: "Condrieu Testnet Ether", + symbol: "CTE", + decimals: 18, }, "70000": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "70001": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "70002": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "70103": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 + name: "TKM", + symbol: "TKM", + decimals: 18, }, "70700": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "71111": { - "name": "GuapcoinX", - "symbol": "GuapX", - "decimals": 18 + name: "GuapcoinX", + symbol: "GuapX", + decimals: 18, }, "71393": { - "name": "CKB", - "symbol": "CKB", - "decimals": 8 + name: "CKB", + symbol: "CKB", + decimals: 8, }, "71401": { - "name": "pCKB", - "symbol": "pCKB", - "decimals": 18 + name: "pCKB", + symbol: "pCKB", + decimals: 18, }, "71402": { - "name": "pCKB", - "symbol": "pCKB", - "decimals": 18 + name: "pCKB", + symbol: "pCKB", + decimals: 18, }, "72778": { - "name": "Caga", - "symbol": "CAGA", - "decimals": 18 + name: "Caga", + symbol: "CAGA", + decimals: 18, }, "72992": { - "name": "Groc", - "symbol": "GROC", - "decimals": 18 + name: "Groc", + symbol: "GROC", + decimals: 18, }, "73114": { - "name": "ICB Testnet Token", - "symbol": "ICBT", - "decimals": 18 + name: "ICB Testnet Token", + symbol: "ICBT", + decimals: 18, }, "73115": { - "name": "ICB Native Token", - "symbol": "ICBX", - "decimals": 18 + name: "ICB Native Token", + symbol: "ICBX", + decimals: 18, }, "73799": { - "name": "Volta Token", - "symbol": "VT", - "decimals": 18 + name: "Volta Token", + symbol: "VT", + decimals: 18, }, "73927": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "75000": { - "name": "Ether", - "symbol": "RESIN", - "decimals": 18 + name: "Ether", + symbol: "RESIN", + decimals: 18, }, "75512": { - "name": "Geek", - "symbol": "GEEK", - "decimals": 18 + name: "Geek", + symbol: "GEEK", + decimals: 18, }, "75513": { - "name": "Geek", - "symbol": "GEEK", - "decimals": 18 + name: "Geek", + symbol: "GEEK", + decimals: 18, }, "77001": { - "name": "BORA", - "symbol": "BORA", - "decimals": 18 + name: "BORA", + symbol: "BORA", + decimals: 18, }, "77238": { - "name": "Foundry Chain Testnet", - "symbol": "tFNC", - "decimals": 18 + name: "Foundry Chain Testnet", + symbol: "tFNC", + decimals: 18, }, "77612": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 + name: "VNT", + symbol: "VNT", + decimals: 18, }, "77777": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 + name: "Toro", + symbol: "TORO", + decimals: 18, }, "78110": { - "name": "Firenze Ether", - "symbol": "FIN", - "decimals": 18 + name: "Firenze Ether", + symbol: "FIN", + decimals: 18, }, "78281": { - "name": "Dragonfly", - "symbol": "DFLY", - "decimals": 18 + name: "Dragonfly", + symbol: "DFLY", + decimals: 18, }, "78430": { - "name": "AMP", - "symbol": "AMP", - "decimals": 18 + name: "AMP", + symbol: "AMP", + decimals: 18, }, "78431": { - "name": "BLT", - "symbol": "BLT", - "decimals": 18 + name: "BLT", + symbol: "BLT", + decimals: 18, }, "78432": { - "name": "CON", - "symbol": "CON", - "decimals": 18 + name: "CON", + symbol: "CON", + decimals: 18, }, "78600": { - "name": "Vanguard Vanry", - "symbol": "VANRY", - "decimals": 18 + name: "Vanguard Vanry", + symbol: "VANRY", + decimals: 18, }, "79879": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 + name: "Standard in Gold", + symbol: "STAND", + decimals: 18, }, "80001": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: "MATIC", + symbol: "MATIC", + decimals: 18, }, "80002": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: "MATIC", + symbol: "MATIC", + decimals: 18, }, "80084": { - "name": "BERA Token", - "symbol": "BERA", - "decimals": 18 + name: "BERA Token", + symbol: "BERA", + decimals: 18, }, "80085": { - "name": "BERA Token", - "symbol": "BERA", - "decimals": 18 + name: "BERA Token", + symbol: "BERA", + decimals: 18, }, "80096": { - "name": "Hizoco", - "symbol": "HZC", - "decimals": 18 + name: "Hizoco", + symbol: "HZC", + decimals: 18, }, "81041": { - "name": "NRK", - "symbol": "NRK", - "decimals": 18 + name: "NRK", + symbol: "NRK", + decimals: 18, }, "81341": { - "name": "Amana Testnet", - "symbol": "MEER-T", - "decimals": 18 + name: "Amana Testnet", + symbol: "MEER-T", + decimals: 18, }, "81342": { - "name": "Amana Mixnet", - "symbol": "MEER-M", - "decimals": 18 + name: "Amana Mixnet", + symbol: "MEER-M", + decimals: 18, }, "81343": { - "name": "Amana Privnet", - "symbol": "MEER-P", - "decimals": 18 + name: "Amana Privnet", + symbol: "MEER-P", + decimals: 18, }, "81351": { - "name": "Flana Testnet", - "symbol": "MEER-T", - "decimals": 18 + name: "Flana Testnet", + symbol: "MEER-T", + decimals: 18, }, "81352": { - "name": "Flana Mixnet", - "symbol": "MEER-M", - "decimals": 18 + name: "Flana Mixnet", + symbol: "MEER-M", + decimals: 18, }, "81353": { - "name": "Flana Privnet", - "symbol": "MEER-P", - "decimals": 18 + name: "Flana Privnet", + symbol: "MEER-P", + decimals: 18, }, "81361": { - "name": "Mizana Testnet", - "symbol": "MEER-T", - "decimals": 18 + name: "Mizana Testnet", + symbol: "MEER-T", + decimals: 18, }, "81362": { - "name": "Mizana Mixnet", - "symbol": "MEER-M", - "decimals": 18 + name: "Mizana Mixnet", + symbol: "MEER-M", + decimals: 18, }, "81363": { - "name": "Mizana Privnet", - "symbol": "MEER-P", - "decimals": 18 + name: "Mizana Privnet", + symbol: "MEER-P", + decimals: 18, }, "81457": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "81720": { - "name": "Quantum Chain", - "symbol": "QNET", - "decimals": 18 + name: "Quantum Chain", + symbol: "QNET", + decimals: 18, }, "82459": { - "name": "Service Unit Token", - "symbol": "SU", - "decimals": 18 + name: "Service Unit Token", + symbol: "SU", + decimals: 18, }, "83872": { - "name": "Zedxion", - "symbol": "ZEDX", - "decimals": 9 + name: "Zedxion", + symbol: "ZEDX", + decimals: 9, }, "84531": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: "Goerli Ether", + symbol: "ETH", + decimals: 18, }, "84532": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "84886": { - "name": "Aerie", - "symbol": "AER", - "decimals": 18 + name: "Aerie", + symbol: "AER", + decimals: 18, }, "85449": { - "name": "Cyber Trust", - "symbol": "CYBER", - "decimals": 18 + name: "Cyber Trust", + symbol: "CYBER", + decimals: 18, }, "88002": { - "name": "Zebec Test Token", - "symbol": "tZBC", - "decimals": 18 + name: "Zebec Test Token", + symbol: "tZBC", + decimals: 18, }, "88559": { - "name": "Inoai", - "symbol": "INO", - "decimals": 18 + name: "Inoai", + symbol: "INO", + decimals: 18, }, "88817": { - "name": "UNIT0", - "symbol": "UNIT0", - "decimals": 18 + name: "UNIT0", + symbol: "UNIT0", + decimals: 18, }, "88819": { - "name": "UNIT0", - "symbol": "UNIT0", - "decimals": 18 + name: "UNIT0", + symbol: "UNIT0", + decimals: 18, }, "88882": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 + name: "Chiliz", + symbol: "CHZ", + decimals: 18, }, "88888": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 + name: "Chiliz", + symbol: "CHZ", + decimals: 18, }, "90001": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 + name: "Function X", + symbol: "FX", + decimals: 18, }, "90210": { - "name": "Beverly Hills Testnet Ether", - "symbol": "BVE", - "decimals": 18 + name: "Beverly Hills Testnet Ether", + symbol: "BVE", + decimals: 18, }, "90354": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "91002": { - "name": "Nautilus Zebec Testnet Tokens", - "symbol": "tZBC", - "decimals": 18 + name: "Nautilus Zebec Testnet Tokens", + symbol: "tZBC", + decimals: 18, }, "91120": { - "name": "DAP", - "symbol": "DAP", - "decimals": 18 + name: "DAP", + symbol: "DAP", + decimals: 18, }, "91715": { - "name": "BNB Chain Native Token", - "symbol": "tcBNB", - "decimals": 18 + name: "BNB Chain Native Token", + symbol: "tcBNB", + decimals: 18, }, "92001": { - "name": "test-Lamb", - "symbol": "LAMB", - "decimals": 18 + name: "test-Lamb", + symbol: "LAMB", + decimals: 18, }, "93572": { - "name": "LiquidLayer Testnet", - "symbol": "LILA", - "decimals": 18 + name: "LiquidLayer Testnet", + symbol: "LILA", + decimals: 18, }, "96970": { - "name": "Mantis", - "symbol": "MANTIS", - "decimals": 18 + name: "Mantis", + symbol: "MANTIS", + decimals: 18, }, "97531": { - "name": "GREEN", - "symbol": "GREEN", - "decimals": 18 + name: "GREEN", + symbol: "GREEN", + decimals: 18, }, "97970": { - "name": "OptimusZ7", - "symbol": "OZ7", - "decimals": 18 + name: "OptimusZ7", + symbol: "OZ7", + decimals: 18, }, "98881": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "99099": { - "name": "eLiberty", - "symbol": "$EL", - "decimals": 18 + name: "eLiberty", + symbol: "$EL", + decimals: 18, }, "99998": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 + name: "UBC", + symbol: "UBC", + decimals: 18, }, "99999": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 + name: "UBC", + symbol: "UBC", + decimals: 18, }, "100000": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100001": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100002": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100003": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100004": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100005": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100006": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100007": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100008": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "100009": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 + name: "VeChain", + symbol: "VET", + decimals: 18, }, "100010": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 + name: "VeChain", + symbol: "VET", + decimals: 18, }, "100011": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "101010": { - "name": "FREE", - "symbol": "FREE", - "decimals": 18 + name: "FREE", + symbol: "FREE", + decimals: 18, }, "102031": { - "name": "Testnet CTC", - "symbol": "tCTC", - "decimals": 18 + name: "Testnet CTC", + symbol: "tCTC", + decimals: 18, }, "103090": { - "name": "CRFI", - "symbol": "â—ˆ", - "decimals": 18 + name: "CRFI", + symbol: "â—ˆ", + decimals: 18, }, "103454": { - "name": "Masa Token", - "symbol": "MASA", - "decimals": 18 + name: "Masa Token", + symbol: "MASA", + decimals: 18, }, "104566": { - "name": "KaspaClassic", - "symbol": "CAS", - "decimals": 18 + name: "KaspaClassic", + symbol: "CAS", + decimals: 18, }, "105105": { - "name": "Stratis", - "symbol": "STRAX", - "decimals": 18 + name: "Stratis", + symbol: "STRAX", + decimals: 18, }, "108801": { - "name": "Brother", - "symbol": "BRO", - "decimals": 18 + name: "Brother", + symbol: "BRO", + decimals: 18, }, "110000": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110001": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110002": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110003": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110004": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110005": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110006": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110007": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110008": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "110011": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 + name: "QKC", + symbol: "QKC", + decimals: 18, }, "111000": { - "name": "TestSIBR", - "symbol": "SIBR", - "decimals": 18 + name: "TestSIBR", + symbol: "SIBR", + decimals: 18, }, "111111": { - "name": "Siberium", - "symbol": "SIBR", - "decimals": 18 + name: "Siberium", + symbol: "SIBR", + decimals: 18, }, "111188": { - "name": "re.al Ether", - "symbol": "reETH", - "decimals": 18 + name: "re.al Ether", + symbol: "reETH", + decimals: 18, }, "112358": { - "name": "Metao", - "symbol": "METAO", - "decimals": 18 + name: "Metao", + symbol: "METAO", + decimals: 18, }, "119139": { - "name": "DAP", - "symbol": "DAP", - "decimals": 18 + name: "DAP", + symbol: "DAP", + decimals: 18, }, "123456": { - "name": "Devnet ADIL", - "symbol": "ADIL", - "decimals": 18 + name: "Devnet ADIL", + symbol: "ADIL", + decimals: 18, }, "128123": { - "name": "tez", - "symbol": "XTZ", - "decimals": 18 + name: "tez", + symbol: "XTZ", + decimals: 18, }, "131313": { - "name": "DIONE", - "symbol": "DIONE", - "decimals": 18 + name: "DIONE", + symbol: "DIONE", + decimals: 18, }, "131419": { - "name": "ETND", - "symbol": "ETND", - "decimals": 18 + name: "ETND", + symbol: "ETND", + decimals: 18, }, "132902": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "141319": { - "name": "MagApe", - "symbol": "MAG", - "decimals": 18 + name: "MagApe", + symbol: "MAG", + decimals: 18, }, "142857": { - "name": "ict", - "symbol": "ict", - "decimals": 18 + name: "ict", + symbol: "ict", + decimals: 18, }, "161212": { - "name": "Play", - "symbol": "PLAY", - "decimals": 18 + name: "Play", + symbol: "PLAY", + decimals: 18, }, "165279": { - "name": "Eclat", - "symbol": "ECLAT", - "decimals": 18 + name: "Eclat", + symbol: "ECLAT", + decimals: 18, }, "167000": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "167008": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "167009": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "188710": { - "name": "Bitica Coin", - "symbol": "BDCC", - "decimals": 18 + name: "Bitica Coin", + symbol: "BDCC", + decimals: 18, }, "188881": { - "name": "Condor Native Token", - "symbol": "CONDOR", - "decimals": 18 + name: "Condor Native Token", + symbol: "CONDOR", + decimals: 18, }, "192940": { - "name": "FHE", - "symbol": "FHE", - "decimals": 18 + name: "FHE", + symbol: "FHE", + decimals: 18, }, "200000": { - "name": "FAI", - "symbol": "FAI", - "decimals": 18 + name: "FAI", + symbol: "FAI", + decimals: 18, }, "200101": { - "name": "milkTAda", - "symbol": "mTAda", - "decimals": 18 + name: "milkTAda", + symbol: "mTAda", + decimals: 18, }, "200202": { - "name": "milkTAlgo", - "symbol": "mTAlgo", - "decimals": 18 + name: "milkTAlgo", + symbol: "mTAlgo", + decimals: 18, }, "200625": { - "name": "Akroma Ether", - "symbol": "AKA", - "decimals": 18 + name: "Akroma Ether", + symbol: "AKA", + decimals: 18, }, "200810": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "200901": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "201018": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 + name: "ATP", + symbol: "atp", + decimals: 18, }, "201030": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 + name: "ATP", + symbol: "atp", + decimals: 18, }, "201804": { - "name": "Mythos", - "symbol": "MYTH", - "decimals": 18 + name: "Mythos", + symbol: "MYTH", + decimals: 18, }, "202020": { - "name": "Decimal", - "symbol": "tDEL", - "decimals": 18 + name: "Decimal", + symbol: "tDEL", + decimals: 18, }, "202212": { - "name": "XN", - "symbol": "XN", - "decimals": 18 + name: "XN", + symbol: "XN", + decimals: 18, }, "202401": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "202624": { - "name": "Twala Coin", - "symbol": "TWL", - "decimals": 18 + name: "Twala Coin", + symbol: "TWL", + decimals: 18, }, "204005": { - "name": "XN", - "symbol": "XN", - "decimals": 18 + name: "XN", + symbol: "XN", + decimals: 18, }, "205205": { - "name": "Auroria Stratis", - "symbol": "tSTRAX", - "decimals": 18 + name: "Auroria Stratis", + symbol: "tSTRAX", + decimals: 18, }, "210049": { - "name": "GitAGI", - "symbol": "tGAGI", - "decimals": 18 + name: "GitAGI", + symbol: "tGAGI", + decimals: 18, }, "210425": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 + name: "LAT", + symbol: "lat", + decimals: 18, }, "220315": { - "name": "Master Bank", - "symbol": "MAS", - "decimals": 18 + name: "Master Bank", + symbol: "MAS", + decimals: 18, }, "221230": { - "name": "Reap", - "symbol": "REAP", - "decimals": 18 + name: "Reap", + symbol: "REAP", + decimals: 18, }, "221231": { - "name": "test-Reap", - "symbol": "tREAP", - "decimals": 18 + name: "test-Reap", + symbol: "tREAP", + decimals: 18, }, "222222": { - "name": "Wrapped ETH", - "symbol": "WETH", - "decimals": 18 + name: "Wrapped ETH", + symbol: "WETH", + decimals: 18, }, "222555": { - "name": "DeepL", - "symbol": "DEEPL", - "decimals": 18 + name: "DeepL", + symbol: "DEEPL", + decimals: 18, }, "222666": { - "name": "DeepL", - "symbol": "DEEPL", - "decimals": 18 + name: "DeepL", + symbol: "DEEPL", + decimals: 18, }, "224168": { - "name": "Taf ECO Chain Mainnet", - "symbol": "TAFECO", - "decimals": 18 + name: "Taf ECO Chain Mainnet", + symbol: "TAFECO", + decimals: 18, }, "224422": { - "name": "CONET Sebolia", - "symbol": "CONET", - "decimals": 18 + name: "CONET Sebolia", + symbol: "CONET", + decimals: 18, }, "224433": { - "name": "CONET Holesky", - "symbol": "CONET", - "decimals": 18 + name: "CONET Holesky", + symbol: "CONET", + decimals: 18, }, "230315": { - "name": "HashKey Token", - "symbol": "tHSK", - "decimals": 18 + name: "HashKey Token", + symbol: "tHSK", + decimals: 18, }, "234666": { - "name": "HAYMO", - "symbol": "HYM", - "decimals": 18 + name: "HAYMO", + symbol: "HYM", + decimals: 18, }, "240515": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 + name: "BTC", + symbol: "BTC", + decimals: 18, }, "246529": { - "name": "ARTIS sigma1 Ether", - "symbol": "ATS", - "decimals": 18 + name: "ARTIS sigma1 Ether", + symbol: "ATS", + decimals: 18, }, "246785": { - "name": "ARTIS tau1 Ether", - "symbol": "tATS", - "decimals": 18 + name: "ARTIS tau1 Ether", + symbol: "tATS", + decimals: 18, }, "247253": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "256256": { - "name": "Caduceus Token", - "symbol": "CMP", - "decimals": 18 + name: "Caduceus Token", + symbol: "CMP", + decimals: 18, }, "262371": { - "name": "Eclat Testnet", - "symbol": "ECLAT", - "decimals": 18 + name: "Eclat Testnet", + symbol: "ECLAT", + decimals: 18, }, "266256": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 + name: "Gear Zero Network Native Token", + symbol: "GZN", + decimals: 18, }, "271271": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 + name: "EgonCoin", + symbol: "EGON", + decimals: 18, }, "281121": { - "name": "SoChain", - "symbol": "$OC", - "decimals": 18 + name: "SoChain", + symbol: "$OC", + decimals: 18, }, "282828": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "309075": { - "name": "OWCT", - "symbol": "OWCT", - "decimals": 18 + name: "OWCT", + symbol: "OWCT", + decimals: 18, }, "313313": { - "name": "SAHARA", - "symbol": "SAH", - "decimals": 18 + name: "SAHARA", + symbol: "SAH", + decimals: 18, }, "314159": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 + name: "testnet filecoin", + symbol: "tFIL", + decimals: 18, }, "322202": { - "name": "PAREX", - "symbol": "PRX", - "decimals": 18 + name: "PAREX", + symbol: "PRX", + decimals: 18, }, "323213": { - "name": "Bloom", - "symbol": "BGBC", - "decimals": 18 + name: "Bloom", + symbol: "BGBC", + decimals: 18, }, "330844": { - "name": "TTcoin", - "symbol": "TC", - "decimals": 18 + name: "TTcoin", + symbol: "TC", + decimals: 18, }, "333313": { - "name": "Bloom", - "symbol": "BGBC", - "decimals": 18 + name: "Bloom", + symbol: "BGBC", + decimals: 18, }, "333331": { - "name": "AvesT", - "symbol": "AVST", - "decimals": 18 + name: "AvesT", + symbol: "AVST", + decimals: 18, }, "333333": { - "name": "USNT", - "symbol": "USNT", - "decimals": 18 + name: "USNT", + symbol: "USNT", + decimals: 18, }, "333666": { - "name": "tOONE", - "symbol": "tOONE", - "decimals": 18 + name: "tOONE", + symbol: "tOONE", + decimals: 18, }, "333777": { - "name": "tOONE", - "symbol": "tOONE", - "decimals": 18 + name: "tOONE", + symbol: "tOONE", + decimals: 18, }, "333888": { - "name": "tPolis", - "symbol": "tPOLIS", - "decimals": 18 + name: "tPolis", + symbol: "tPOLIS", + decimals: 18, }, "333999": { - "name": "Polis", - "symbol": "POLIS", - "decimals": 18 + name: "Polis", + symbol: "POLIS", + decimals: 18, }, "336655": { - "name": "UBTC", - "symbol": "UBTC", - "decimals": 18 + name: "UBTC", + symbol: "UBTC", + decimals: 18, }, "336666": { - "name": "UBTC", - "symbol": "UBTC", - "decimals": 18 + name: "UBTC", + symbol: "UBTC", + decimals: 18, }, "355110": { - "name": "Bitfinity Token", - "symbol": "BFT", - "decimals": 18 + name: "Bitfinity Token", + symbol: "BFT", + decimals: 18, }, "355113": { - "name": "Bitfinity Token", - "symbol": "BFT", - "decimals": 18 + name: "Bitfinity Token", + symbol: "BFT", + decimals: 18, }, "360890": { - "name": "vTFUEL", - "symbol": "vTFUEL", - "decimals": 18 + name: "vTFUEL", + symbol: "vTFUEL", + decimals: 18, }, "363636": { - "name": "Digit Coin", - "symbol": "DGC", - "decimals": 18 + name: "Digit Coin", + symbol: "DGC", + decimals: 18, }, "373737": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 + name: "HAP", + symbol: "HAP", + decimals: 18, }, "381931": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 + name: "Metal", + symbol: "METAL", + decimals: 18, }, "381932": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 + name: "Metal", + symbol: "METAL", + decimals: 18, }, "404040": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 + name: "Tipboxcoin", + symbol: "TPBX", + decimals: 18, }, "413413": { - "name": "AIE", - "symbol": "tAIE", - "decimals": 18 + name: "AIE", + symbol: "tAIE", + decimals: 18, }, "420420": { - "name": "KEK", - "symbol": "KEK", - "decimals": 18 + name: "KEK", + symbol: "KEK", + decimals: 18, }, "420666": { - "name": "tKEK", - "symbol": "tKEK", - "decimals": 18 + name: "tKEK", + symbol: "tKEK", + decimals: 18, }, "420692": { - "name": "Alterium ETH", - "symbol": "AltETH", - "decimals": 18 + name: "Alterium ETH", + symbol: "AltETH", + decimals: 18, }, "421611": { - "name": "Arbitrum Rinkeby Ether", - "symbol": "ETH", - "decimals": 18 + name: "Arbitrum Rinkeby Ether", + symbol: "ETH", + decimals: 18, }, "421613": { - "name": "Arbitrum Goerli Ether", - "symbol": "AGOR", - "decimals": 18 + name: "Arbitrum Goerli Ether", + symbol: "AGOR", + decimals: 18, }, "421614": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "424242": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 + name: "FTN", + symbol: "FTN", + decimals: 18, }, "431140": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 + name: "Avalanche", + symbol: "AVAX", + decimals: 18, }, "432201": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 + name: "Dexalot", + symbol: "ALOT", + decimals: 18, }, "432204": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 + name: "Dexalot", + symbol: "ALOT", + decimals: 18, }, "444444": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "444900": { - "name": "Weelink Chain Token", - "symbol": "tWLK", - "decimals": 18 + name: "Weelink Chain Token", + symbol: "tWLK", + decimals: 18, }, "471100": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "473861": { - "name": "Ultra Pro", - "symbol": "UPRO", - "decimals": 18 + name: "Ultra Pro", + symbol: "UPRO", + decimals: 18, }, "474142": { - "name": "OpenCoin", - "symbol": "OPC", - "decimals": 10 + name: "OpenCoin", + symbol: "OPC", + decimals: 10, }, "504441": { - "name": "Playdapp", - "symbol": "PDA", - "decimals": 18 + name: "Playdapp", + symbol: "PDA", + decimals: 18, }, "512512": { - "name": "Caduceus Testnet Token", - "symbol": "CMP", - "decimals": 18 + name: "Caduceus Testnet Token", + symbol: "CMP", + decimals: 18, }, "513100": { - "name": "DisChain", - "symbol": "DIS", - "decimals": 18 + name: "DisChain", + symbol: "DIS", + decimals: 18, }, "526916": { - "name": "DO", - "symbol": "DCT", - "decimals": 18 + name: "DO", + symbol: "DCT", + decimals: 18, }, "534351": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "534352": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "534849": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 + name: "Shina Inu", + symbol: "SHI", + decimals: 18, }, "535037": { - "name": "BeanEco SmartChain", - "symbol": "BESC", - "decimals": 18 + name: "BeanEco SmartChain", + symbol: "BESC", + decimals: 18, }, "552981": { - "name": "OWCT", - "symbol": "OWCT", - "decimals": 18 + name: "OWCT", + symbol: "OWCT", + decimals: 18, }, "555555": { - "name": "Pentagon", - "symbol": "PEN", - "decimals": 18 + name: "Pentagon", + symbol: "PEN", + decimals: 18, }, "555666": { - "name": "Eclipse", - "symbol": "ECLPS", - "decimals": 18 + name: "Eclipse", + symbol: "ECLPS", + decimals: 18, }, "622277": { - "name": "Hypra", - "symbol": "HYP", - "decimals": 18 + name: "Hypra", + symbol: "HYP", + decimals: 18, }, "622463": { - "name": "TON", - "symbol": "TON", - "decimals": 18 + name: "TON", + symbol: "TON", + decimals: 18, }, "641230": { - "name": "Bear Network Chain Native Token", - "symbol": "BRNKC", - "decimals": 18 + name: "Bear Network Chain Native Token", + symbol: "BRNKC", + decimals: 18, }, "651940": { - "name": "ALL", - "symbol": "ALL", - "decimals": 18 + name: "ALL", + symbol: "ALL", + decimals: 18, }, "656476": { - "name": "EDU", - "symbol": "EDU", - "decimals": 18 + name: "EDU", + symbol: "EDU", + decimals: 18, }, "660279": { - "name": "Xai", - "symbol": "XAI", - "decimals": 18 + name: "Xai", + symbol: "XAI", + decimals: 18, }, "666666": { - "name": "VS", - "symbol": "VS", - "decimals": 18 + name: "VS", + symbol: "VS", + decimals: 18, }, "666888": { - "name": "Hela HLUSD", - "symbol": "HLUSD", - "decimals": 18 + name: "Hela HLUSD", + symbol: "HLUSD", + decimals: 18, }, "686868": { - "name": "Won", - "symbol": "WON", - "decimals": 18 + name: "Won", + symbol: "WON", + decimals: 18, }, "696969": { - "name": "Galadriel Devnet token", - "symbol": "GAL", - "decimals": 18 + name: "Galadriel Devnet token", + symbol: "GAL", + decimals: 18, }, "710420": { - "name": "TILT", - "symbol": "TILT", - "decimals": 18 + name: "TILT", + symbol: "TILT", + decimals: 18, }, "713715": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 + name: "Sei", + symbol: "SEI", + decimals: 18, }, "721529": { - "name": "ERAM", - "symbol": "ERAM", - "decimals": 18 + name: "ERAM", + symbol: "ERAM", + decimals: 18, }, "743111": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "751230": { - "name": "Bear Network Chain Testnet Token", - "symbol": "tBRNKC", - "decimals": 18 + name: "Bear Network Chain Testnet Token", + symbol: "tBRNKC", + decimals: 18, }, "761412": { - "name": "Miexs Coin", - "symbol": "MIX", - "decimals": 18 + name: "Miexs Coin", + symbol: "MIX", + decimals: 18, }, "764984": { - "name": "Lamina1 Test", - "symbol": "L1T", - "decimals": 18 + name: "Lamina1 Test", + symbol: "L1T", + decimals: 18, }, "767368": { - "name": "L1ID Test", - "symbol": "L1IDT", - "decimals": 18 + name: "L1ID Test", + symbol: "L1IDT", + decimals: 18, }, "776877": { - "name": "Modularium", - "symbol": "MDM", - "decimals": 18 + name: "Modularium", + symbol: "MDM", + decimals: 18, }, "800001": { - "name": "OctaSpace", - "symbol": "OCTA", - "decimals": 18 + name: "OctaSpace", + symbol: "OCTA", + decimals: 18, }, "808080": { - "name": "tBIZT", - "symbol": "tBIZT", - "decimals": 18 + name: "tBIZT", + symbol: "tBIZT", + decimals: 18, }, "810180": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "810181": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "810182": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "820522": { - "name": "TAS", - "symbol": "tTAS", - "decimals": 18 + name: "TAS", + symbol: "tTAS", + decimals: 18, }, "827431": { - "name": "Curve", - "symbol": "CURVE", - "decimals": 18 + name: "Curve", + symbol: "CURVE", + decimals: 18, }, "839320": { - "name": "Primal Network", - "symbol": "PRM", - "decimals": 18 + name: "Primal Network", + symbol: "PRM", + decimals: 18, }, "846000": { - "name": "APTA", - "symbol": "APTA", - "decimals": 18 + name: "APTA", + symbol: "APTA", + decimals: 18, }, "855456": { - "name": "Dodao", - "symbol": "DODAO", - "decimals": 18 + name: "Dodao", + symbol: "DODAO", + decimals: 18, }, "879151": { - "name": "BlocX", - "symbol": "BLX", - "decimals": 18 + name: "BlocX", + symbol: "BLX", + decimals: 18, }, "888882": { - "name": "REXX", - "symbol": "REXX", - "decimals": 18 + name: "REXX", + symbol: "REXX", + decimals: 18, }, "888888": { - "name": "VS", - "symbol": "VS", - "decimals": 18 + name: "VS", + symbol: "VS", + decimals: 18, }, "900000": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 + name: "Posichain Native Token", + symbol: "POSI", + decimals: 18, }, "910000": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 + name: "Posichain Native Token", + symbol: "POSI", + decimals: 18, }, "912559": { - "name": "RIA", - "symbol": "RIA", - "decimals": 18 + name: "RIA", + symbol: "RIA", + decimals: 18, }, "920000": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 + name: "Posichain Native Token", + symbol: "POSI", + decimals: 18, }, "920001": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 + name: "Posichain Native Token", + symbol: "POSI", + decimals: 18, }, "923018": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 + name: "FNCY", + symbol: "FNCY", + decimals: 18, }, "955081": { - "name": "Jono12 Token", - "symbol": "JONO", - "decimals": 18 + name: "Jono12 Token", + symbol: "JONO", + decimals: 18, }, "955305": { - "name": "ELV", - "symbol": "ELV", - "decimals": 18 + name: "ELV", + symbol: "ELV", + decimals: 18, }, "978657": { - "name": "Testnet MAGIC", - "symbol": "MAGIC", - "decimals": 18 + name: "Testnet MAGIC", + symbol: "MAGIC", + decimals: 18, }, "984122": { - "name": "TIA", - "symbol": "TIA", - "decimals": 18 + name: "TIA", + symbol: "TIA", + decimals: 18, }, "984123": { - "name": "TIA", - "symbol": "TIA", - "decimals": 18 + name: "TIA", + symbol: "TIA", + decimals: 18, }, "988207": { - "name": "ECROX COIN", - "symbol": "ECROX", - "decimals": 18 + name: "ECROX COIN", + symbol: "ECROX", + decimals: 18, }, "998899": { - "name": "CHAIN", - "symbol": "CHAIN", - "decimals": 18 + name: "CHAIN", + symbol: "CHAIN", + decimals: 18, }, "999999": { - "name": "AMC", - "symbol": "AMC", - "decimals": 18 + name: "AMC", + symbol: "AMC", + decimals: 18, }, "1100789": { - "name": "NMT", - "symbol": "NMT", - "decimals": 18 + name: "NMT", + symbol: "NMT", + decimals: 18, }, "1127469": { - "name": "Tiltyard Token", - "symbol": "TILTG", - "decimals": 18 + name: "Tiltyard Token", + symbol: "TILTG", + decimals: 18, }, "1261120": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1313114": { - "name": "Etho Protocol", - "symbol": "ETHO", - "decimals": 18 + name: "Etho Protocol", + symbol: "ETHO", + decimals: 18, }, "1313500": { - "name": "Xerom Ether", - "symbol": "XERO", - "decimals": 18 + name: "Xerom Ether", + symbol: "XERO", + decimals: 18, }, "1337702": { - "name": "kintsugi Ethere", - "symbol": "kiETH", - "decimals": 18 + name: "kintsugi Ethere", + symbol: "kiETH", + decimals: 18, }, "1337802": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 + name: "Testnet ETH", + symbol: "ETH", + decimals: 18, }, "1337803": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 + name: "Testnet ETH", + symbol: "ETH", + decimals: 18, }, "1398243": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1612127": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1637450": { - "name": "tBNB", - "symbol": "tBNB", - "decimals": 18 + name: "tBNB", + symbol: "tBNB", + decimals: 18, }, "1731313": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2021398": { - "name": "DeBank USD", - "symbol": "USD", - "decimals": 18 + name: "DeBank USD", + symbol: "USD", + decimals: 18, }, "2099156": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 + name: "Plian Token", + symbol: "PI", + decimals: 18, }, "2206132": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 + name: "LAT", + symbol: "lat", + decimals: 18, }, "2611555": { - "name": "DGC", - "symbol": "DGC", - "decimals": 18 + name: "DGC", + symbol: "DGC", + decimals: 18, }, "3132023": { - "name": "SAHARA", - "symbol": "SAH", - "decimals": 18 + name: "SAHARA", + symbol: "SAH", + decimals: 18, }, "3141592": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 + name: "testnet filecoin", + symbol: "tFIL", + decimals: 18, }, "3397901": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "3441005": { - "name": "Manta", - "symbol": "MANTA", - "decimals": 18 + name: "Manta", + symbol: "MANTA", + decimals: 18, }, "3441006": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "4000003": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 + name: "ZERO", + symbol: "ZERO", + decimals: 18, }, "4281033": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "5112023": { - "name": "NUMB Token", - "symbol": "NUMB", - "decimals": 18 + name: "NUMB Token", + symbol: "NUMB", + decimals: 18, }, "5167003": { - "name": "MXC Wannsee zkEVM Testnet", - "symbol": "MXC", - "decimals": 18 + name: "MXC Wannsee zkEVM Testnet", + symbol: "MXC", + decimals: 18, }, "5167004": { - "name": "Moonchain Geneva Testnet", - "symbol": "MXC", - "decimals": 18 + name: "Moonchain Geneva Testnet", + symbol: "MXC", + decimals: 18, }, "5201420": { - "name": "Electroneum", - "symbol": "ETN", - "decimals": 18 + name: "Electroneum", + symbol: "ETN", + decimals: 18, }, "5318008": { - "name": "Kopli React", - "symbol": "REACT", - "decimals": 18 + name: "Kopli React", + symbol: "REACT", + decimals: 18, }, "5555555": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 + name: "Imversed Token", + symbol: "IMV", + decimals: 18, }, "5555558": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 + name: "Imversed Token", + symbol: "IMV", + decimals: 18, }, "6038361": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "6666665": { - "name": "SAFE(AnWang)", - "symbol": "SAFE", - "decimals": 18 + name: "SAFE(AnWang)", + symbol: "SAFE", + decimals: 18, }, "6666666": { - "name": "SAFE(AnWang)", - "symbol": "SAFE", - "decimals": 18 + name: "SAFE(AnWang)", + symbol: "SAFE", + decimals: 18, }, "7225878": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 + name: "OAS", + symbol: "OAS", + decimals: 18, }, "7355310": { - "name": "Vessel ETH", - "symbol": "VETH", - "decimals": 18 + name: "Vessel ETH", + symbol: "VETH", + decimals: 18, }, "7668378": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 + name: "Shiba Predator", + symbol: "QOM", + decimals: 18, }, "7762959": { - "name": "Musicoin", - "symbol": "MUSIC", - "decimals": 18 + name: "Musicoin", + symbol: "MUSIC", + decimals: 18, }, "7777777": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8007736": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 + name: "Plian Token", + symbol: "PI", + decimals: 18, }, "8008135": { - "name": "tFHE", - "symbol": "tFHE", - "decimals": 18 + name: "tFHE", + symbol: "tFHE", + decimals: 18, }, "8080808": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "8601152": { - "name": "WATER", - "symbol": "WATER", - "decimals": 18 + name: "WATER", + symbol: "WATER", + decimals: 18, }, "8794598": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 + name: "HAP", + symbol: "HAP", + decimals: 18, }, "8888881": { - "name": "QARE", - "symbol": "QARE", - "decimals": 18 + name: "QARE", + symbol: "QARE", + decimals: 18, }, "8888888": { - "name": "QARE", - "symbol": "QARE", - "decimals": 18 + name: "QARE", + symbol: "QARE", + decimals: 18, }, "9322252": { - "name": "Gas", - "symbol": "GAS", - "decimals": 18 + name: "Gas", + symbol: "GAS", + decimals: 18, }, "9322253": { - "name": "Gas", - "symbol": "GAS", - "decimals": 18 + name: "Gas", + symbol: "GAS", + decimals: 18, }, "10067275": { - "name": "Plian Token", - "symbol": "TPI", - "decimals": 18 + name: "Plian Token", + symbol: "TPI", + decimals: 18, }, "10101010": { - "name": "Soverun", - "symbol": "SVRN", - "decimals": 18 + name: "Soverun", + symbol: "SVRN", + decimals: 18, }, "10241025": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "11155111": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "11155420": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "13068200": { - "name": "COTI2", - "symbol": "COTI2", - "decimals": 18 + name: "COTI2", + symbol: "COTI2", + decimals: 18, }, "13371337": { - "name": "PepChain Churchill Ether", - "symbol": "TPEP", - "decimals": 18 + name: "PepChain Churchill Ether", + symbol: "TPEP", + decimals: 18, }, "14288640": { - "name": "DAON", - "symbol": "DEB", - "decimals": 18 + name: "DAON", + symbol: "DEB", + decimals: 18, }, "16658437": { - "name": "Plian Testnet Token", - "symbol": "TPI", - "decimals": 18 + name: "Plian Testnet Token", + symbol: "TPI", + decimals: 18, }, "17000920": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 + name: "ETH", + symbol: "ETH", + decimals: 18, }, "18289463": { - "name": "IOLite Ether", - "symbol": "ILT", - "decimals": 18 + name: "IOLite Ether", + symbol: "ILT", + decimals: 18, }, "20180427": { - "name": "FREE", - "symbol": "FREE", - "decimals": 18 + name: "FREE", + symbol: "FREE", + decimals: 18, }, "20180430": { - "name": "SmartMesh Native Token", - "symbol": "SMT", - "decimals": 18 + name: "SmartMesh Native Token", + symbol: "SMT", + decimals: 18, }, "20181205": { - "name": "quarkblockchain Native Token", - "symbol": "QKI", - "decimals": 18 + name: "quarkblockchain Native Token", + symbol: "QKI", + decimals: 18, }, "20201022": { - "name": "Pego Native Token", - "symbol": "PG", - "decimals": 18 + name: "Pego Native Token", + symbol: "PG", + decimals: 18, }, "20240324": { - "name": "DeBank USD", - "symbol": "USD", - "decimals": 18 + name: "DeBank USD", + symbol: "USD", + decimals: 18, }, "20241133": { - "name": "SWANETH", - "symbol": "sETH", - "decimals": 18 + name: "SWANETH", + symbol: "sETH", + decimals: 18, }, "20482050": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "22052002": { - "name": "Excelon", - "symbol": "xlon", - "decimals": 18 + name: "Excelon", + symbol: "xlon", + decimals: 18, }, "27082017": { - "name": "TExlcoin", - "symbol": "TEXL", - "decimals": 18 + name: "TExlcoin", + symbol: "TEXL", + decimals: 18, }, "27082022": { - "name": "Exlcoin", - "symbol": "EXL", - "decimals": 18 + name: "Exlcoin", + symbol: "EXL", + decimals: 18, }, "28122024": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "28945486": { - "name": "Auxilium coin", - "symbol": "AUX", - "decimals": 18 + name: "Auxilium coin", + symbol: "AUX", + decimals: 18, }, "29032022": { - "name": "Flacoin", - "symbol": "FLA", - "decimals": 18 + name: "Flacoin", + symbol: "FLA", + decimals: 18, }, "31415926": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 + name: "testnet filecoin", + symbol: "tFIL", + decimals: 18, }, "35855456": { - "name": "JOYS", - "symbol": "JOYS", - "decimals": 18 + name: "JOYS", + symbol: "JOYS", + decimals: 18, }, "37084624": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "39916801": { - "name": "Kozi", - "symbol": "KOZI", - "decimals": 18 + name: "Kozi", + symbol: "KOZI", + decimals: 18, }, "43214913": { - "name": "maistestsubnet", - "symbol": "MAI", - "decimals": 18 + name: "maistestsubnet", + symbol: "MAI", + decimals: 18, }, "61717561": { - "name": "Aquachain Ether", - "symbol": "AQUA", - "decimals": 18 + name: "Aquachain Ether", + symbol: "AQUA", + decimals: 18, }, "65010002": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 + name: "Bakerloo Auton", + symbol: "ATN", + decimals: 18, }, "65100002": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 + name: "Piccadilly Auton", + symbol: "ATN", + decimals: 18, }, "68840142": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "77787778": { - "name": "0xHash", - "symbol": "HETH", - "decimals": 18 + name: "0xHash", + symbol: "HETH", + decimals: 18, }, "88888888": { - "name": "TEAM", - "symbol": "$TEAM", - "decimals": 18 + name: "TEAM", + symbol: "$TEAM", + decimals: 18, }, "94204209": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "99415706": { - "name": "TOYS", - "symbol": "TOYS", - "decimals": 18 + name: "TOYS", + symbol: "TOYS", + decimals: 18, }, "108160679": { - "name": "Oraichain Token", - "symbol": "ORAI", - "decimals": 18 + name: "Oraichain Token", + symbol: "ORAI", + decimals: 18, }, "111557560": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "123420111": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "161221135": { - "name": "Plume Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Plume Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "168587773": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "192837465": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 + name: "Gather", + symbol: "GTH", + decimals: 18, }, "222000222": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 + name: "gMeld", + symbol: "gMELD", + decimals: 18, }, "245022926": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 + name: "Neon", + symbol: "NEON", + decimals: 18, }, "245022934": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 + name: "Neon", + symbol: "NEON", + decimals: 18, }, "278611351": { - "name": "sFuel", - "symbol": "SFUEL", - "decimals": 18 + name: "sFuel", + symbol: "SFUEL", + decimals: 18, }, "311752642": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 + name: "OLT", + symbol: "OLT", + decimals: 18, }, "328527624": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "333000333": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 + name: "gMeld", + symbol: "gMELD", + decimals: 18, }, "356256156": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 + name: "Gather", + symbol: "GTH", + decimals: 18, }, "486217935": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 + name: "Gather", + symbol: "GTH", + decimals: 18, }, "666666666": { - "name": "DEGEN", - "symbol": "DEGEN", - "decimals": 18 + name: "DEGEN", + symbol: "DEGEN", + decimals: 18, }, "888888888": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "889910245": { - "name": "PTCE", - "symbol": "PTCE", - "decimals": 18 + name: "PTCE", + symbol: "PTCE", + decimals: 18, }, "889910246": { - "name": "PTCE", - "symbol": "PTCE", - "decimals": 18 + name: "PTCE", + symbol: "PTCE", + decimals: 18, }, "974399131": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "999999999": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: "Sepolia Ether", + symbol: "ETH", + decimals: 18, }, "1020352220": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1122334455": { - "name": "IPOS Network Ether", - "symbol": "IPOS", - "decimals": 18 + name: "IPOS Network Ether", + symbol: "IPOS", + decimals: 18, }, "1146703430": { - "name": "Cyb", - "symbol": "CYB", - "decimals": 18 + name: "Cyb", + symbol: "CYB", + decimals: 18, }, "1273227453": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1313161554": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1313161555": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1313161556": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1313161560": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1350216234": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1351057110": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1380012617": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "1380996178": { - "name": "Raptor", - "symbol": "RPTR", - "decimals": 18 + name: "Raptor", + symbol: "RPTR", + decimals: 18, }, "1444673419": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1482601649": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1564830818": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "1666600000": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666600001": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666700000": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666700001": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666900000": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1666900001": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 + name: "ONE", + symbol: "ONE", + decimals: 18, }, "1802203764": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "1918988905": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 + name: "Ethereum", + symbol: "ETH", + decimals: 18, }, "2021121117": { - "name": "DataHoppers", - "symbol": "HOP", - "decimals": 18 + name: "DataHoppers", + symbol: "HOP", + decimals: 18, }, "2046399126": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 + name: "sFUEL", + symbol: "sFUEL", + decimals: 18, }, "3125659152": { - "name": "Pirl Ether", - "symbol": "PIRL", - "decimals": 18 + name: "Pirl Ether", + symbol: "PIRL", + decimals: 18, }, "4216137055": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 + name: "OLT", + symbol: "OLT", + decimals: 18, }, "11297108109": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 + name: "PALM", + symbol: "PALM", + decimals: 18, }, "11297108099": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 + name: "PALM", + symbol: "PALM", + decimals: 18, }, "28872323069": { - "name": "GitSwarm Ether", - "symbol": "GS-ETH", - "decimals": 18 + name: "GitSwarm Ether", + symbol: "GS-ETH", + decimals: 18, }, "37714555429": { - "name": "sXai", - "symbol": "sXAI", - "decimals": 18 + name: "sXai", + symbol: "sXAI", + decimals: 18, }, "88153591557": { - "name": "GelatoCGT", - "symbol": "CGT", - "decimals": 18 + name: "GelatoCGT", + symbol: "CGT", + decimals: 18, }, "107107114116": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "111222333444": { - "name": "ALT", - "symbol": "ALT", - "decimals": 18 + name: "ALT", + symbol: "ALT", + decimals: 18, }, "197710212030": { - "name": "Ntity", - "symbol": "NTT", - "decimals": 18 + name: "Ntity", + symbol: "NTT", + decimals: 18, }, "197710212031": { - "name": "Ntity Haradev", - "symbol": "NTTH", - "decimals": 18 + name: "Ntity Haradev", + symbol: "NTTH", + decimals: 18, }, "202402181627": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "383414847825": { - "name": "Zeniq", - "symbol": "ZENIQ", - "decimals": 18 + name: "Zeniq", + symbol: "ZENIQ", + decimals: 18, }, "666301171999": { - "name": "PDC", - "symbol": "PDC", - "decimals": 18 + name: "PDC", + symbol: "PDC", + decimals: 18, }, "6022140761023": { - "name": "Molereum Ether", - "symbol": "MOLE", - "decimals": 18 + name: "Molereum Ether", + symbol: "MOLE", + decimals: 18, }, "2713017997578000": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: "Ether", + symbol: "ETH", + decimals: 18, }, "2716446429837000": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - } + name: "Ether", + symbol: "ETH", + decimals: 18, + }, }; export const EXTRA_RPCS = { @@ -21656,20 +21655,11 @@ export const EXTRA_RPCS = { "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" + "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", @@ -21688,16 +21678,10 @@ export const EXTRA_RPCS = { "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" + "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", @@ -21720,19 +21704,11 @@ export const EXTRA_RPCS = { "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" + "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", @@ -21742,28 +21718,19 @@ export const EXTRA_RPCS = { "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" + "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" + "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", @@ -21772,23 +21739,12 @@ export const EXTRA_RPCS = { "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" + "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", @@ -21797,50 +21753,21 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -21854,42 +21781,17 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -21898,33 +21800,19 @@ export const EXTRA_RPCS = { "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" + "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" + "https://rpc-6.zyx.network", ], "56": [ "https://binance.llamarpc.com", @@ -21967,7 +21855,7 @@ export const EXTRA_RPCS = { "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" + "wss://bsc-ws-node.nariox.org", ], "57": [ "https://rpc.syscoin.org", @@ -21978,7 +21866,7 @@ export const EXTRA_RPCS = { "https://syscoin.public-rpc.com", "wss://rpc.syscoin.org/wss", "https://syscoin-evm.publicnode.com", - "wss://syscoin-evm.publicnode.com" + "wss://syscoin-evm.publicnode.com", ], "58": [ "https://dappnode1.ont.io:10339", @@ -21988,11 +21876,9 @@ export const EXTRA_RPCS = { "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" + "http://dappnode4.ont.io:20339", ], + "60": ["https://rpc.gochain.io"], "61": [ "https://etc.mytokenpocket.vip", "https://rpc.etcinscribe.com", @@ -22002,71 +21888,41 @@ export const EXTRA_RPCS = { "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" + "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" + "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" + "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" + "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", @@ -22074,69 +21930,25 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -22150,15 +21962,10 @@ export const EXTRA_RPCS = { "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" + "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", @@ -22178,57 +21985,25 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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", @@ -22236,22 +22011,12 @@ export const EXTRA_RPCS = { "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" + "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", @@ -22260,7 +22025,7 @@ export const EXTRA_RPCS = { "wss://rcl-dataseed1.rclsidechain.com/v1", "wss://rcl-dataseed2.rclsidechain.com/v1", "wss://rcl-dataseed3.rclsidechain.com/v1", - "wss://rcl-dataseed4.rclsidechain.com/v1" + "wss://rcl-dataseed4.rclsidechain.com/v1", ], "122": [ "https://rpc.fuse.io", @@ -22269,46 +22034,24 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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", @@ -22341,154 +22084,51 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -22499,84 +22139,39 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "https://rpc.mainnet.oasys.games", ], "250": [ "https://rpcapi.fantom.network", @@ -22595,53 +22190,20 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -22651,52 +22213,26 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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", @@ -22707,35 +22243,27 @@ export const EXTRA_RPCS = { "https://filecoin-mainnet.chainstacklabs.com/rpc/v1", "https://filfox.info/rpc/v1", "https://filecoin.drpc.org", - "wss://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" + "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" + "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", @@ -22743,28 +22271,14 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -22774,48 +22288,20 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -22829,114 +22315,55 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "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" - ], + "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" + "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", @@ -22947,164 +22374,69 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" - ], + "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" - ], + "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", @@ -23113,89 +22445,39 @@ export const EXTRA_RPCS = { "https://evm-dataseed.meerscan.com", "https://qng.rpc.qitmeer.io", "https://rpc.dimai.ai", - "https://rpc.woowow.io" - ], - "814": [ - "https://rpc-zkevm.thefirechain.com" + "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" - ], + "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", @@ -23203,121 +22485,54 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "wss://metis.drpc.org", ], "1089": [ "https://humans-mainnet-evm.itrocket.net", @@ -23327,7 +22542,7 @@ export const EXTRA_RPCS = { "https://mainnet-humans-evm.konsortech.xyz", "https://evm-rpc.mainnet.humans.zone", "https://json-rpc.humans.bh.rocks", - "https://evm-rpc.humans.huginn.tech" + "https://evm-rpc.humans.huginn.tech", ], "1100": [ "https://jsonrpc.dymension.nodestake.org", @@ -23336,7 +22551,7 @@ export const EXTRA_RPCS = { "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" + "wss://dymension-evm-rpc.publicnode.com", ], "1101": [ "https://rpc.ankr.com/polygon_zkevm", @@ -23347,28 +22562,14 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -23376,125 +22577,43 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -23514,7 +22633,7 @@ export const EXTRA_RPCS = { "https://moonbeam.unitedbloc.com", "wss://moonbeam.unitedbloc.com", "https://moonbeam.drpc.org", - "wss://moonbeam.drpc.org" + "wss://moonbeam.drpc.org", ], "1285": [ "wss://moonriver.api.onfinality.io/public-ws", @@ -23532,7 +22651,7 @@ export const EXTRA_RPCS = { "https://moonriver.unitedbloc.com", "wss://moonriver.unitedbloc.com", "https://moonriver.drpc.org", - "wss://moonriver.drpc.org" + "wss://moonriver.drpc.org", ], "1287": [ "https://rpc.testnet.moonbeam.network", @@ -23549,198 +22668,80 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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" - ], + "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" + "wss://ws-mainnet-us.cube.network", ], "1819": [ "https://http-testnet.cube.network", @@ -23750,126 +22751,44 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -23880,46 +22799,25 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "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", @@ -23933,24 +22831,13 @@ export const EXTRA_RPCS = { "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" + "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", @@ -23959,123 +22846,46 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "wss://kava-testnet.drpc.org", ], "2222": [ "https://evm.kava.io", @@ -24092,321 +22902,120 @@ export const EXTRA_RPCS = { "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" + "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" + "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" - ], + "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" - ], + "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", @@ -24416,105 +23025,41 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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", @@ -24522,31 +23067,19 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "https://mainnet-3.blackfort.network/rpc", ], "5000": [ "https://mantle-rpc.publicnode.com", @@ -24555,113 +23088,50 @@ export const EXTRA_RPCS = { "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" + "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" - ], + "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" - ], + "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", @@ -24669,25 +23139,13 @@ export const EXTRA_RPCS = { "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" + "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", @@ -24696,21 +23154,12 @@ export const EXTRA_RPCS = { "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" + "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", @@ -24719,172 +23168,69 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "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" - ], + "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", @@ -24894,17 +23240,11 @@ export const EXTRA_RPCS = { "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" + "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", @@ -24915,89 +23255,32 @@ export const EXTRA_RPCS = { "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" - ], + "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", @@ -25006,23 +23289,13 @@ export const EXTRA_RPCS = { "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" + "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", @@ -25041,116 +23314,58 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "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" + "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" + "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" - ], + "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", @@ -25174,7 +23389,7 @@ export const EXTRA_RPCS = { "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" + "wss://evmos-testnet-evm-rpc.publicnode.com", ], "9001": [ "https://evmos.lava.build", @@ -25211,162 +23426,75 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "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" + "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" + "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", @@ -25376,118 +23504,46 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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", @@ -25502,126 +23558,50 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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", @@ -25632,427 +23612,187 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "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", ], - "18889": [ - "https://titan-testnet-json-rpc.titanlab.io", - "https://titan-testnet-json-rpc-1.titanlab.io", - "https://titan-testnet-json-rpc-2.titanlab.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", ], - "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" + "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", @@ -26071,159 +23811,71 @@ export const EXTRA_RPCS = { "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" + "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", ], - "44444": [ - "https://rpc-02.frenscan.io" + "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", ], - "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}" + "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", @@ -26231,182 +23883,64 @@ export const EXTRA_RPCS = { "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" - ], + "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" + "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", @@ -26422,27 +23956,13 @@ export const EXTRA_RPCS = { "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" + "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", @@ -26450,916 +23970,356 @@ export const EXTRA_RPCS = { "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" + "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" + "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", ], - "10067275": [ - "https://testnet.plian.io/child_test" + "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", ], - "10101010": [ - "https://mainnet-rpc.soverun.com" + "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", ], - "10241025": [ - "https://hal-rpc.alienxchain.io/http", - "https://hal.rpc.caldera.xyz/http" + "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", @@ -27382,39 +24342,22 @@ export const EXTRA_RPCS = { "https://rpc.sepolia.ethpandaops.io", "wss://sepolia.gateway.tenderly.co", "https://sepolia.drpc.org", - "wss://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" - ], + "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", @@ -27423,211 +24366,81 @@ export const EXTRA_RPCS = { "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" - ], + "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" - ], + "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" + "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" - ], + "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", @@ -27638,111 +24451,41 @@ export const EXTRA_RPCS = { "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" - ] + "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"], }; 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" - ], + "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": [], @@ -27752,18 +24495,12 @@ export const NETWORK_FAUCETS = { "13": [], "14": [], "15": [], - "16": [ - "https://faucet.flare.network" - ], + "16": ["https://faucet.flare.network"], "17": [], - "18": [ - "https://faucet-testnet.thundercore.com" - ], + "18": ["https://faucet-testnet.thundercore.com"], "19": [], "20": [], - "21": [ - "https://esc-faucet.elastos.io/" - ], + "21": ["https://esc-faucet.elastos.io/"], "22": [], "23": [], "24": [], @@ -27772,9 +24509,7 @@ export const NETWORK_FAUCETS = { "27": [], "29": [], "30": [], - "31": [ - "https://faucet.rsk.co/" - ], + "31": ["https://faucet.rsk.co/"], "32": [], "33": [], "34": [], @@ -27784,60 +24519,37 @@ export const NETWORK_FAUCETS = { "38": [], "39": [], "40": [], - "41": [ - "https://app.telos.net/testnet/developers" - ], + "41": ["https://app.telos.net/testnet/developers"], "42": [], - "43": [ - "https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a" - ], + "43": ["https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a"], "44": [], - "45": [ - "https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2" - ], + "45": ["https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2"], "46": [], "47": [], "48": [], "49": [], "50": [], - "51": [ - "https://faucet.apothem.network" - ], + "51": ["https://faucet.apothem.network"], "52": [], "53": [], "54": [], "55": [], "56": [], - "57": [ - "https://faucet.syscoin.org" - ], + "57": ["https://faucet.syscoin.org"], "58": [], "60": [], "61": [], - "63": [ - "https://easy.hebeswap.com/#/faucet", - "https://faucet.mordortest.net" - ], + "63": ["https://easy.hebeswap.com/#/faucet", "https://faucet.mordortest.net"], "64": [], - "65": [ - "https://www.okex.com/drawdex" - ], + "65": ["https://www.okex.com/drawdex"], "66": [], "67": [], "68": [], - "69": [ - "http://fauceth.komputing.org?chain=69&address=${ADDRESS}" - ], + "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" - ], + "71": ["https://faucet.confluxnetwork.org"], + "72": ["https://faucet.dxscan.io"], + "73": ["https://faucet-testnet.fncy.world"], "74": [], "75": [], "76": [], @@ -27846,19 +24558,11 @@ export const NETWORK_FAUCETS = { "79": [], "80": [], "81": [], - "82": [ - "https://faucet.meter.io" - ], - "83": [ - "https://faucet-warringstakes.meter.io" - ], + "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" - ], + "85": ["https://www.gatescan.org/testnet/faucet"], + "86": ["https://www.gatescan.org/faucet"], "87": [], "88": [], "89": [], @@ -27867,57 +24571,35 @@ export const NETWORK_FAUCETS = { "92": [], "93": [], "94": [], - "95": [ - "https://faucet.camdl.gov.kh/" - ], + "95": ["https://faucet.camdl.gov.kh/"], "96": [], - "97": [ - "https://testnet.bnbchain.org/faucet-smart" - ], + "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" - ], + "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" - ], + "107": ["https://faucet.novanetwork.io"], "108": [], "109": [], "110": [], - "111": [ - "https://etherlite.org/faucets" - ], + "111": ["https://etherlite.org/faucets"], "112": [], - "113": [ - "https://buy.dehvo.com" - ], - "114": [ - "https://faucet.flare.network" - ], + "113": ["https://buy.dehvo.com"], + "114": ["https://faucet.flare.network"], "117": [], "118": [], "119": [], - "120": [ - "http://faucet.nuls.io" - ], + "120": ["http://faucet.nuls.io"], "121": [], "122": [], - "123": [ - "https://get.fusespark.io" - ], + "123": ["https://get.fusespark.io"], "124": [], - "125": [ - "https://faucet.oychain.io" - ], + "125": ["https://faucet.oychain.io"], "126": [], "127": [], "128": [], @@ -27926,9 +24608,7 @@ export const NETWORK_FAUCETS = { "132": [], "133": [], "134": [], - "135": [ - "https://faucet.alyxchain.com" - ], + "135": ["https://faucet.alyxchain.com"], "136": [], "137": [], "138": [], @@ -27940,39 +24620,27 @@ export const NETWORK_FAUCETS = { "145": [], "147": [], "148": [], - "150": [ - "https://faucet.sixprotocol.net" - ], + "150": ["https://faucet.sixprotocol.net"], "151": [], "152": [], "153": [], "154": [], - "155": [ - "https://faucet.testnet.tenet.org" - ], + "155": ["https://faucet.testnet.tenet.org"], "156": [], - "157": [ - "https://beta.shibariumtech.com/faucet" - ], + "157": ["https://beta.shibariumtech.com/faucet"], "158": [], "159": [], "160": [], "161": [], - "162": [ - "https://discuss.lightstreams.network/t/request-test-tokens" - ], + "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" - ], + "170": ["https://faucet-testnet.hscscan.com/"], + "172": ["https://faucet.latam-blockchain.com"], "176": [], "180": [], "181": [], @@ -27982,13 +24650,9 @@ export const NETWORK_FAUCETS = { "189": [], "191": [], "193": [], - "195": [ - "https://www.okx.com/xlayer/faucet" - ], + "195": ["https://www.okx.com/xlayer/faucet"], "196": [], - "197": [ - "https://neutrinoschain.com/faucet" - ], + "197": ["https://neutrinoschain.com/faucet"], "198": [], "199": [], "200": [], @@ -27999,95 +24663,63 @@ export const NETWORK_FAUCETS = { "207": [], "208": [], "210": [], - "211": [ - "http://faucet.freight.sh" - ], - "212": [ - "https://faucet.mapprotocol.io" - ], + "211": ["http://faucet.freight.sh"], + "212": ["https://faucet.mapprotocol.io"], "213": [], "214": [], "217": [], - "220": [ - "https://faucet.scalind.com" - ], + "220": ["https://faucet.scalind.com"], "223": [], - "224": [ - "https://faucet.vrd.network" - ], + "224": ["https://faucet.vrd.network"], "225": [], "226": [], "228": [], "230": [], - "234": [ - "https://protojumbo.jumbochain.org/faucet-smart" - ], - "236": [ - "https://faucet.deamchain.com" - ], + "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" - ], + "256": ["https://scan-testnet.hecochain.com/faucet"], "258": [], "259": [], "262": [], "266": [], - "267": [ - "https://testnet.neuraprotocol.io/faucet" - ], + "267": ["https://testnet.neuraprotocol.io/faucet"], "268": [], - "269": [ - "https://myhpbwallet.com/" - ], + "269": ["https://myhpbwallet.com/"], "271": [], "274": [], "278": [], "279": [], - "282": [ - "https://zkevm.cronos.org/faucet" - ], + "282": ["https://zkevm.cronos.org/faucet"], "288": [], "291": [], "295": [], - "296": [ - "https://portal.hedera.com" - ], - "297": [ - "https://portal.hedera.com" - ], + "296": ["https://portal.hedera.com"], + "297": ["https://portal.hedera.com"], "298": [], "300": [], "302": [], "303": [], "305": [], - "307": [ - "https://faucet.lovely.network" - ], + "307": ["https://faucet.lovely.network"], "308": [], "309": [], - "311": [ - "https://faucet.omaxray.com/" - ], + "311": ["https://faucet.omaxray.com/"], "313": [], "314": [], "321": [], - "322": [ - "https://faucet-testnet.kcc.network" - ], + "322": ["https://faucet-testnet.kcc.network"], "323": [], "324": [], "333": [], "335": [], "336": [], - "338": [ - "https://cronos.org/faucet" - ], + "338": ["https://cronos.org/faucet"], "345": [], "361": [], "363": [], @@ -28097,25 +24729,17 @@ export const NETWORK_FAUCETS = { "371": [], "380": [], "381": [], - "385": [ - "https://pipa.lisinski.online" - ], - "395": [ - "https://faucet.testnet.camdl.gov.kh/" - ], + "385": ["https://pipa.lisinski.online"], + "395": ["https://faucet.testnet.camdl.gov.kh/"], "397": [], "398": [], "399": [], - "400": [ - "https://faucet.hyperonchain.com" - ], + "400": ["https://faucet.hyperonchain.com"], "401": [], "404": [], "411": [], "416": [], - "418": [ - "https://faucet.lachain.network" - ], + "418": ["https://faucet.lachain.network"], "420": [], "422": [], "424": [], @@ -28132,29 +24756,19 @@ export const NETWORK_FAUCETS = { "501": [], "510": [], "512": [], - "513": [ - "https://scan-testnet.acuteangle.com/faucet" - ], + "513": ["https://scan-testnet.acuteangle.com/faucet"], "516": [], - "520": [ - "https://xsc.pub/faucet" - ], + "520": ["https://xsc.pub/faucet"], "529": [], "530": [], "534": [], "537": [], "542": [], - "545": [ - "https://testnet-faucet.onflow.org" - ], + "545": ["https://testnet-faucet.onflow.org"], "555": [], "558": [], - "568": [ - "https://faucet.dogechain.dog" - ], - "570": [ - "https://rollux.id/faucetapp" - ], + "568": ["https://faucet.dogechain.dog"], + "570": ["https://rollux.id/faucetapp"], "571": [], "579": [], "592": [], @@ -28162,118 +24776,74 @@ export const NETWORK_FAUCETS = { "596": [], "597": [], "600": [], - "601": [ - "https://vne.network/rose" - ], + "601": ["https://vne.network/rose"], "612": [], "614": [], "634": [], - "646": [ - "https://previewnet-faucet.onflow.org" - ], - "647": [ - "https://faucet.toronto.sx.technology" - ], + "646": ["https://previewnet-faucet.onflow.org"], + "647": ["https://faucet.toronto.sx.technology"], "648": [], "653": [], "654": [], "662": [], - "666": [ - "https://chain.pixie.xyz/faucet" - ], + "666": ["https://chain.pixie.xyz/faucet"], "667": [], "668": [], - "669": [ - "https://faucet-testnet.juncachain.com" - ], + "669": ["https://faucet-testnet.juncachain.com"], "686": [], "690": [], "700": [], "701": [], "707": [], - "708": [ - "https://faucet.bcsdev.io" - ], + "708": ["https://faucet.bcsdev.io"], "710": [], "713": [], "719": [], "721": [], "727": [], "730": [], - "741": [ - "https://faucet.vention.network" - ], + "741": ["https://faucet.vention.network"], "742": [], "747": [], "766": [], - "776": [ - "https://faucet.openchain.info/" - ], + "776": ["https://faucet.openchain.info/"], "777": [], "786": [], "787": [], - "788": [ - "https://faucet.aerochain.id/" - ], + "788": ["https://faucet.aerochain.id/"], "789": [], - "799": [ - "https://faucet.testnet.rupaya.io" - ], - "800": [ - "https://faucet.lucidcoin.io" - ], + "799": ["https://faucet.testnet.rupaya.io"], + "800": ["https://faucet.lucidcoin.io"], "803": [], "808": [], - "810": [ - "https://www.haven1.org/faucet" - ], + "810": ["https://www.haven1.org/faucet"], "813": [], "814": [], "818": [], "820": [], - "822": [ - "https://faucet.runic.build" - ], + "822": ["https://faucet.runic.build"], "831": [], "841": [], "842": [], "859": [], "868": [], "876": [], - "877": [ - "https://faucet.dexit.network" - ], + "877": ["https://faucet.dexit.network"], "880": [], "888": [], - "898": [ - "https://faucet.maxi.network" - ], + "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" - ], + "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/" - ], + "917": ["https://faucet.thefirechain.com"], + "919": ["https://sepoliafaucet.com/"], "927": [], - "943": [ - "https://faucet.v4.testnet.pulsechain.com/" - ], + "943": ["https://faucet.v4.testnet.pulsechain.com/"], "956": [], "957": [], "963": [], @@ -28281,27 +24851,17 @@ export const NETWORK_FAUCETS = { "970": [], "971": [], "972": [], - "977": [ - "https://faucet.nepalblockchain.network" - ], + "977": ["https://faucet.nepalblockchain.network"], "979": [], "980": [], - "985": [ - "https://faucet.metamemo.one/" - ], + "985": ["https://faucet.metamemo.one/"], "989": [], - "990": [ - "https://faucet.eliberty.ngo" - ], - "997": [ - "https://explorer.5ire.network/faucet" - ], + "990": ["https://faucet.eliberty.ngo"], + "997": ["https://explorer.5ire.network/faucet"], "998": [], "999": [], "1000": [], - "1001": [ - "https://baobab.wallet.klaytn.com/access?next=faucet" - ], + "1001": ["https://baobab.wallet.klaytn.com/access?next=faucet"], "1003": [], "1004": [], "1007": [], @@ -28316,17 +24876,10 @@ export const NETWORK_FAUCETS = { "1028": [], "1030": [], "1031": [], - "1038": [ - "https://faucet.bronos.org" - ], + "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" - ], + "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": [], @@ -28337,32 +24890,20 @@ export const NETWORK_FAUCETS = { "1107": [], "1108": [], "1111": [], - "1112": [ - "https://wallet.test.wemix.com/faucet" - ], + "1112": ["https://wallet.test.wemix.com/faucet"], "1113": [], - "1115": [ - "https://scan.test.btcs.network/faucet" - ], + "1115": ["https://scan.test.btcs.network/faucet"], "1116": [], - "1117": [ - "https://faucet.dogcoin.network" - ], + "1117": ["https://faucet.dogcoin.network"], "1123": [], "1130": [], "1131": [], - "1133": [ - "http://tc04.mydefichain.com/faucet" - ], + "1133": ["http://tc04.mydefichain.com/faucet"], "1135": [], "1138": [], "1139": [], - "1140": [ - "https://scan.boka.network/#/Galois/faucet" - ], - "1147": [ - "https://faucet.flagscan.xyz" - ], + "1140": ["https://scan.boka.network/#/Galois/faucet"], + "1147": ["https://faucet.flagscan.xyz"], "1149": [], "1170": [], "1177": [], @@ -28372,9 +24913,7 @@ export const NETWORK_FAUCETS = { "1201": [], "1202": [], "1209": [], - "1210": [ - "https://cuckoo.network/portal/faucet/" - ], + "1210": ["https://cuckoo.network/portal/faucet/"], "1213": [], "1214": [], "1221": [], @@ -28385,31 +24924,21 @@ export const NETWORK_FAUCETS = { "1234": [], "1235": [], "1243": [], - "1244": [ - "https://faucet.archiechain.io" - ], + "1244": ["https://faucet.archiechain.io"], "1246": [], "1248": [], - "1252": [ - "https://cicfaucet.com" - ], + "1252": ["https://cicfaucet.com"], "1280": [], "1284": [], "1285": [], "1287": [], "1288": [], - "1291": [ - "https://faucet.testnet.swisstronik.com" - ], + "1291": ["https://faucet.testnet.swisstronik.com"], "1311": [], "1314": [], "1319": [], - "1320": [ - "https://aia-faucet-testnet.aiachain.org" - ], - "1328": [ - "https://atlantic-2.app.sei.io/faucet" - ], + "1320": ["https://aia-faucet-testnet.aiachain.org"], + "1328": ["https://atlantic-2.app.sei.io/faucet"], "1329": [], "1337": [], "1338": [], @@ -28427,20 +24956,14 @@ export const NETWORK_FAUCETS = { "1440": [], "1442": [], "1452": [], - "1453": [ - "https://istanbul-faucet.metachain.dev" - ], - "1455": [ - "https://faucet.ctexscan.com" - ], + "1453": ["https://istanbul-faucet.metachain.dev"], + "1455": ["https://faucet.ctexscan.com"], "1490": [], "1499": [], "1501": [], "1506": [], "1507": [], - "1515": [ - "https://faucet.beagle.chat/" - ], + "1515": ["https://faucet.beagle.chat/"], "1559": [], "1617": [], "1618": [], @@ -28448,19 +24971,13 @@ export const NETWORK_FAUCETS = { "1625": [], "1657": [], "1662": [], - "1663": [ - "https://faucet.horizen.io" - ], + "1663": ["https://faucet.horizen.io"], "1686": [], "1687": [], "1688": [], - "1701": [ - "https://evm.anytype.io/faucet" - ], + "1701": ["https://evm.anytype.io/faucet"], "1707": [], - "1708": [ - "https://faucet.blockchain.or.th" - ], + "1708": ["https://faucet.blockchain.or.th"], "1717": [], "1718": [], "1729": [], @@ -28469,35 +24986,23 @@ export const NETWORK_FAUCETS = { "1773": [], "1777": [], "1789": [], - "1804": [ - "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" - ], - "1807": [ - "https://analogfaucet.com" - ], + "1804": ["https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md"], + "1807": ["https://analogfaucet.com"], "1818": [], - "1819": [ - "https://faucet.cube.network" - ], + "1819": ["https://faucet.cube.network"], "1821": [], "1856": [], "1875": [], "1881": [], "1890": [], - "1891": [ - "https://faucet.pegasus.lightlink.io/" - ], + "1891": ["https://faucet.pegasus.lightlink.io/"], "1898": [], "1904": [], "1907": [], - "1908": [ - "https://faucet.bitcichain.com" - ], + "1908": ["https://faucet.bitcichain.com"], "1909": [], "1911": [], - "1912": [ - "https://claim-faucet.rubychain.io/" - ], + "1912": ["https://claim-faucet.rubychain.io/"], "1918": [], "1945": [], "1951": [], @@ -28505,12 +25010,8 @@ export const NETWORK_FAUCETS = { "1954": [], "1956": [], "1961": [], - "1967": [ - "https://faucet.metatime.com/eleanor" - ], - "1969": [ - "https://testnet.scschain.com" - ], + "1967": ["https://faucet.metatime.com/eleanor"], + "1969": ["https://testnet.scschain.com"], "1970": [], "1971": [], "1972": [], @@ -28521,14 +25022,10 @@ export const NETWORK_FAUCETS = { "1987": [], "1992": [], "1994": [], - "1995": [ - "https://faucet.edexa.com/" - ], + "1995": ["https://faucet.edexa.com/"], "1996": [], "1997": [], - "1998": [ - "https://faucet.kyotoprotocol.io" - ], + "1998": ["https://faucet.kyotoprotocol.io"], "2000": [], "2001": [], "2002": [], @@ -28538,17 +25035,13 @@ export const NETWORK_FAUCETS = { "2013": [], "2014": [], "2016": [], - "2017": [ - "https://telcoin.network/faucet" - ], + "2017": ["https://telcoin.network/faucet"], "2018": [], "2019": [], "2020": [], "2021": [], "2022": [], - "2023": [ - "https://ttaycan-faucet.hupayx.io/" - ], + "2023": ["https://ttaycan-faucet.hupayx.io/"], "2024": [], "2025": [], "2026": [], @@ -28583,59 +25076,35 @@ export const NETWORK_FAUCETS = { "2152": [], "2153": [], "2154": [], - "2199": [ - "https://multiverse.moonsama.com/faucet" - ], - "2202": [ - "https://faucet.antofy.io" - ], + "2199": ["https://multiverse.moonsama.com/faucet"], + "2202": ["https://faucet.antofy.io"], "2203": [], "2213": [], - "2221": [ - "https://faucet.kava.io" - ], + "2221": ["https://faucet.kava.io"], "2222": [], "2223": [], "2241": [], "2300": [], "2306": [], "2309": [], - "2323": [ - "https://faucet.somanetwork.io" - ], + "2323": ["https://faucet.somanetwork.io"], "2330": [], "2331": [], - "2332": [ - "https://airdrop.somanetwork.io" - ], - "2340": [ - "https://app-olympia.atleta.network/faucet" - ], - "2342": [ - "https://www.omniaverse.io" - ], + "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/" - ], + "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" - ], + "2410": [], + "2415": [], + "2425": [], + "2442": [], + "2458": ["https://faucet-testnet.hybridchain.ai"], + "2468": ["https://faucet-testnet.hybridchain.ai"], + "2484": ["https://faucet.uniultra.xyz"], "2522": [], "2525": [], "2559": [], @@ -28643,12 +25112,8 @@ export const NETWORK_FAUCETS = { "2606": [], "2611": [], "2612": [], - "2613": [ - "https://testnet-faucet.ezchain.com" - ], - "2625": [ - "https://testnet.whitechain.io/faucet" - ], + "2613": ["https://testnet-faucet.ezchain.com"], + "2625": ["https://testnet.whitechain.io/faucet"], "2648": [], "2649": [], "2662": [], @@ -28661,16 +25126,10 @@ export const NETWORK_FAUCETS = { "2810": [], "2907": [], "2911": [], - "2941": [ - "https://xfaucet.xenonchain.com" - ], + "2941": ["https://xfaucet.xenonchain.com"], "2999": [], - "3000": [ - "https://app-faucet.centrality.me" - ], - "3001": [ - "https://app-faucet.centrality.me" - ], + "3000": ["https://app-faucet.centrality.me"], + "3001": ["https://app-faucet.centrality.me"], "3003": [], "3011": [], "3031": [], @@ -28682,134 +25141,78 @@ export const NETWORK_FAUCETS = { "3109": [], "3110": [], "3269": [], - "3270": [ - "https://faucet.arabianchain.org/" - ], + "3270": ["https://faucet.arabianchain.org/"], "3306": [], - "3331": [ - "https://faucet.zcore.cash" - ], + "3331": ["https://faucet.zcore.cash"], "3333": [], "3334": [], "3335": [], "3400": [], "3424": [], - "3434": [ - "https://faucet.securechain.ai" - ], - "3456": [ - "https://testnet-faucet.layeredge.io" - ], + "3434": ["https://faucet.securechain.ai"], + "3456": ["https://testnet-faucet.layeredge.io"], "3490": [], - "3500": [ - "https://faucet.paribuscan.com" - ], + "3500": ["https://faucet.paribuscan.com"], "3501": [], "3601": [], "3602": [], "3630": [], - "3636": [ - "https://faucet.botanixlabs.dev" - ], - "3637": [ - "https://faucet.btxtestchain.com" - ], + "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" - ], + "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" - ], + "3799": ["https://faucet.tangle.tools"], + "3885": ["zkevm-faucet.thefirechain.com"], "3888": [], "3889": [], - "3912": [ - "https://www.dracscan.io/faucet" - ], + "3912": ["https://www.dracscan.io/faucet"], "3939": [], - "3966": [ - "https://faucet.dynoscan.io" - ], - "3967": [ - "https://faucet.dynoscan.io" - ], - "3993": [ - "https://sepoliafaucet.com/" - ], + "3966": ["https://faucet.dynoscan.io"], + "3967": ["https://faucet.dynoscan.io"], + "3993": ["https://sepoliafaucet.com/"], "3999": [], "4000": [], "4001": [], - "4002": [ - "https://faucet.fantom.network" - ], + "4002": ["https://faucet.fantom.network"], "4003": [], - "4040": [ - "https://getfaucet.carbonium.network" - ], + "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" - ], + "4090": ["https://faucet.oasis.fastexchain.com"], + "4096": ["https://faucet.bitindi.org"], + "4099": ["https://faucet.bitindi.org"], "4102": [], "4139": [], - "4141": [ - "https://faucet.tipboxcoin.net" - ], + "4141": ["https://faucet.tipboxcoin.net"], "4157": [], "4181": [], "4200": [], - "4201": [ - "https://faucet.testnet.lukso.network" - ], - "4202": [ - "https://app.optimism.io/faucet" - ], + "4201": ["https://faucet.testnet.lukso.network"], + "4202": ["https://app.optimism.io/faucet"], "4242": [], "4243": [], - "4337": [ - "https://faucet.onbeam.com" - ], + "4337": ["https://faucet.onbeam.com"], "4400": [], - "4444": [ - "https://gruvin.me/htmlcoin" - ], + "4444": ["https://gruvin.me/htmlcoin"], "4460": [], "4488": [], - "4544": [ - "https://faucet.emoney.network/faucet" - ], + "4544": ["https://faucet.emoney.network/faucet"], "4613": [], "4653": [], "4689": [], - "4690": [ - "https://faucet.iotex.io/" - ], + "4690": ["https://faucet.iotex.io/"], "4759": [], "4777": [], "4893": [], @@ -28817,13 +25220,9 @@ export const NETWORK_FAUCETS = { "4919": [], "4999": [], "5000": [], - "5001": [ - "https://faucet.testnet.mantle.xyz" - ], + "5001": ["https://faucet.testnet.mantle.xyz"], "5002": [], - "5003": [ - "https://faucet.sepolia.mantle.xyz" - ], + "5003": ["https://faucet.sepolia.mantle.xyz"], "5005": [], "5039": [], "5040": [], @@ -28844,87 +25243,53 @@ export const NETWORK_FAUCETS = { "5315": [], "5317": [], "5321": [], - "5353": [ - "https://faucet.tritanium.network" - ], - "5372": [ - "https://faucet.settlus.io" - ], + "5353": ["https://faucet.tritanium.network"], + "5372": ["https://faucet.settlus.io"], "5424": [], "5439": [], - "5522": [ - "https://t.me/vexfaucetbot" - ], + "5522": ["https://t.me/vexfaucetbot"], "5551": [], "5555": [], - "5611": [ - "https://testnet.bnbchain.org/faucet-smart" - ], - "5615": [ - "https://faucet.arcturuschain.io" - ], + "5611": ["https://testnet.bnbchain.org/faucet-smart"], + "5615": ["https://faucet.arcturuschain.io"], "5616": [], "5656": [], "5675": [], "5678": [], - "5700": [ - "https://faucet.tanenbaum.io" - ], + "5700": ["https://faucet.tanenbaum.io"], "5729": [], - "5758": [ - "https://faucet.satoshichain.io" - ], + "5758": ["https://faucet.satoshichain.io"], "5777": [], "5845": [], - "5851": [ - "https://developer.ont.io/" - ], + "5851": ["https://developer.ont.io/"], "5869": [], "6000": [], "6001": [], - "6065": [ - "http://faucet.tresleches.finance:8080" - ], + "6065": ["http://faucet.tresleches.finance:8080"], "6066": [], - "6102": [ - "https://www.cascadia.foundation/faucet" - ], + "6102": ["https://www.cascadia.foundation/faucet"], "6118": [], "6119": [], - "6321": [ - "https://aura.faucetme.pro" - ], + "6321": ["https://aura.faucetme.pro"], "6322": [], "6363": [], "6502": [], - "6552": [ - "https://faucet.scolcoin.com" - ], - "6565": [ - "https://faucet.foxchain.app" - ], + "6552": ["https://faucet.scolcoin.com"], + "6565": ["https://faucet.foxchain.app"], "6626": [], - "6660": [ - "http://faucet.latestchain.io" - ], + "6660": ["http://faucet.latestchain.io"], "6661": [], - "6666": [ - "https://faucet.cybascan.io" - ], + "6666": ["https://faucet.cybascan.io"], "6688": [], "6699": [], "6701": [], "6779": [], - "6789": [ - "https://faucet.goldsmartchain.com" - ], + "6789": ["https://faucet.goldsmartchain.com"], "6868": [], "6969": [], "6999": [], "7000": [], - "7001": [ - "https://labs.zetachain.com/get-zeta" - ], + "7001": ["https://labs.zetachain.com/get-zeta"], "7007": [], "7027": [], "7070": [], @@ -28939,75 +25304,47 @@ export const NETWORK_FAUCETS = { "7484": [], "7518": [], "7560": [], - "7575": [ - "https://testnet-faucet.adil-scan.io" - ], + "7575": ["https://testnet-faucet.adil-scan.io"], "7576": [], "7668": [], "7672": [], "7700": [], "7701": [], - "7771": [ - "https://faucet.bit-rock.io" - ], + "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" - ], + "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/" - ], + "7895": ["https://faucet-athena.ardescan.com/"], "7923": [], - "7924": [ - "https://faucet.mochain.app/" - ], + "7924": ["https://faucet.mochain.app/"], "7979": [], "8000": [], - "8001": [ - "https://chain-docs.teleport.network/testnet/faucet.html" - ], + "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/" - ], + "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" - ], + "8131": ["https://faucet.qitmeer.io"], "8132": [], "8133": [], "8134": [], "8135": [], "8136": [], - "8181": [ - "https://testnet.beonescan.com/faucet" - ], + "8181": ["https://testnet.beonescan.com/faucet"], "8192": [], "8194": [], "8217": [], "8227": [], - "8272": [ - "https://faucet.blocktonscan.com/" - ], + "8272": ["https://faucet.blocktonscan.com/"], "8285": [], "8329": [], "8387": [], @@ -29016,99 +25353,59 @@ export const NETWORK_FAUCETS = { "8655": [], "8668": [], "8723": [], - "8724": [ - "https://testnet-explorer.wolot.io" - ], + "8724": ["https://testnet-explorer.wolot.io"], "8726": [], "8727": [], "8738": [], - "8768": [ - "https://faucet.tmychain.org/" - ], + "8768": ["https://faucet.tmychain.org/"], "8822": [], - "8844": [ - "https://app.testnet.hydrachain.org/faucet" - ], + "8844": ["https://app.testnet.hydrachain.org/faucet"], "8848": [], "8866": [], "8880": [], "8881": [], - "8882": [ - "https://t.me/unique2faucet_opal_bot" - ], + "8882": ["https://t.me/unique2faucet_opal_bot"], "8883": [], "8888": [], "8889": [], - "8890": [ - "https://faucetcoin.orenium.org" - ], - "8898": [ - "https://faucet.mmtscan.io/" - ], + "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" - ], + "8995": ["https://faucet.bloxberg.org/"], + "9000": ["https://faucet.evmos.dev"], "9001": [], - "9007": [ - "https://testnet.shidoscan.com/faucet" - ], + "9007": ["https://testnet.shidoscan.com/faucet"], "9008": [], - "9012": [ - "https://t.me/BerylBit" - ], - "9024": [ - "https://testnet.nexablockscan.io/faucet" - ], + "9012": ["https://t.me/BerylBit"], + "9024": ["https://testnet.nexablockscan.io/faucet"], "9025": [], "9100": [], "9223": [], - "9339": [ - "https://faucet.dogcoin.network" - ], + "9339": ["https://faucet.dogcoin.network"], "9393": [], "9395": [], - "9527": [ - "https://robin-faucet.rangersprotocol.com" - ], - "9528": [ - "http://faucet.qeasyweb3.com" - ], - "9559": [ - "https://faucet.neonlink.io/" - ], + "9527": ["https://robin-faucet.rangersprotocol.com"], + "9528": ["http://faucet.qeasyweb3.com"], + "9559": ["https://faucet.neonlink.io/"], "9700": [], "9728": [], - "9768": [ - "https://faucet.mainnetz.io" - ], + "9768": ["https://faucet.mainnetz.io"], "9779": [], - "9789": [ - "https://faucet.testnet.tabichain.com" - ], + "9789": ["https://faucet.testnet.tabichain.com"], "9790": [], "9792": [], "9797": [], - "9818": [ - "https://faucet.imperiumchain.com/" - ], - "9819": [ - "https://faucet.imperiumchain.com/" - ], + "9818": ["https://faucet.imperiumchain.com/"], + "9819": ["https://faucet.imperiumchain.com/"], "9888": [], "9898": [], "9911": [], - "9977": [ - "https://faucet.mindchain.info/" - ], + "9977": ["https://faucet.mindchain.info/"], "9980": [], "9981": [], "9990": [], @@ -29122,42 +25419,25 @@ export const NETWORK_FAUCETS = { "10081": [], "10086": [], "10101": [], - "10200": [ - "https://gnosisfaucet.com" - ], - "10201": [ - "https://faucet.maxxchain.org" - ], + "10200": ["https://gnosisfaucet.com"], + "10201": ["https://faucet.maxxchain.org"], "10222": [], "10242": [], - "10243": [ - "https://faucet.arthera.net" - ], + "10243": ["https://faucet.arthera.net"], "10248": [], "10321": [], - "10324": [ - "https://faucet.taoevm.io" - ], + "10324": ["https://faucet.taoevm.io"], "10395": [], "10507": [], - "10508": [ - "https://faucet.avax.network/?subnet=num", - "https://faucet.num.network" - ], + "10508": ["https://faucet.avax.network/?subnet=num", "https://faucet.num.network"], "10823": [], "10849": [], "10850": [], "10946": [], - "10947": [ - "https://faucetpage.quadrans.io" - ], + "10947": ["https://faucetpage.quadrans.io"], "11110": [], - "11111": [ - "https://faucet.avax.network/?subnet=wagmi" - ], - "11115": [ - "https://faucet.astranaut.dev" - ], + "11111": ["https://faucet.avax.network/?subnet=wagmi"], + "11115": ["https://faucet.astranaut.dev"], "11119": [], "11221": [], "11227": [], @@ -29165,35 +25445,19 @@ export const NETWORK_FAUCETS = { "11437": [], "11501": [], "11503": [], - "11612": [ - "https://faucet.sardisnetwork.com" - ], + "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" - ], + "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" - ], + "12345": ["https://faucet.step.network"], "12553": [], "12715": [], "12781": [], @@ -29201,66 +25465,36 @@ export const NETWORK_FAUCETS = { "12898": [], "13000": [], "13308": [], - "13337": [ - "https://faucet.avax.network/?subnet=beam", - "https://faucet.onbeam.com" - ], - "13371": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" - ], + "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" - ], + "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" - ], + "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/" - ], + "15555": ["https://faucet.testnet-dev.trust.one/"], "15557": [], "16000": [], - "16001": [ - "https://faucet.metadot.network/" - ], + "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" - ], + "16888": ["https://tfaucet.ivarex.com/"], + "17000": ["https://faucet.holesky.ethpandaops.io", "https://holesky-faucet.pk910.de"], "17069": [], "17117": [], - "17171": [ - "https://faucet.oneg8.network" - ], + "17171": ["https://faucet.oneg8.network"], "17172": [], "17180": [], "17217": [], @@ -29268,9 +25502,7 @@ export const NETWORK_FAUCETS = { "18000": [], "18122": [], "18159": [], - "18181": [ - "https://faucet.oneg8.network" - ], + "18181": ["https://faucet.oneg8.network"], "18233": [], "18686": [], "18888": [], @@ -29283,37 +25515,23 @@ export const NETWORK_FAUCETS = { "20001": [], "20041": [], "20073": [], - "20729": [ - "https://faucet.callisto.network/" - ], + "20729": ["https://faucet.callisto.network/"], "20736": [], "20765": [], - "21004": [ - "https://play.google.com/store/apps/details?id=net.c4ei.fps2" - ], - "21133": [ - "https://t.me/c4eiAirdrop" - ], + "21004": ["https://play.google.com/store/apps/details?id=net.c4ei.fps2"], + "21133": ["https://t.me/c4eiAirdrop"], "21223": [], - "21224": [ - "https://faucet.dcpay.io" - ], + "21224": ["https://faucet.dcpay.io"], "21337": [], "21816": [], "21912": [], "22023": [], "22040": [], "22222": [], - "22324": [ - "https://faucet.goldxchain.io" - ], + "22324": ["https://faucet.goldxchain.io"], "22776": [], - "23006": [ - "https://faucet.antofy.io" - ], - "23118": [ - "https://faucet.opside.network" - ], + "23006": ["https://faucet.antofy.io"], + "23118": ["https://faucet.opside.network"], "23294": [], "23295": [], "23451": [], @@ -29322,37 +25540,23 @@ export const NETWORK_FAUCETS = { "24484": [], "24734": [], "25186": [], - "25839": [ - "https://faucet.alveytestnet.com" - ], + "25839": ["https://faucet.alveytestnet.com"], "25888": [], - "25925": [ - "https://faucet.bitkubchain.com" - ], - "26026": [ - "https://testnet.faucet.ferrumnetwork.io" - ], + "25925": ["https://faucet.bitkubchain.com"], + "26026": ["https://testnet.faucet.ferrumnetwork.io"], "26600": [], - "26863": [ - "http://faucet.oasischain.io" - ], + "26863": ["http://faucet.oasischain.io"], "27181": [], "27483": [], "27827": [], "28516": [], "28518": [], "28528": [], - "28882": [ - "https://www.l2faucet.com/boba" - ], + "28882": ["https://www.l2faucet.com/boba"], "29112": [], - "29536": [ - "https://faucet.kaichain.net" - ], - "29548": [], - "30067": [ - "https://piecenetwork.com/faucet" - ], + "29536": ["https://faucet.kaichain.net"], + "29548": [], + "30067": ["https://piecenetwork.com/faucet"], "30088": [], "30103": [], "30730": [], @@ -29360,47 +25564,31 @@ export const NETWORK_FAUCETS = { "30732": [], "31102": [], "31223": [], - "31224": [ - "https://faucet.cloudtx.finance" - ], + "31224": ["https://faucet.cloudtx.finance"], "31337": [], - "31414": [ - "https://faucet.evokescan.org" - ], + "31414": ["https://faucet.evokescan.org"], "31753": [], - "31754": [ - "https://xchainfaucet.net" - ], + "31754": ["https://xchainfaucet.net"], "32001": [], "32382": [], "32520": [], "32659": [], "32769": [], - "32990": [ - "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" - ], + "32990": ["https://dev-wallet.zilliqa.com/faucet?network=isolated_server"], "33033": [], - "33101": [ - "https://dev-wallet.zilliqa.com/faucet?network=testnet" - ], + "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" - ], + "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" - ], + "38401": ["https://robin-faucet.rangersprotocol.com"], "39656": [], "39797": [], "39815": [], @@ -29410,35 +25598,24 @@ export const NETWORK_FAUCETS = { "42161": [], "42170": [], "42220": [], - "42261": [ - "https://faucet.testnet.oasis.io/" - ], + "42261": ["https://faucet.testnet.oasis.io/"], "42262": [], "42355": [], "42766": [], "42793": [], "42801": [], "42888": [], - "43110": [ - "http://athfaucet.ava.network//?address=${ADDRESS}" - ], + "43110": ["http://athfaucet.ava.network//?address=${ADDRESS}"], "43111": [], - "43113": [ - "https://faucet.avax-test.network/" - ], + "43113": ["https://faucet.avax-test.network/"], "43114": [], "43851": [], "44444": [], "44445": [], - "44787": [ - "https://celo.org/developers/faucet", - "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" - ], + "44787": ["https://celo.org/developers/faucet", "https://cauldron.pretoriaresearchlab.io/alfajores-faucet"], "45000": [], "45454": [], - "45510": [ - "https://faucet.deelance.com" - ], + "45510": ["https://faucet.deelance.com"], "46688": [], "47805": [], "48795": [], @@ -29452,146 +25629,88 @@ export const NETWORK_FAUCETS = { "50006": [], "50021": [], "51178": [], - "51712": [ - "https://faucet.sardisnetwork.com" - ], + "51712": ["https://faucet.sardisnetwork.com"], "52014": [], "53277": [], - "53302": [ - "https://sepoliafaucet.com" - ], + "53302": ["https://sepoliafaucet.com"], "53457": [], "53935": [], - "54211": [ - "https://testedge2.haqq.network" - ], + "54211": ["https://testedge2.haqq.network"], "54321": [], - "54555": [ - "https://photonchain.io/airdrop" - ], + "54555": ["https://photonchain.io/airdrop"], "55004": [], - "55555": [ - "http://kururu.finance/faucet?chainId=55555" - ], - "55556": [ - "http://kururu.finance/faucet?chainId=55556" - ], + "55555": ["http://kururu.finance/faucet?chainId=55555"], + "55556": ["http://kururu.finance/faucet?chainId=55556"], "56026": [], "56288": [], "56400": [], - "56789": [ - "https://nova-faucet.velo.org" - ], + "56789": ["https://nova-faucet.velo.org"], "56797": [], - "57000": [ - "https://rollux.id/faucetapp" - ], + "57000": ["https://rollux.id/faucetapp"], "57451": [], "58008": [], - "59140": [ - "https://faucetlink.to/goerli" - ], + "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" - ], + "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/" - ], + "61803": ["http://faucet.etica-stats.org/"], "61916": [], "62049": [], "62050": [], - "62298": [ - "https://citrea.xyz/bridge" - ], + "62298": ["https://citrea.xyz/bridge"], "62320": [ "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", - "https://cauldron.pretoriaresearchlab.io/baklava-faucet" + "https://cauldron.pretoriaresearchlab.io/baklava-faucet", ], "62621": [], - "62831": [ - "https://faucet.avax.network/?subnet=plyr" - ], + "62831": ["https://faucet.avax.network/?subnet=plyr"], "63000": [], - "63001": [ - "https://faucet.tst.ecredits.com" - ], + "63001": ["https://faucet.tst.ecredits.com"], "65450": [], "66988": [], "67588": [], "68770": [], - "69420": [ - "https://faucet.condrieu.ethdevops.io" - ], + "69420": ["https://faucet.condrieu.ethdevops.io"], "70000": [], "70001": [], "70002": [], "70103": [], "70700": [], "71111": [], - "71393": [ - "https://faucet.nervos.org/" - ], - "71401": [ - "https://testnet.bridge.godwoken.io" - ], + "71393": ["https://faucet.nervos.org/"], + "71401": ["https://testnet.bridge.godwoken.io"], "71402": [], "72778": [], "72992": [], "73114": [], "73115": [], - "73799": [ - "https://voltafaucet.energyweb.org" - ], + "73799": ["https://voltafaucet.energyweb.org"], "73927": [], "75000": [], "75512": [], "75513": [], "77001": [], - "77238": [ - "https://faucet.foundryscan.org" - ], - "77612": [ - "https://faucet.vention.network" - ], + "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" - ], + "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": [], @@ -29607,58 +25726,34 @@ export const NETWORK_FAUCETS = { "81720": [], "82459": [], "83872": [], - "84531": [ - "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" - ], + "84531": ["https://www.coinbase.com/faucets/base-ethereum-goerli-faucet"], "84532": [], "84886": [], "85449": [], - "88002": [ - "https://proteusfaucet.nautchain.xyz" - ], + "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" - ], + "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" - ], + "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" - ], + "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" + "https://mantis.block-spirit.ch/faucet", ], "97531": [], - "97970": [ - "https://faucet.optimusz7.com" - ], + "97970": ["https://faucet.optimusz7.com"], "98881": [], - "99099": [ - "https://faucet.eliberty.ngo" - ], + "99099": ["https://faucet.eliberty.ngo"], "99998": [], "99999": [], "100000": [], @@ -29671,9 +25766,7 @@ export const NETWORK_FAUCETS = { "100007": [], "100008": [], "100009": [], - "100010": [ - "https://faucet.vecha.in" - ], + "100010": ["https://faucet.vecha.in"], "100011": [], "101010": [], "102031": [], @@ -29698,16 +25791,10 @@ export const NETWORK_FAUCETS = { "112358": [], "119139": [], "123456": [], - "128123": [ - "https://faucet.etherlink.com" - ], - "131313": [ - "https://faucet.dioneprotocol.com/" - ], + "128123": ["https://faucet.etherlink.com"], + "131313": ["https://faucet.dioneprotocol.com/"], "131419": [], - "132902": [ - "https://info.form.network/faucet" - ], + "132902": ["https://info.form.network/faucet"], "141319": [], "142857": [], "161212": [], @@ -29716,147 +25803,95 @@ export const NETWORK_FAUCETS = { "167008": [], "167009": [], "188710": [], - "188881": [ - "https://faucet.condor.systems" - ], + "188881": ["https://faucet.condor.systems"], "192940": [], "200000": [], "200101": [], "200202": [], "200625": [], - "200810": [ - "https://www.bitlayer.org/faucet" - ], + "200810": ["https://www.bitlayer.org/faucet"], "200901": [], "201018": [], - "201030": [ - "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" - ], + "201030": ["https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c"], "201804": [], "202020": [], "202212": [], "202401": [], "202624": [], "204005": [], - "205205": [ - "https://auroria.faucet.stratisevm.com" - ], + "205205": ["https://auroria.faucet.stratisevm.com"], "210049": [], "210425": [], "220315": [], "221230": [], - "221231": [ - "http://faucet.reapchain.com" - ], + "221231": ["http://faucet.reapchain.com"], "222222": [], "222555": [], - "222666": [ - "https://faucet.deeplnetwork.org" - ], + "222666": ["https://faucet.deeplnetwork.org"], "224168": [], "224422": [], "224433": [], - "230315": [ - "https://testnet.hashkeychain/faucet" - ], + "230315": ["https://testnet.hashkeychain/faucet"], "234666": [], "240515": [], "246529": [], "246785": [], "247253": [], "256256": [], - "262371": [ - "https://faucet.eclatscan.com" - ], + "262371": ["https://faucet.eclatscan.com"], "266256": [], - "271271": [ - "https://faucet.egonscan.com" - ], + "271271": ["https://faucet.egonscan.com"], "281121": [], "282828": [], "309075": [], "313313": [], - "314159": [ - "https://faucet.calibration.fildev.network/" - ], + "314159": ["https://faucet.calibration.fildev.network/"], "322202": [], - "323213": [ - "https://faucet.bloomgenesis.com" - ], - "330844": [ - "https://faucet.tscscan.com" - ], + "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" - ], + "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" - ], + "355113": ["https://bitfinity.network/faucet"], "360890": [], "363636": [], "373737": [], "381931": [], "381932": [], - "404040": [ - "https://faucet.tipboxcoin.net" - ], + "404040": ["https://faucet.tipboxcoin.net"], "413413": [], "420420": [], "420666": [], "420692": [], - "421611": [ - "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" - ], + "421611": ["http://fauceth.komputing.org?chain=421611&address=${ADDRESS}"], "421613": [], "421614": [], "424242": [], "431140": [], - "432201": [ - "https://faucet.avax.network/?subnet=dexalot" - ], + "432201": ["https://faucet.avax.network/?subnet=dexalot"], "432204": [], "444444": [], - "444900": [ - "https://faucet.weelink.gw002.oneitfarm.com" - ], + "444900": ["https://faucet.weelink.gw002.oneitfarm.com"], "471100": [], "473861": [], "474142": [], "504441": [], - "512512": [ - "https://dev.caduceus.foundation/testNetwork" - ], + "512512": ["https://dev.caduceus.foundation/testNetwork"], "513100": [], "526916": [], "534351": [], "534352": [], - "534849": [ - "https://faucet.shinarium.org" - ], + "534849": ["https://faucet.shinarium.org"], "535037": [], - "552981": [ - "https://faucet.oneworldchain.org" - ], - "555555": [ - "https://bridge-testnet.pentagon.games" - ], + "552981": ["https://faucet.oneworldchain.org"], + "555555": ["https://bridge-testnet.pentagon.games"], "555666": [], "622277": [], "622463": [], @@ -29864,28 +25899,15 @@ export const NETWORK_FAUCETS = { "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" - ], + "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" - ], + "713715": ["https://sei-faucet.nima.enterprises", "https://sei-evm.faucetme.pro"], "721529": [], "743111": [], - "751230": [ - "https://faucet.bearnetwork.net" - ], + "751230": ["https://faucet.bearnetwork.net"], "761412": [], "764984": [], "767368": [], @@ -29897,74 +25919,44 @@ export const NETWORK_FAUCETS = { "810182": [], "820522": [], "827431": [], - "839320": [ - "https://faucet.prmscan.org" - ], + "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" - ], + "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" - ], + "978657": ["https://portal.treasure.lol/faucet"], "984122": [], "984123": [], "988207": [], - "998899": [ - "https://faucet.chaingames.io" - ], + "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" - ], + "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" - ], + "2206132": ["https://devnet2faucet.platon.network/faucet"], "2611555": [], "3132023": [], - "3141592": [ - "https://faucet.butterfly.fildev.network" - ], + "3141592": ["https://faucet.butterfly.fildev.network"], "3397901": [], "3441005": [], "3441006": [], @@ -29974,9 +25966,7 @@ export const NETWORK_FAUCETS = { "5167003": [], "5167004": [], "5201420": [], - "5318008": [ - "https://dev.reactive.network/docs/kopli-testnet#faucet" - ], + "5318008": ["https://dev.reactive.network/docs/kopli-testnet#faucet"], "5555555": [], "5555558": [], "6038361": [], @@ -29984,38 +25974,24 @@ export const NETWORK_FAUCETS = { "6666666": [], "7225878": [], "7355310": [], - "7668378": [ - "https://faucet.qom.one" - ], + "7668378": ["https://faucet.qom.one"], "7762959": [], "7777777": [], "8007736": [], - "8008135": [ - "https://get-helium.fhenix.zone" - ], + "8008135": ["https://get-helium.fhenix.zone"], "8080808": [], - "8601152": [ - "https://faucet.testnet8.waterfall.network" - ], + "8601152": ["https://faucet.testnet8.waterfall.network"], "8794598": [], "8888881": [], "8888888": [], "9322252": [], "9322253": [], "10067275": [], - "10101010": [ - "https://faucet.soverun.com" - ], + "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" - ], + "11155111": ["http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}"], + "11155420": ["https://app.optimism.io/faucet"], + "13068200": ["https://faucet.coti.io"], "13371337": [], "14288640": [], "16658437": [], @@ -30029,52 +26005,34 @@ export const NETWORK_FAUCETS = { "20241133": [], "20482050": [], "22052002": [], - "27082017": [ - "https://faucet.exlscan.com" - ], + "27082017": ["https://faucet.exlscan.com"], "27082022": [], "28122024": [], "28945486": [], "29032022": [], "31415926": [], "35855456": [], - "37084624": [ - "https://www.sfuelstation.com/" - ], + "37084624": ["https://www.sfuelstation.com/"], "39916801": [], "43214913": [], - "61717561": [ - "https://aquacha.in/faucet" - ], - "65010002": [ - "https://faucet.autonity.org/" - ], + "61717561": ["https://aquacha.in/faucet"], + "65010002": ["https://faucet.autonity.org/"], "65100002": [], - "68840142": [ - "https://faucet.triangleplatform.com/frame/testnet" - ], + "68840142": ["https://faucet.triangleplatform.com/frame/testnet"], "77787778": [], "88888888": [], "94204209": [], - "99415706": [ - "https://faucet.joys.digital/" - ], + "99415706": ["https://faucet.joys.digital/"], "108160679": [], "111557560": [], "123420111": [], "161221135": [], - "168587773": [ - "https://faucet.quicknode.com/blast/sepolia" - ], + "168587773": ["https://faucet.quicknode.com/blast/sepolia"], "192837465": [], "222000222": [], - "245022926": [ - "https://neonfaucet.org" - ], + "245022926": ["https://neonfaucet.org"], "245022934": [], - "278611351": [ - "https://faucet.razorscan.io/" - ], + "278611351": ["https://faucet.razorscan.io/"], "311752642": [], "328527624": [], "333000333": [], @@ -30082,64 +26040,37 @@ export const NETWORK_FAUCETS = { "486217935": [], "666666666": [], "888888888": [], - "889910245": [ - "https://faucet.ptcscan.io/" - ], + "889910245": ["https://faucet.ptcscan.io/"], "889910246": [], - "974399131": [ - "https://www.sfuelstation.com/" - ], + "974399131": ["https://www.sfuelstation.com/"], "999999999": [], - "1020352220": [ - "https://www.sfuelstation.com/" - ], + "1020352220": ["https://www.sfuelstation.com/"], "1122334455": [], "1146703430": [], - "1273227453": [ - "https://dashboard.humanprotocol.org/faucet" - ], + "1273227453": ["https://dashboard.humanprotocol.org/faucet"], "1313161554": [], "1313161555": [], "1313161556": [], "1313161560": [], - "1350216234": [ - "https://sfuel.skale.network/" - ], - "1351057110": [ - "https://sfuel.skale.network/staging/chaos" - ], + "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" - ], + "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" - ], + "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/" - ], + "2046399126": ["https://ruby.exchange/faucet.html", "https://sfuel.mylilius.com/"], "3125659152": [], - "4216137055": [ - "https://frankenstein-faucet.oneledger.network" - ], + "4216137055": ["https://frankenstein-faucet.oneledger.network"], "11297108109": [], "11297108099": [], "28872323069": [], @@ -30150,11 +26081,9 @@ export const NETWORK_FAUCETS = { "197710212030": [], "197710212031": [], "202402181627": [], - "383414847825": [ - "https://faucet.zeniq.net/" - ], + "383414847825": ["https://faucet.zeniq.net/"], "666301171999": [], "6022140761023": [], "2713017997578000": [], - "2716446429837000": [] + "2716446429837000": [], }; diff --git a/yarn.lock b/yarn.lock index 97ef0b0..fe3e1fc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -959,7 +959,7 @@ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.8.4": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.7.tgz#f4f0d5530e8dbdf59b3451b9b3e594b6ba082e12" integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw== @@ -3021,7 +3021,7 @@ chalk@^2.4.1, chalk@^2.4.2: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: +chalk@^4.0.0, chalk@^4.1.0: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -3178,21 +3178,6 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -concurrently@^8.2.2: - version "8.2.2" - resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-8.2.2.tgz#353141985c198cfa5e4a3ef90082c336b5851784" - integrity sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg== - dependencies: - chalk "^4.1.2" - date-fns "^2.30.0" - lodash "^4.17.21" - rxjs "^7.8.1" - shell-quote "^1.8.1" - spawn-command "0.0.2" - supports-color "^8.1.1" - tree-kill "^1.2.2" - yargs "^17.7.2" - conventional-changelog-angular@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz#5eec8edbff15aa9b1680a8dcfbd53e2d7eb2ba7a" @@ -3439,13 +3424,6 @@ data-view-byte-offset@^1.0.0: es-errors "^1.3.0" is-data-view "^1.0.1" -date-fns@^2.30.0: - version "2.30.0" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" - integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== - dependencies: - "@babel/runtime" "^7.21.0" - debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@~4.3.4: version "4.3.5" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" @@ -5355,7 +5333,7 @@ lodash.upperfirst@^4.3.1: resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" integrity sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== -lodash@^4.17.15, lodash@^4.17.21: +lodash@^4.17.15: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -6127,13 +6105,6 @@ run-parallel@^1.1.9, run-parallel@^1.2.0: dependencies: queue-microtask "^1.2.2" -rxjs@^7.8.1: - version "7.8.1" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" - integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== - dependencies: - tslib "^2.1.0" - safe-array-concat@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" @@ -6231,7 +6202,7 @@ shell-quote-word@^1.0.1: resolved "https://registry.yarnpkg.com/shell-quote-word/-/shell-quote-word-1.0.1.tgz#e2bdfd22d599fd68886491677e38f560f9d469c9" integrity sha512-lT297f1WLAdq0A4O+AknIFRP6kkiI3s8C913eJ0XqBxJbZPGWUNkRQk2u8zk4bEAjUJ5i+fSLwB6z1HzeT+DEg== -shell-quote@^1.6.1, shell-quote@^1.8.1: +shell-quote@^1.6.1: version "1.8.1" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== @@ -6300,11 +6271,6 @@ source-map@^0.6.0, source-map@^0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -spawn-command@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2.tgz#9544e1a43ca045f8531aac1a48cb29bdae62338e" - integrity sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ== - spdx-correct@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" @@ -6506,7 +6472,7 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^8.0.0, supports-color@^8.1.1: +supports-color@^8.0.0: version "8.1.1" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== @@ -6593,11 +6559,6 @@ to-space-case@^1.0.0: dependencies: to-no-case "^1.0.0" -tree-kill@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" - integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== - trim-newlines@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" @@ -6650,7 +6611,7 @@ tsconfig-paths@^4.2.0: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@^2.1.0, tslib@^2.6.2: +tslib@^2.6.2: version "2.6.3" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0" integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== @@ -6994,7 +6955,7 @@ yargs-parser@^21.0.1, yargs-parser@^21.1.1: resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs@^17.0.0, yargs@^17.3.1, yargs@^17.7.2: +yargs@^17.0.0, yargs@^17.3.1: version "17.7.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== From f3d43f8f05607a780abf7f75426cdd6659fc53bc Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:46:26 +0100 Subject: [PATCH 12/14] chore: fresh lockfile --- package.json | 2 +- yarn.lock | 17027 +++++++++++++++++++++++++++++-------------------- 2 files changed, 10039 insertions(+), 6990 deletions(-) diff --git a/package.json b/package.json index c0d51b7..8cd56d0 100644 --- a/package.json +++ b/package.json @@ -89,4 +89,4 @@ ] }, "packageManager": "yarn@4.2.2" -} \ No newline at end of file +} diff --git a/yarn.lock b/yarn.lock index fe3e1fc..d438119 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1,6989 +1,10038 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@ampproject/remapping@^2.2.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" - integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== - dependencies: - "@jridgewell/gen-mapping" "^0.3.5" - "@jridgewell/trace-mapping" "^0.3.24" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" - integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== - dependencies: - "@babel/highlight" "^7.24.7" - picocolors "^1.0.0" - -"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.7.tgz#d23bbea508c3883ba8251fb4164982c36ea577ed" - integrity sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw== - -"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9", "@babel/core@^7.24.0": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.7.tgz#b676450141e0b52a3d43bc91da86aa608f950ac4" - integrity sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.24.7" - "@babel/generator" "^7.24.7" - "@babel/helper-compilation-targets" "^7.24.7" - "@babel/helper-module-transforms" "^7.24.7" - "@babel/helpers" "^7.24.7" - "@babel/parser" "^7.24.7" - "@babel/template" "^7.24.7" - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - convert-source-map "^2.0.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.3" - semver "^6.3.1" - -"@babel/generator@^7.24.7", "@babel/generator@^7.7.2": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.7.tgz#1654d01de20ad66b4b4d99c135471bc654c55e6d" - integrity sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA== - dependencies: - "@babel/types" "^7.24.7" - "@jridgewell/gen-mapping" "^0.3.5" - "@jridgewell/trace-mapping" "^0.3.25" - jsesc "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" - integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== - dependencies: - "@babel/types" "^7.24.7" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz#37d66feb012024f2422b762b9b2a7cfe27c7fba3" - integrity sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA== - dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz#4eb6c4a80d6ffeac25ab8cd9a21b5dfa48d503a9" - integrity sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg== - dependencies: - "@babel/compat-data" "^7.24.7" - "@babel/helper-validator-option" "^7.24.7" - browserslist "^4.22.2" - lru-cache "^5.1.1" - semver "^6.3.1" - -"@babel/helper-create-class-features-plugin@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz#2eaed36b3a1c11c53bdf80d53838b293c52f5b3b" - integrity sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-function-name" "^7.24.7" - "@babel/helper-member-expression-to-functions" "^7.24.7" - "@babel/helper-optimise-call-expression" "^7.24.7" - "@babel/helper-replace-supers" "^7.24.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - "@babel/helper-split-export-declaration" "^7.24.7" - semver "^6.3.1" - -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz#be4f435a80dc2b053c76eeb4b7d16dd22cfc89da" - integrity sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - regexpu-core "^5.3.1" - semver "^6.3.1" - -"@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2": - version "0.6.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" - integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== - dependencies: - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-plugin-utils" "^7.22.5" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - -"@babel/helper-environment-visitor@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz#4b31ba9551d1f90781ba83491dd59cf9b269f7d9" - integrity sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ== - dependencies: - "@babel/types" "^7.24.7" - -"@babel/helper-function-name@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz#75f1e1725742f39ac6584ee0b16d94513da38dd2" - integrity sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA== - dependencies: - "@babel/template" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-hoist-variables@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz#b4ede1cde2fd89436397f30dc9376ee06b0f25ee" - integrity sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ== - dependencies: - "@babel/types" "^7.24.7" - -"@babel/helper-member-expression-to-functions@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz#67613d068615a70e4ed5101099affc7a41c5225f" - integrity sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w== - dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-module-imports@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" - integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== - dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-module-transforms@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz#31b6c9a2930679498db65b685b1698bfd6c7daf8" - integrity sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ== - dependencies: - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-module-imports" "^7.24.7" - "@babel/helper-simple-access" "^7.24.7" - "@babel/helper-split-export-declaration" "^7.24.7" - "@babel/helper-validator-identifier" "^7.24.7" - -"@babel/helper-optimise-call-expression@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" - integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== - dependencies: - "@babel/types" "^7.24.7" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz#98c84fe6fe3d0d3ae7bfc3a5e166a46844feb2a0" - integrity sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg== - -"@babel/helper-remap-async-to-generator@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz#b3f0f203628522713849d49403f1a414468be4c7" - integrity sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-wrap-function" "^7.24.7" - -"@babel/helper-replace-supers@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz#f933b7eed81a1c0265740edc91491ce51250f765" - integrity sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg== - dependencies: - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-member-expression-to-functions" "^7.24.7" - "@babel/helper-optimise-call-expression" "^7.24.7" - -"@babel/helper-simple-access@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" - integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== - dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-skip-transparent-expression-wrappers@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" - integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== - dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-split-export-declaration@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz#83949436890e07fa3d6873c61a96e3bbf692d856" - integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA== - dependencies: - "@babel/types" "^7.24.7" - -"@babel/helper-string-parser@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz#4d2d0f14820ede3b9807ea5fc36dfc8cd7da07f2" - integrity sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg== - -"@babel/helper-validator-identifier@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" - integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== - -"@babel/helper-validator-option@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz#24c3bb77c7a425d1742eec8fb433b5a1b38e62f6" - integrity sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw== - -"@babel/helper-wrap-function@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz#52d893af7e42edca7c6d2c6764549826336aae1f" - integrity sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw== - dependencies: - "@babel/helper-function-name" "^7.24.7" - "@babel/template" "^7.24.7" - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helpers@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.7.tgz#aa2ccda29f62185acb5d42fb4a3a1b1082107416" - integrity sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg== - dependencies: - "@babel/template" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/highlight@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" - integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== - dependencies: - "@babel/helper-validator-identifier" "^7.24.7" - chalk "^2.4.2" - js-tokens "^4.0.0" - picocolors "^1.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.7.tgz#9a5226f92f0c5c8ead550b750f5608e766c8ce85" - integrity sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw== - -"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz#fd059fd27b184ea2b4c7e646868a9a381bbc3055" - integrity sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ== - dependencies: - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz#468096ca44bbcbe8fcc570574e12eb1950e18107" - integrity sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz#e4eabdd5109acc399b38d7999b2ef66fc2022f89" - integrity sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - "@babel/plugin-transform-optional-chaining" "^7.24.7" - -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz#71b21bb0286d5810e63a1538aa901c58e87375ec" - integrity sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg== - dependencies: - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": - version "7.21.0-placeholder-for-preset-env.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" - integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-import-assertions@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz#2a0b406b5871a20a841240586b1300ce2088a778" - integrity sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-syntax-import-attributes@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz#b4f9ea95a79e6912480c4b626739f86a076624ca" - integrity sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.24.7", "@babel/plugin-syntax-jsx@^7.7.2": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz#39a1fa4a7e3d3d7f34e2acc6be585b718d30e02d" - integrity sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.24.7", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz#58d458271b4d3b6bb27ee6ac9525acbb259bad1c" - integrity sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" - integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-arrow-functions@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz#4f6886c11e423bd69f3ce51dbf42424a5f275514" - integrity sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-async-generator-functions@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz#7330a5c50e05181ca52351b8fd01642000c96cfd" - integrity sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g== - dependencies: - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-remap-async-to-generator" "^7.24.7" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-transform-async-to-generator@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz#72a3af6c451d575842a7e9b5a02863414355bdcc" - integrity sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA== - dependencies: - "@babel/helper-module-imports" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-remap-async-to-generator" "^7.24.7" - -"@babel/plugin-transform-block-scoped-functions@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz#a4251d98ea0c0f399dafe1a35801eaba455bbf1f" - integrity sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-block-scoping@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz#42063e4deb850c7bd7c55e626bf4e7ab48e6ce02" - integrity sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-class-properties@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz#256879467b57b0b68c7ddfc5b76584f398cd6834" - integrity sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-class-static-block@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz#c82027ebb7010bc33c116d4b5044fbbf8c05484d" - integrity sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-transform-classes@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz#4ae6ef43a12492134138c1e45913f7c46c41b4bf" - integrity sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-compilation-targets" "^7.24.7" - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-function-name" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-replace-supers" "^7.24.7" - "@babel/helper-split-export-declaration" "^7.24.7" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz#4cab3214e80bc71fae3853238d13d097b004c707" - integrity sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/template" "^7.24.7" - -"@babel/plugin-transform-destructuring@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz#a097f25292defb6e6cc16d6333a4cfc1e3c72d9e" - integrity sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-dotall-regex@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz#5f8bf8a680f2116a7207e16288a5f974ad47a7a0" - integrity sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-duplicate-keys@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz#dd20102897c9a2324e5adfffb67ff3610359a8ee" - integrity sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-dynamic-import@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz#4d8b95e3bae2b037673091aa09cd33fecd6419f4" - integrity sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-transform-exponentiation-operator@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz#b629ee22645f412024297d5245bce425c31f9b0d" - integrity sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-export-namespace-from@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz#176d52d8d8ed516aeae7013ee9556d540c53f197" - integrity sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-transform-for-of@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz#f25b33f72df1d8be76399e1b8f3f9d366eb5bc70" - integrity sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - -"@babel/plugin-transform-function-name@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz#6d8601fbffe665c894440ab4470bc721dd9131d6" - integrity sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w== - dependencies: - "@babel/helper-compilation-targets" "^7.24.7" - "@babel/helper-function-name" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-json-strings@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz#f3e9c37c0a373fee86e36880d45b3664cedaf73a" - integrity sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-transform-literals@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz#36b505c1e655151a9d7607799a9988fc5467d06c" - integrity sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-logical-assignment-operators@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz#a58fb6eda16c9dc8f9ff1c7b1ba6deb7f4694cb0" - integrity sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-transform-member-expression-literals@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz#3b4454fb0e302e18ba4945ba3246acb1248315df" - integrity sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-modules-amd@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz#65090ed493c4a834976a3ca1cde776e6ccff32d7" - integrity sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg== - dependencies: - "@babel/helper-module-transforms" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-modules-commonjs@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz#9fd5f7fdadee9085886b183f1ad13d1ab260f4ab" - integrity sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ== - dependencies: - "@babel/helper-module-transforms" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-simple-access" "^7.24.7" - -"@babel/plugin-transform-modules-systemjs@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz#f8012316c5098f6e8dee6ecd58e2bc6f003d0ce7" - integrity sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw== - dependencies: - "@babel/helper-hoist-variables" "^7.24.7" - "@babel/helper-module-transforms" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-validator-identifier" "^7.24.7" - -"@babel/plugin-transform-modules-umd@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz#edd9f43ec549099620df7df24e7ba13b5c76efc8" - integrity sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A== - dependencies: - "@babel/helper-module-transforms" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz#9042e9b856bc6b3688c0c2e4060e9e10b1460923" - integrity sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-new-target@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz#31ff54c4e0555cc549d5816e4ab39241dfb6ab00" - integrity sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz#1de4534c590af9596f53d67f52a92f12db984120" - integrity sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-transform-numeric-separator@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz#bea62b538c80605d8a0fac9b40f48e97efa7de63" - integrity sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-transform-object-rest-spread@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz#d13a2b93435aeb8a197e115221cab266ba6e55d6" - integrity sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q== - dependencies: - "@babel/helper-compilation-targets" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.24.7" - -"@babel/plugin-transform-object-super@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz#66eeaff7830bba945dd8989b632a40c04ed625be" - integrity sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-replace-supers" "^7.24.7" - -"@babel/plugin-transform-optional-catch-binding@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz#00eabd883d0dd6a60c1c557548785919b6e717b4" - integrity sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-transform-optional-chaining@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz#b8f6848a80cf2da98a8a204429bec04756c6d454" - integrity sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-transform-parameters@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz#5881f0ae21018400e320fc7eb817e529d1254b68" - integrity sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-private-methods@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz#e6318746b2ae70a59d023d5cc1344a2ba7a75f5e" - integrity sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-private-property-in-object@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz#4eec6bc701288c1fab5f72e6a4bbc9d67faca061" - integrity sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-create-class-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-transform-property-literals@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz#f0d2ed8380dfbed949c42d4d790266525d63bbdc" - integrity sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-regenerator@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz#021562de4534d8b4b1851759fd7af4e05d2c47f8" - integrity sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - regenerator-transform "^0.15.2" - -"@babel/plugin-transform-reserved-words@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz#80037fe4fbf031fc1125022178ff3938bb3743a4" - integrity sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-shorthand-properties@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz#85448c6b996e122fa9e289746140aaa99da64e73" - integrity sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-spread@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz#e8a38c0fde7882e0fb8f160378f74bd885cc7bb3" - integrity sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - -"@babel/plugin-transform-sticky-regex@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz#96ae80d7a7e5251f657b5cf18f1ea6bf926f5feb" - integrity sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-template-literals@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz#a05debb4a9072ae8f985bcf77f3f215434c8f8c8" - integrity sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-typeof-symbol@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz#f074be466580d47d6e6b27473a840c9f9ca08fb0" - integrity sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-typescript@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.7.tgz#b006b3e0094bf0813d505e0c5485679eeaf4a881" - integrity sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-create-class-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-typescript" "^7.24.7" - -"@babel/plugin-transform-unicode-escapes@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz#2023a82ced1fb4971630a2e079764502c4148e0e" - integrity sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-unicode-property-regex@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz#9073a4cd13b86ea71c3264659590ac086605bbcd" - integrity sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-unicode-regex@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz#dfc3d4a51127108099b19817c0963be6a2adf19f" - integrity sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-transform-unicode-sets-regex@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz#d40705d67523803a576e29c63cef6e516b858ed9" - integrity sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/preset-env@^7.24.0": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.7.tgz#ff067b4e30ba4a72f225f12f123173e77b987f37" - integrity sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ== - dependencies: - "@babel/compat-data" "^7.24.7" - "@babel/helper-compilation-targets" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-validator-option" "^7.24.7" - "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.24.7" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.7" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.7" - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.7" - "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.24.7" - "@babel/plugin-syntax-import-attributes" "^7.24.7" - "@babel/plugin-syntax-import-meta" "^7.10.4" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.24.7" - "@babel/plugin-transform-async-generator-functions" "^7.24.7" - "@babel/plugin-transform-async-to-generator" "^7.24.7" - "@babel/plugin-transform-block-scoped-functions" "^7.24.7" - "@babel/plugin-transform-block-scoping" "^7.24.7" - "@babel/plugin-transform-class-properties" "^7.24.7" - "@babel/plugin-transform-class-static-block" "^7.24.7" - "@babel/plugin-transform-classes" "^7.24.7" - "@babel/plugin-transform-computed-properties" "^7.24.7" - "@babel/plugin-transform-destructuring" "^7.24.7" - "@babel/plugin-transform-dotall-regex" "^7.24.7" - "@babel/plugin-transform-duplicate-keys" "^7.24.7" - "@babel/plugin-transform-dynamic-import" "^7.24.7" - "@babel/plugin-transform-exponentiation-operator" "^7.24.7" - "@babel/plugin-transform-export-namespace-from" "^7.24.7" - "@babel/plugin-transform-for-of" "^7.24.7" - "@babel/plugin-transform-function-name" "^7.24.7" - "@babel/plugin-transform-json-strings" "^7.24.7" - "@babel/plugin-transform-literals" "^7.24.7" - "@babel/plugin-transform-logical-assignment-operators" "^7.24.7" - "@babel/plugin-transform-member-expression-literals" "^7.24.7" - "@babel/plugin-transform-modules-amd" "^7.24.7" - "@babel/plugin-transform-modules-commonjs" "^7.24.7" - "@babel/plugin-transform-modules-systemjs" "^7.24.7" - "@babel/plugin-transform-modules-umd" "^7.24.7" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7" - "@babel/plugin-transform-new-target" "^7.24.7" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7" - "@babel/plugin-transform-numeric-separator" "^7.24.7" - "@babel/plugin-transform-object-rest-spread" "^7.24.7" - "@babel/plugin-transform-object-super" "^7.24.7" - "@babel/plugin-transform-optional-catch-binding" "^7.24.7" - "@babel/plugin-transform-optional-chaining" "^7.24.7" - "@babel/plugin-transform-parameters" "^7.24.7" - "@babel/plugin-transform-private-methods" "^7.24.7" - "@babel/plugin-transform-private-property-in-object" "^7.24.7" - "@babel/plugin-transform-property-literals" "^7.24.7" - "@babel/plugin-transform-regenerator" "^7.24.7" - "@babel/plugin-transform-reserved-words" "^7.24.7" - "@babel/plugin-transform-shorthand-properties" "^7.24.7" - "@babel/plugin-transform-spread" "^7.24.7" - "@babel/plugin-transform-sticky-regex" "^7.24.7" - "@babel/plugin-transform-template-literals" "^7.24.7" - "@babel/plugin-transform-typeof-symbol" "^7.24.7" - "@babel/plugin-transform-unicode-escapes" "^7.24.7" - "@babel/plugin-transform-unicode-property-regex" "^7.24.7" - "@babel/plugin-transform-unicode-regex" "^7.24.7" - "@babel/plugin-transform-unicode-sets-regex" "^7.24.7" - "@babel/preset-modules" "0.1.6-no-external-plugins" - babel-plugin-polyfill-corejs2 "^0.4.10" - babel-plugin-polyfill-corejs3 "^0.10.4" - babel-plugin-polyfill-regenerator "^0.6.1" - core-js-compat "^3.31.0" - semver "^6.3.1" - -"@babel/preset-modules@0.1.6-no-external-plugins": - version "0.1.6-no-external-plugins" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" - integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/preset-typescript@^7.23.3": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz#66cd86ea8f8c014855671d5ea9a737139cbbfef1" - integrity sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/helper-validator-option" "^7.24.7" - "@babel/plugin-syntax-jsx" "^7.24.7" - "@babel/plugin-transform-modules-commonjs" "^7.24.7" - "@babel/plugin-transform-typescript" "^7.24.7" - -"@babel/regjsgen@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" - integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== - -"@babel/runtime@^7.8.4": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.7.tgz#f4f0d5530e8dbdf59b3451b9b3e594b6ba082e12" - integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw== - dependencies: - regenerator-runtime "^0.14.0" - -"@babel/template@^7.24.7", "@babel/template@^7.3.3": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.7.tgz#02efcee317d0609d2c07117cb70ef8fb17ab7315" - integrity sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig== - dependencies: - "@babel/code-frame" "^7.24.7" - "@babel/parser" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/traverse@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.7.tgz#de2b900163fa741721ba382163fe46a936c40cf5" - integrity sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA== - dependencies: - "@babel/code-frame" "^7.24.7" - "@babel/generator" "^7.24.7" - "@babel/helper-environment-visitor" "^7.24.7" - "@babel/helper-function-name" "^7.24.7" - "@babel/helper-hoist-variables" "^7.24.7" - "@babel/helper-split-export-declaration" "^7.24.7" - "@babel/parser" "^7.24.7" - "@babel/types" "^7.24.7" - debug "^4.3.1" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.7.tgz#6027fe12bc1aa724cd32ab113fb7f1988f1f66f2" - integrity sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q== - dependencies: - "@babel/helper-string-parser" "^7.24.7" - "@babel/helper-validator-identifier" "^7.24.7" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@commitlint/cli@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-18.6.1.tgz#78bffdfa00d6f01425d53096954993d83f2b343d" - integrity sha512-5IDE0a+lWGdkOvKH892HHAZgbAjcj1mT5QrfA/SVbLJV/BbBMGyKN0W5mhgjekPJJwEQdVNvhl9PwUacY58Usw== - dependencies: - "@commitlint/format" "^18.6.1" - "@commitlint/lint" "^18.6.1" - "@commitlint/load" "^18.6.1" - "@commitlint/read" "^18.6.1" - "@commitlint/types" "^18.6.1" - execa "^5.0.0" - lodash.isfunction "^3.0.9" - resolve-from "5.0.0" - resolve-global "1.0.0" - yargs "^17.0.0" - -"@commitlint/config-conventional@^18.6.2": - version "18.6.3" - resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-18.6.3.tgz#1b2740dbe325d76e05924c46bc1504340b701ca1" - integrity sha512-8ZrRHqF6je+TRaFoJVwszwnOXb/VeYrPmTwPhf0WxpzpGTcYy1p0SPyZ2eRn/sRi/obnWAcobtDAq6+gJQQNhQ== - dependencies: - "@commitlint/types" "^18.6.1" - conventional-changelog-conventionalcommits "^7.0.2" - -"@commitlint/config-validator@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-18.6.1.tgz#e0d71a99c984a68586c7ae7afd3f52342022fae8" - integrity sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw== - dependencies: - "@commitlint/types" "^18.6.1" - ajv "^8.11.0" - -"@commitlint/ensure@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-18.6.1.tgz#17141e083200ca94d8480dc23b0e8f8b1fd37b7f" - integrity sha512-BPm6+SspyxQ7ZTsZwXc7TRQL5kh5YWt3euKmEIBZnocMFkJevqs3fbLRb8+8I/cfbVcAo4mxRlpTPfz8zX7SnQ== - dependencies: - "@commitlint/types" "^18.6.1" - lodash.camelcase "^4.3.0" - lodash.kebabcase "^4.1.1" - lodash.snakecase "^4.1.1" - lodash.startcase "^4.4.0" - lodash.upperfirst "^4.3.1" - -"@commitlint/execute-rule@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-18.6.1.tgz#18175e043fe6fb5fceea7b8530316c644f93dfe6" - integrity sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg== - -"@commitlint/format@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-18.6.1.tgz#5f2b8b3ae4d8d80bd9239178e97df63e5b8d280a" - integrity sha512-K8mNcfU/JEFCharj2xVjxGSF+My+FbUHoqR+4GqPGrHNqXOGNio47ziiR4HQUPKtiNs05o8/WyLBoIpMVOP7wg== - dependencies: - "@commitlint/types" "^18.6.1" - chalk "^4.1.0" - -"@commitlint/is-ignored@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-18.6.1.tgz#4ee08ba91ff3defb06e0ef19259a9c6734a8d06e" - integrity sha512-MOfJjkEJj/wOaPBw5jFjTtfnx72RGwqYIROABudOtJKW7isVjFe9j0t8xhceA02QebtYf4P/zea4HIwnXg8rvA== - dependencies: - "@commitlint/types" "^18.6.1" - semver "7.6.0" - -"@commitlint/lint@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-18.6.1.tgz#fe3834636c99ee14534a8eb3832831ac362e9fd8" - integrity sha512-8WwIFo3jAuU+h1PkYe5SfnIOzp+TtBHpFr4S8oJWhu44IWKuVx6GOPux3+9H1iHOan/rGBaiacicZkMZuluhfQ== - dependencies: - "@commitlint/is-ignored" "^18.6.1" - "@commitlint/parse" "^18.6.1" - "@commitlint/rules" "^18.6.1" - "@commitlint/types" "^18.6.1" - -"@commitlint/load@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-18.6.1.tgz#fb79ed7ee8b5897a9b5c274c1e24eda9162df816" - integrity sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA== - dependencies: - "@commitlint/config-validator" "^18.6.1" - "@commitlint/execute-rule" "^18.6.1" - "@commitlint/resolve-extends" "^18.6.1" - "@commitlint/types" "^18.6.1" - chalk "^4.1.0" - cosmiconfig "^8.3.6" - cosmiconfig-typescript-loader "^5.0.0" - lodash.isplainobject "^4.0.6" - lodash.merge "^4.6.2" - lodash.uniq "^4.5.0" - resolve-from "^5.0.0" - -"@commitlint/message@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-18.6.1.tgz#107bd40923ad23d2de56c92a68b179ebfb7e314e" - integrity sha512-VKC10UTMLcpVjMIaHHsY1KwhuTQtdIKPkIdVEwWV+YuzKkzhlI3aNy6oo1eAN6b/D2LTtZkJe2enHmX0corYRw== - -"@commitlint/parse@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-18.6.1.tgz#2946b814125e907b9c4d63d3e71d0c1b54b30b62" - integrity sha512-eS/3GREtvVJqGZrwAGRwR9Gdno3YcZ6Xvuaa+vUF8j++wsmxrA2En3n0ccfVO2qVOLJC41ni7jSZhQiJpMPGOQ== - dependencies: - "@commitlint/types" "^18.6.1" - conventional-changelog-angular "^7.0.0" - conventional-commits-parser "^5.0.0" - -"@commitlint/read@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-18.6.1.tgz#8c138311ed9749427920c369f6276be136f2aa50" - integrity sha512-ia6ODaQFzXrVul07ffSgbZGFajpe8xhnDeLIprLeyfz3ivQU1dIoHp7yz0QIorZ6yuf4nlzg4ZUkluDrGN/J/w== - dependencies: - "@commitlint/top-level" "^18.6.1" - "@commitlint/types" "^18.6.1" - git-raw-commits "^2.0.11" - minimist "^1.2.6" - -"@commitlint/resolve-extends@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-18.6.1.tgz#f0572c682fc24dbabe2e0f42873261e0fa42c91a" - integrity sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ== - dependencies: - "@commitlint/config-validator" "^18.6.1" - "@commitlint/types" "^18.6.1" - import-fresh "^3.0.0" - lodash.mergewith "^4.6.2" - resolve-from "^5.0.0" - resolve-global "^1.0.0" - -"@commitlint/rules@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-18.6.1.tgz#da25aeffe6c0e1c7625e44f46089fb8860986caf" - integrity sha512-kguM6HxZDtz60v/zQYOe0voAtTdGybWXefA1iidjWYmyUUspO1zBPQEmJZ05/plIAqCVyNUTAiRPWIBKLCrGew== - dependencies: - "@commitlint/ensure" "^18.6.1" - "@commitlint/message" "^18.6.1" - "@commitlint/to-lines" "^18.6.1" - "@commitlint/types" "^18.6.1" - execa "^5.0.0" - -"@commitlint/to-lines@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-18.6.1.tgz#d28827a4a540c98eea1aae31dafd66f80b2f1b9e" - integrity sha512-Gl+orGBxYSNphx1+83GYeNy5N0dQsHBQ9PJMriaLQDB51UQHCVLBT/HBdOx5VaYksivSf5Os55TLePbRLlW50Q== - -"@commitlint/top-level@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-18.6.1.tgz#429fcb985e3beaba9b17e05c0ae61926c647baf0" - integrity sha512-HyiHQZUTf0+r0goTCDs/bbVv/LiiQ7AVtz6KIar+8ZrseB9+YJAIo8HQ2IC2QT1y3N1lbW6OqVEsTHjbT6hGSw== - dependencies: - find-up "^5.0.0" - -"@commitlint/types@^18.6.1": - version "18.6.1" - resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-18.6.1.tgz#7eb3ab2d799d9166fbb98b96b0744581e59a4ad4" - integrity sha512-gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg== - dependencies: - chalk "^4.1.0" - -"@cspell/cspell-bundled-dicts@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.9.0.tgz#4c9ecb62a824bd8b21ffd4470302eba20e47c988" - integrity sha512-Dxfuva7zlcI2X/PulDI7bfJBB1De4OuulR2prVpDuGLk3zAiFO7t4d2bmdWxfowhtm1agSqY03uZOTk8fTppuQ== - dependencies: - "@cspell/dict-ada" "^4.0.2" - "@cspell/dict-aws" "^4.0.2" - "@cspell/dict-bash" "^4.1.3" - "@cspell/dict-companies" "^3.1.2" - "@cspell/dict-cpp" "^5.1.10" - "@cspell/dict-cryptocurrencies" "^5.0.0" - "@cspell/dict-csharp" "^4.0.2" - "@cspell/dict-css" "^4.0.12" - "@cspell/dict-dart" "^2.0.3" - "@cspell/dict-django" "^4.1.0" - "@cspell/dict-docker" "^1.1.7" - "@cspell/dict-dotnet" "^5.0.2" - "@cspell/dict-elixir" "^4.0.3" - "@cspell/dict-en-common-misspellings" "^2.0.2" - "@cspell/dict-en-gb" "1.1.33" - "@cspell/dict-en_us" "^4.3.22" - "@cspell/dict-filetypes" "^3.0.4" - "@cspell/dict-fonts" "^4.0.0" - "@cspell/dict-fsharp" "^1.0.1" - "@cspell/dict-fullstack" "^3.1.8" - "@cspell/dict-gaming-terms" "^1.0.5" - "@cspell/dict-git" "^3.0.0" - "@cspell/dict-golang" "^6.0.9" - "@cspell/dict-google" "^1.0.1" - "@cspell/dict-haskell" "^4.0.1" - "@cspell/dict-html" "^4.0.5" - "@cspell/dict-html-symbol-entities" "^4.0.0" - "@cspell/dict-java" "^5.0.7" - "@cspell/dict-julia" "^1.0.1" - "@cspell/dict-k8s" "^1.0.5" - "@cspell/dict-latex" "^4.0.0" - "@cspell/dict-lorem-ipsum" "^4.0.0" - "@cspell/dict-lua" "^4.0.3" - "@cspell/dict-makefile" "^1.0.0" - "@cspell/dict-monkeyc" "^1.0.6" - "@cspell/dict-node" "^5.0.1" - "@cspell/dict-npm" "^5.0.16" - "@cspell/dict-php" "^4.0.8" - "@cspell/dict-powershell" "^5.0.4" - "@cspell/dict-public-licenses" "^2.0.7" - "@cspell/dict-python" "^4.2.1" - "@cspell/dict-r" "^2.0.1" - "@cspell/dict-ruby" "^5.0.2" - "@cspell/dict-rust" "^4.0.4" - "@cspell/dict-scala" "^5.0.2" - "@cspell/dict-software-terms" "^3.4.6" - "@cspell/dict-sql" "^2.1.3" - "@cspell/dict-svelte" "^1.0.2" - "@cspell/dict-swift" "^2.0.1" - "@cspell/dict-terraform" "^1.0.0" - "@cspell/dict-typescript" "^3.1.5" - "@cspell/dict-vue" "^3.0.0" - -"@cspell/cspell-json-reporter@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.9.0.tgz#7ddaa8ba860346f077c641fb71892fc8c04e1be5" - integrity sha512-+m2HoYTqdI76Zt27CyCpFCAxEUlTMnJnC76MpuQEd21C72qXWmaYdcVzJ7GnVXtTY6cofefUy/X3zgkUBW/bqg== - dependencies: - "@cspell/cspell-types" "8.9.0" - -"@cspell/cspell-pipe@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.9.0.tgz#207d4bc993c235dfaa6085473ef150e46905a23c" - integrity sha512-N3Nv9F/1LyUabd1lda+N7tU+UpY7lp8mZvG7ZTxhoB8vfw/Yf3f8NlQ5awSYear2Q+N0RoGyyLaaqUY6nUQvOQ== - -"@cspell/cspell-resolver@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.9.0.tgz#96909ab32714e53c3b2e60ade3b44afecfebd83a" - integrity sha512-52FCYcrZZhdAKkGoHss000nUk2mHkujxHJOfh+KMh2p15igmPW0AR7/VFKSS7zVkkLfAhQfWxoqQLkoE+yvccA== - dependencies: - global-directory "^4.0.1" - -"@cspell/cspell-service-bus@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.9.0.tgz#d2ad4c1327392f38333a98e01be974800f8fff1e" - integrity sha512-R8MlY3dp4my/VZp2xhvkUcXbLsTZUSNuxsOFzpPYLQhtrei0ReEcaDTg2JEU1wfHnREGG8GYlWh9BEryx8AZYA== - -"@cspell/cspell-types@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.9.0.tgz#7b1c3987634391d2c4e0da34497782c51d23d00d" - integrity sha512-YeL14G+tIh92WvO5K9+WBCjckRQAApeSNkIavx+7+IF+MUoGPvVbTA881q15zwoPRPtOJQ8wEbI6zJH5ykKFfw== - -"@cspell/dict-ada@^4.0.2": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-ada/-/dict-ada-4.0.2.tgz#8da2216660aeb831a0d9055399a364a01db5805a" - integrity sha512-0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA== - -"@cspell/dict-aws@^4.0.2": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-aws/-/dict-aws-4.0.2.tgz#6498f1c983c80499054bb31b772aa9562f3aaaed" - integrity sha512-aNGHWSV7dRLTIn8WJemzLoMF62qOaiUQlgnsCwH5fRCD/00gsWCwg106pnbkmK4AyabyxzneOV4dfecDJWkSxw== - -"@cspell/dict-bash@^4.1.3": - version "4.1.3" - resolved "https://registry.yarnpkg.com/@cspell/dict-bash/-/dict-bash-4.1.3.tgz#25fba40825ac10083676ab2c777e471c3f71b36e" - integrity sha512-tOdI3QVJDbQSwPjUkOiQFhYcu2eedmX/PtEpVWg0aFps/r6AyjUQINtTgpqMYnYuq8O1QUIQqnpx21aovcgZCw== - -"@cspell/dict-companies@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-3.1.2.tgz#b335fe5b8847a23673bc4b964ca584339ca669a2" - integrity sha512-OwR5i1xbYuJX7FtHQySmTy3iJtPV1rZQ3jFCxFGwrA1xRQ4rtRcDQ+sTXBCIAoJHkXa84f9J3zsngOKmMGyS/w== - -"@cspell/dict-cpp@^5.1.10": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@cspell/dict-cpp/-/dict-cpp-5.1.10.tgz#457881ad9425ea0af71e4c1f9b108677a555fe79" - integrity sha512-BmIF0sAz2BgGEOwzYIeEm9ALneDjd1tcTbFbo+A1Hcq3zOKP8yViSgxS9CEN30KOZIyph6Tldp531UPEpoEl0Q== - -"@cspell/dict-cryptocurrencies@^5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.0.tgz#19fbc7bdbec76ce64daf7d53a6d0f3cfff7d0038" - integrity sha512-Z4ARIw5+bvmShL+4ZrhDzGhnc9znaAGHOEMaB/GURdS/jdoreEDY34wdN0NtdLHDO5KO7GduZnZyqGdRoiSmYA== - -"@cspell/dict-csharp@^4.0.2": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz#e55659dbe594e744d86b1baf0f3397fe57b1e283" - integrity sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g== - -"@cspell/dict-css@^4.0.12": - version "4.0.12" - resolved "https://registry.yarnpkg.com/@cspell/dict-css/-/dict-css-4.0.12.tgz#59abf3512ae729835c933c38f64a3d8a5f09ce3d" - integrity sha512-vGBgPM92MkHQF5/2jsWcnaahOZ+C6OE/fPvd5ScBP72oFY9tn5GLuomcyO0z8vWCr2e0nUSX1OGimPtcQAlvSw== - -"@cspell/dict-dart@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@cspell/dict-dart/-/dict-dart-2.0.3.tgz#75e7ffe47d5889c2c831af35acdd92ebdbd4cf12" - integrity sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw== - -"@cspell/dict-data-science@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-data-science/-/dict-data-science-2.0.1.tgz#ef8040821567786d76c6153ac3e4bc265ca65b59" - integrity sha512-xeutkzK0eBe+LFXOFU2kJeAYO6IuFUc1g7iRLr7HeCmlC4rsdGclwGHh61KmttL3+YHQytYStxaRBdGAXWC8Lw== - -"@cspell/dict-django@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-django/-/dict-django-4.1.0.tgz#2d4b765daf3c83e733ef3e06887ea34403a4de7a" - integrity sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w== - -"@cspell/dict-docker@^1.1.7": - version "1.1.7" - resolved "https://registry.yarnpkg.com/@cspell/dict-docker/-/dict-docker-1.1.7.tgz#bcf933283fbdfef19c71a642e7e8c38baf9014f2" - integrity sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A== - -"@cspell/dict-dotnet@^5.0.2": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-dotnet/-/dict-dotnet-5.0.2.tgz#d89ca8fa2e546b5e1b1f1288746d26bb627d9f38" - integrity sha512-UD/pO2A2zia/YZJ8Kck/F6YyDSpCMq0YvItpd4YbtDVzPREfTZ48FjZsbYi4Jhzwfvc6o8R56JusAE58P+4sNQ== - -"@cspell/dict-elixir@^4.0.3": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz#57c25843e46cf3463f97da72d9ef8e37c818296f" - integrity sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q== - -"@cspell/dict-en-common-misspellings@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.2.tgz#7620dcfa9b4244b1c044f38c7e123d06b52c81a6" - integrity sha512-LA8BO0RaoJD+ExHzK5mz+t9RQ0HaBPDxgR4JTfG8YKJP5keO+pFMH9ZMZphKPjW46QYUZb6Ta1HIRikBEOZfYw== - -"@cspell/dict-en-gb@1.1.33": - version "1.1.33" - resolved "https://registry.yarnpkg.com/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz#7f1fd90fc364a5cb77111b5438fc9fcf9cc6da0e" - integrity sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g== - -"@cspell/dict-en_us@^4.3.22": - version "4.3.22" - resolved "https://registry.yarnpkg.com/@cspell/dict-en_us/-/dict-en_us-4.3.22.tgz#66aa9de60d97bc58112c68007a145d02f108c428" - integrity sha512-UegkIQhKkTLGarpYNV5ybW2JHzuxhDMOF9q9TW37iG8YoHp5jeVW3C0p3cH9nHWMwEjPinJFfxBd1LPRxGv5dQ== - -"@cspell/dict-filetypes@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@cspell/dict-filetypes/-/dict-filetypes-3.0.4.tgz#aca71c7bb8c8805b54f382d98ded5ec75ebc1e36" - integrity sha512-IBi8eIVdykoGgIv5wQhOURi5lmCNJq0we6DvqKoPQJHthXbgsuO1qrHSiUVydMiQl/XvcnUWTMeAlVUlUClnVg== - -"@cspell/dict-fonts@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-fonts/-/dict-fonts-4.0.0.tgz#9bc8beb2a7b068b4fdb45cb994b36fd184316327" - integrity sha512-t9V4GeN/m517UZn63kZPUYP3OQg5f0OBLSd3Md5CU3eH1IFogSvTzHHnz4Wqqbv8NNRiBZ3HfdY/pqREZ6br3Q== - -"@cspell/dict-fsharp@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-fsharp/-/dict-fsharp-1.0.1.tgz#d62c699550a39174f182f23c8c1330a795ab5f53" - integrity sha512-23xyPcD+j+NnqOjRHgW3IU7Li912SX9wmeefcY0QxukbAxJ/vAN4rBpjSwwYZeQPAn3fxdfdNZs03fg+UM+4yQ== - -"@cspell/dict-fullstack@^3.1.8": - version "3.1.8" - resolved "https://registry.yarnpkg.com/@cspell/dict-fullstack/-/dict-fullstack-3.1.8.tgz#1bbfa0a165346f6eff9894cf965bf3ce26552797" - integrity sha512-YRlZupL7uqMCtEBK0bDP9BrcPnjDhz7m4GBqCc1EYqfXauHbLmDT8ELha7T/E7wsFKniHSjzwDZzhNXo2lusRQ== - -"@cspell/dict-gaming-terms@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.5.tgz#d6ca40eb34a4c99847fd58a7354cd2c651065156" - integrity sha512-C3riccZDD3d9caJQQs1+MPfrUrQ+0KHdlj9iUR1QD92FgTOF6UxoBpvHUUZ9YSezslcmpFQK4xQQ5FUGS7uWfw== - -"@cspell/dict-git@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-git/-/dict-git-3.0.0.tgz#c275af86041a2b59a7facce37525e2af05653b95" - integrity sha512-simGS/lIiXbEaqJu9E2VPoYW1OTC2xrwPPXNXFMa2uo/50av56qOuaxDrZ5eH1LidFXwoc8HROCHYeKoNrDLSw== - -"@cspell/dict-golang@^6.0.9": - version "6.0.9" - resolved "https://registry.yarnpkg.com/@cspell/dict-golang/-/dict-golang-6.0.9.tgz#b26ee13fb34a8cd40fb22380de8a46b25739fcab" - integrity sha512-etDt2WQauyEQDA+qPS5QtkYTb2I9l5IfQftAllVoB1aOrT6bxxpHvMEpJ0Hsn/vezxrCqa/BmtUbRxllIxIuSg== - -"@cspell/dict-google@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-google/-/dict-google-1.0.1.tgz#34701471a616011aeaaf480d4834436b6b6b1da5" - integrity sha512-dQr4M3n95uOhtloNSgB9tYYGXGGEGEykkFyRtfcp5pFuEecYUa0BSgtlGKx9RXVtJtKgR+yFT/a5uQSlt8WjqQ== - -"@cspell/dict-haskell@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-haskell/-/dict-haskell-4.0.1.tgz#e9fca7c452411ff11926e23ffed2b50bb9b95e47" - integrity sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ== - -"@cspell/dict-html-symbol-entities@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz#4d86ac18a4a11fdb61dfb6f5929acd768a52564f" - integrity sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw== - -"@cspell/dict-html@^4.0.5": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@cspell/dict-html/-/dict-html-4.0.5.tgz#03a5182148d80e6c25f71339dbb2b7c5b9894ef8" - integrity sha512-p0brEnRybzSSWi8sGbuVEf7jSTDmXPx7XhQUb5bgG6b54uj+Z0Qf0V2n8b/LWwIPJNd1GygaO9l8k3HTCy1h4w== - -"@cspell/dict-java@^5.0.7": - version "5.0.7" - resolved "https://registry.yarnpkg.com/@cspell/dict-java/-/dict-java-5.0.7.tgz#c0b32d3c208b6419a5eddd010e87196976be2694" - integrity sha512-ejQ9iJXYIq7R09BScU2y5OUGrSqwcD+J5mHFOKbduuQ5s/Eh/duz45KOzykeMLI6KHPVxhBKpUPBWIsfewECpQ== - -"@cspell/dict-julia@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-julia/-/dict-julia-1.0.1.tgz#900001417f1c4ea689530adfcc034c848458a0aa" - integrity sha512-4JsCLCRhhLMLiaHpmR7zHFjj1qOauzDI5ZzCNQS31TUMfsOo26jAKDfo0jljFAKgw5M2fEG7sKr8IlPpQAYrmQ== - -"@cspell/dict-k8s@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@cspell/dict-k8s/-/dict-k8s-1.0.5.tgz#4a4011d9f2f3ab628658573c5f16c0e6dbe30c29" - integrity sha512-Cj+/ZV4S+MKlwfocSJZqe/2UAd/sY8YtlZjbK25VN1nCnrsKrBjfkX29vclwSj1U9aJg4Z9jw/uMjoaKu9ZrpQ== - -"@cspell/dict-latex@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-latex/-/dict-latex-4.0.0.tgz#85054903db834ea867174795d162e2a8f0e9c51e" - integrity sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ== - -"@cspell/dict-lorem-ipsum@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.0.tgz#2793a5dbfde474a546b0caecc40c38fdf076306e" - integrity sha512-1l3yjfNvMzZPibW8A7mQU4kTozwVZVw0AvFEdy+NcqtbxH+TvbSkNMqROOFWrkD2PjnKG0+Ea0tHI2Pi6Gchnw== - -"@cspell/dict-lua@^4.0.3": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@cspell/dict-lua/-/dict-lua-4.0.3.tgz#2d23c8f7e74b4e62000678d80e7d1ebb10b003e0" - integrity sha512-lDHKjsrrbqPaea13+G9s0rtXjMO06gPXPYRjRYawbNmo4E/e3XFfVzeci3OQDQNDmf2cPOwt9Ef5lu2lDmwfJg== - -"@cspell/dict-makefile@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-makefile/-/dict-makefile-1.0.0.tgz#5afb2910873ebbc01ab8d9c38661c4c93d0e5a40" - integrity sha512-3W9tHPcSbJa6s0bcqWo6VisEDTSN5zOtDbnPabF7rbyjRpNo0uHXHRJQF8gAbFzoTzBBhgkTmrfSiuyQm7vBUQ== - -"@cspell/dict-monkeyc@^1.0.6": - version "1.0.6" - resolved "https://registry.yarnpkg.com/@cspell/dict-monkeyc/-/dict-monkeyc-1.0.6.tgz#042d042fc34a20194c8de032130808f44b241375" - integrity sha512-oO8ZDu/FtZ55aq9Mb67HtaCnsLn59xvhO/t2mLLTHAp667hJFxpp7bCtr2zOrR1NELzFXmKln/2lw/PvxMSvrA== - -"@cspell/dict-node@^4.0.3": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@cspell/dict-node/-/dict-node-4.0.3.tgz#5ae0222d72871e82978049f8e11ea627ca42fca3" - integrity sha512-sFlUNI5kOogy49KtPg8SMQYirDGIAoKBO3+cDLIwD4MLdsWy1q0upc7pzGht3mrjuyMiPRUV14Bb0rkVLrxOhg== - -"@cspell/dict-node@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-node/-/dict-node-5.0.1.tgz#77e17c576a897a3391fce01c1cc5da60bb4c2268" - integrity sha512-lax/jGz9h3Dv83v8LHa5G0bf6wm8YVRMzbjJPG/9rp7cAGPtdrga+XANFq+B7bY5+jiSA3zvj10LUFCFjnnCCg== - -"@cspell/dict-npm@^5.0.16": - version "5.0.16" - resolved "https://registry.yarnpkg.com/@cspell/dict-npm/-/dict-npm-5.0.16.tgz#696883918a9876ffd20d5f975bde74a03d27d80e" - integrity sha512-ZWPnLAziEcSCvV0c8k9Qj88pfMu+wZwM5Qks87ShsfBgI8uLZ9tGHravA7gmjH1Gd7Bgxy2ulvXtSqIWPh1lew== - -"@cspell/dict-php@^4.0.8": - version "4.0.8" - resolved "https://registry.yarnpkg.com/@cspell/dict-php/-/dict-php-4.0.8.tgz#fedce3109dff13a0f3d8d88ba604d6edd2b9fb70" - integrity sha512-TBw3won4MCBQ2wdu7kvgOCR3dY2Tb+LJHgDUpuquy3WnzGiSDJ4AVelrZdE1xu7mjFJUr4q48aB21YT5uQqPZA== - -"@cspell/dict-powershell@^5.0.4": - version "5.0.4" - resolved "https://registry.yarnpkg.com/@cspell/dict-powershell/-/dict-powershell-5.0.4.tgz#db2bc6a86700a2f829dc1b3b04f6cb3a916fd928" - integrity sha512-eosDShapDgBWN9ULF7+sRNdUtzRnUdsfEdBSchDm8FZA4HOqxUSZy3b/cX/Rdw0Fnw0AKgk0kzgXw7tS6vwJMQ== - -"@cspell/dict-public-licenses@^2.0.7": - version "2.0.7" - resolved "https://registry.yarnpkg.com/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.7.tgz#ccd67a91a6bd5ed4b5117c2f34e9361accebfcb7" - integrity sha512-KlBXuGcN3LE7tQi/GEqKiDewWGGuopiAD0zRK1QilOx5Co8XAvs044gk4MNIQftc8r0nHeUI+irJKLGcR36DIQ== - -"@cspell/dict-python@^4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-python/-/dict-python-4.2.1.tgz#ef0c4cc1b6d096e8ff65faee3fe15eaf6457a92e" - integrity sha512-9X2jRgyM0cxBoFQRo4Zc8oacyWnXi+0/bMI5FGibZNZV4y/o9UoFEr6agjU260/cXHTjIdkX233nN7eb7dtyRg== - dependencies: - "@cspell/dict-data-science" "^2.0.1" - -"@cspell/dict-r@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-r/-/dict-r-2.0.1.tgz#73474fb7cce45deb9094ebf61083fbf5913f440a" - integrity sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA== - -"@cspell/dict-ruby@^5.0.2": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-ruby/-/dict-ruby-5.0.2.tgz#cf1a71380c633dec0857143d3270cb503b10679a" - integrity sha512-cIh8KTjpldzFzKGgrqUX4bFyav5lC52hXDKo4LbRuMVncs3zg4hcSf4HtURY+f2AfEZzN6ZKzXafQpThq3dl2g== - -"@cspell/dict-rust@^4.0.4": - version "4.0.4" - resolved "https://registry.yarnpkg.com/@cspell/dict-rust/-/dict-rust-4.0.4.tgz#72f21d18aa46288b7da00e7d91b3ed4a23b386e8" - integrity sha512-v9/LcZknt/Xq7m1jdTWiQEtmkVVKdE1etAfGL2sgcWpZYewEa459HeWndNA0gfzQrpWX9sYay18mt7pqClJEdA== - -"@cspell/dict-scala@^5.0.2": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-scala/-/dict-scala-5.0.2.tgz#d732ab24610cc9f6916fb8148f6ef5bdd945fc47" - integrity sha512-v97ClgidZt99JUm7OjhQugDHmhx4U8fcgunHvD/BsXWjXNj4cTr0m0YjofyZoL44WpICsNuFV9F/sv9OM5HUEw== - -"@cspell/dict-software-terms@^3.3.18", "@cspell/dict-software-terms@^3.4.6": - version "3.4.6" - resolved "https://registry.yarnpkg.com/@cspell/dict-software-terms/-/dict-software-terms-3.4.6.tgz#892562e12acc85b6de849b9390e53765c8a3cbe3" - integrity sha512-Cap+WL4iM9NgwxdVIa93aDEGKGNm1t+DLJTnjoWkGHXxSBPG8Kcbnlss6mTtwLv9/NYPmQsmJi5qHXruuHx2ow== - -"@cspell/dict-sql@^2.1.3": - version "2.1.3" - resolved "https://registry.yarnpkg.com/@cspell/dict-sql/-/dict-sql-2.1.3.tgz#8d9666a82e35b310d0be4064032c0d891fbd2702" - integrity sha512-SEyTNKJrjqD6PAzZ9WpdSu6P7wgdNtGV2RV8Kpuw1x6bV+YsSptuClYG+JSdRExBTE6LwIe1bTklejUp3ZP8TQ== - -"@cspell/dict-svelte@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@cspell/dict-svelte/-/dict-svelte-1.0.2.tgz#0c866b08a7a6b33bbc1a3bdbe6a1b484ca15cdaa" - integrity sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q== - -"@cspell/dict-swift@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@cspell/dict-swift/-/dict-swift-2.0.1.tgz#06ec86e52e9630c441d3c19605657457e33d7bb6" - integrity sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw== - -"@cspell/dict-terraform@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-terraform/-/dict-terraform-1.0.0.tgz#c7b073bb3a03683f64cc70ccaa55ce9742c46086" - integrity sha512-Ak+vy4HP/bOgzf06BAMC30+ZvL9mzv21xLM2XtfnBLTDJGdxlk/nK0U6QT8VfFLqJ0ZZSpyOxGsUebWDCTr/zQ== - -"@cspell/dict-typescript@^3.1.2", "@cspell/dict-typescript@^3.1.5": - version "3.1.5" - resolved "https://registry.yarnpkg.com/@cspell/dict-typescript/-/dict-typescript-3.1.5.tgz#15bd74651fb2cf0eff1150f07afee9543206bfab" - integrity sha512-EkIwwNV/xqEoBPJml2S16RXj65h1kvly8dfDLgXerrKw6puybZdvAHerAph6/uPTYdtLcsPyJYkPt5ISOJYrtw== - -"@cspell/dict-vue@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@cspell/dict-vue/-/dict-vue-3.0.0.tgz#68ccb432ad93fcb0fd665352d075ae9a64ea9250" - integrity sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A== - -"@cspell/dynamic-import@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.9.0.tgz#232d49b6372ff8ece4d5ffce149f988e9350065c" - integrity sha512-UYa2Xlf/Bg9b7lUlKn59Z6XhHtE00z5kgzkKCGAdS0W27i2qUZJHW3FfiKfknWLNLzfj7cVUAq2IHjbumbx9ow== - dependencies: - import-meta-resolve "^4.1.0" - -"@cspell/strong-weak-map@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.9.0.tgz#5aedd8f556c362b444f0a8dc9ed532831bed3c95" - integrity sha512-HE0rkwtJ4/4QuXpJW1r4GIK+jhs2SYK4IACf3EE2mJufOWF4YxgfWwKBgztKE/0RDMJcxyvn/ubLUCnNClNfdg== - -"@cspell/url@8.9.0": - version "8.9.0" - resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.9.0.tgz#313ccde44570b3158cb7baa3eb53e54572d7263f" - integrity sha512-FaHTEx6OBVKlkX7VgAPofBZ5vIdxNWYalb0uZwJ5FCc/PCMIF5l91DQGQxRMas3qzRACR911kJamPdeK/3qilw== - -"@cspotcode/source-map-support@^0.8.0": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" - integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== - dependencies: - "@jridgewell/trace-mapping" "0.3.9" - -"@ericcornelissen/bash-parser@0.5.3": - version "0.5.3" - resolved "https://registry.yarnpkg.com/@ericcornelissen/bash-parser/-/bash-parser-0.5.3.tgz#cda9f0e9ed3bcf62c29c277de778726425e03b0a" - integrity sha512-9Z0sGuXqf6En19qmwB0Syi1Mc8TYl756dNuuaYal9mrypKa0Jq/IX6aJfh6Rk2S3z66KBisWTqloDo7weYj4zg== - dependencies: - array-last "^1.1.1" - babylon "^6.9.1" - compose-function "^3.0.3" - filter-obj "^1.1.0" - has-own-property "^0.1.0" - identity-function "^1.0.0" - is-iterable "^1.1.0" - iterable-lookahead "^1.0.0" - lodash.curry "^4.1.1" - magic-string "^0.16.0" - map-obj "^2.0.0" - object-pairs "^0.1.0" - object-values "^1.0.0" - reverse-arguments "^1.0.0" - shell-quote-word "^1.0.1" - to-pascal-case "^1.0.0" - unescape-js "^1.0.5" - -"@esbuild/aix-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" - integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== - -"@esbuild/aix-ppc64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" - integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== - -"@esbuild/android-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" - integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== - -"@esbuild/android-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" - integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== - -"@esbuild/android-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" - integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== - -"@esbuild/android-arm@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" - integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== - -"@esbuild/android-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" - integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== - -"@esbuild/android-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" - integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== - -"@esbuild/darwin-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" - integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== - -"@esbuild/darwin-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" - integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== - -"@esbuild/darwin-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" - integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== - -"@esbuild/darwin-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" - integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== - -"@esbuild/freebsd-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" - integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== - -"@esbuild/freebsd-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" - integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== - -"@esbuild/freebsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" - integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== - -"@esbuild/freebsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" - integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== - -"@esbuild/linux-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" - integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== - -"@esbuild/linux-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" - integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== - -"@esbuild/linux-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" - integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== - -"@esbuild/linux-arm@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" - integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== - -"@esbuild/linux-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" - integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== - -"@esbuild/linux-ia32@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" - integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== - -"@esbuild/linux-loong64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" - integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== - -"@esbuild/linux-loong64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" - integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== - -"@esbuild/linux-mips64el@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" - integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== - -"@esbuild/linux-mips64el@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" - integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== - -"@esbuild/linux-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" - integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== - -"@esbuild/linux-ppc64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" - integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== - -"@esbuild/linux-riscv64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" - integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== - -"@esbuild/linux-riscv64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" - integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== - -"@esbuild/linux-s390x@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" - integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== - -"@esbuild/linux-s390x@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" - integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== - -"@esbuild/linux-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" - integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== - -"@esbuild/linux-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" - integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== - -"@esbuild/netbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" - integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== - -"@esbuild/netbsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" - integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== - -"@esbuild/openbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" - integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== - -"@esbuild/openbsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" - integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== - -"@esbuild/sunos-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" - integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== - -"@esbuild/sunos-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" - integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== - -"@esbuild/win32-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" - integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== - -"@esbuild/win32-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" - integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== - -"@esbuild/win32-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" - integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== - -"@esbuild/win32-ia32@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" - integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== - -"@esbuild/win32-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" - integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== - -"@esbuild/win32-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" - integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== - -"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" - integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== - dependencies: - eslint-visitor-keys "^3.3.0" - -"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.6.1": - version "4.10.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.1.tgz#361461e5cb3845d874e61731c11cfedd664d83a0" - integrity sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA== - -"@eslint/eslintrc@^2.1.4": - version "2.1.4" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" - integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== - dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.6.0" - globals "^13.19.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" - -"@eslint/js@8.57.0": - version "8.57.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" - integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== - -"@ethersproject/abstract-provider@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" - integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== - dependencies: - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/networks" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" - "@ethersproject/web" "^5.7.0" - -"@ethersproject/abstract-signer@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" - integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== - dependencies: - "@ethersproject/abstract-provider" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - -"@ethersproject/address@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" - integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== - dependencies: - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/rlp" "^5.7.0" - -"@ethersproject/base64@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" - integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== - dependencies: - "@ethersproject/bytes" "^5.7.0" - -"@ethersproject/basex@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" - integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - -"@ethersproject/bignumber@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" - integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - bn.js "^5.2.1" - -"@ethersproject/bytes@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" - integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== - dependencies: - "@ethersproject/logger" "^5.7.0" - -"@ethersproject/constants@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" - integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== - dependencies: - "@ethersproject/bignumber" "^5.7.0" - -"@ethersproject/hash@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" - integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== - dependencies: - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/address" "^5.7.0" - "@ethersproject/base64" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - -"@ethersproject/keccak256@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" - integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== - dependencies: - "@ethersproject/bytes" "^5.7.0" - js-sha3 "0.8.0" - -"@ethersproject/logger@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" - integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== - -"@ethersproject/networks@^5.7.0": - version "5.7.1" - resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" - integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== - dependencies: - "@ethersproject/logger" "^5.7.0" - -"@ethersproject/properties@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" - integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== - dependencies: - "@ethersproject/logger" "^5.7.0" - -"@ethersproject/providers@5.7.2": - version "5.7.2" - resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.7.2.tgz#f8b1a4f275d7ce58cf0a2eec222269a08beb18cb" - integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg== - dependencies: - "@ethersproject/abstract-provider" "^5.7.0" - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/address" "^5.7.0" - "@ethersproject/base64" "^5.7.0" - "@ethersproject/basex" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/hash" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/networks" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/random" "^5.7.0" - "@ethersproject/rlp" "^5.7.0" - "@ethersproject/sha2" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" - "@ethersproject/web" "^5.7.0" - bech32 "1.1.4" - ws "7.4.6" - -"@ethersproject/random@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" - integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - -"@ethersproject/rlp@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" - integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - -"@ethersproject/sha2@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" - integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - hash.js "1.1.7" - -"@ethersproject/signing-key@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" - integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - bn.js "^5.2.1" - elliptic "6.5.4" - hash.js "1.1.7" - -"@ethersproject/strings@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" - integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - -"@ethersproject/transactions@^5.7.0": - version "5.7.0" - resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" - integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== - dependencies: - "@ethersproject/address" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/rlp" "^5.7.0" - "@ethersproject/signing-key" "^5.7.0" - -"@ethersproject/web@^5.7.0": - version "5.7.1" - resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" - integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== - dependencies: - "@ethersproject/base64" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - -"@humanwhocodes/config-array@^0.11.14": - version "0.11.14" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" - integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== - dependencies: - "@humanwhocodes/object-schema" "^2.0.2" - debug "^4.3.1" - minimatch "^3.0.5" - -"@humanwhocodes/module-importer@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" - integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== - -"@humanwhocodes/object-schema@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" - integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" - integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== - dependencies: - "@jest/types" "^29.6.3" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^29.7.0" - jest-util "^29.7.0" - slash "^3.0.0" - -"@jest/core@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" - integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== - dependencies: - "@jest/console" "^29.7.0" - "@jest/reporters" "^29.7.0" - "@jest/test-result" "^29.7.0" - "@jest/transform" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - ci-info "^3.2.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - jest-changed-files "^29.7.0" - jest-config "^29.7.0" - jest-haste-map "^29.7.0" - jest-message-util "^29.7.0" - jest-regex-util "^29.6.3" - jest-resolve "^29.7.0" - jest-resolve-dependencies "^29.7.0" - jest-runner "^29.7.0" - jest-runtime "^29.7.0" - jest-snapshot "^29.7.0" - jest-util "^29.7.0" - jest-validate "^29.7.0" - jest-watcher "^29.7.0" - micromatch "^4.0.4" - pretty-format "^29.7.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" - integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== - dependencies: - "@jest/fake-timers" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/node" "*" - jest-mock "^29.7.0" - -"@jest/expect-utils@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" - integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== - dependencies: - jest-get-type "^29.6.3" - -"@jest/expect@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" - integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== - dependencies: - expect "^29.7.0" - jest-snapshot "^29.7.0" - -"@jest/fake-timers@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" - integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== - dependencies: - "@jest/types" "^29.6.3" - "@sinonjs/fake-timers" "^10.0.2" - "@types/node" "*" - jest-message-util "^29.7.0" - jest-mock "^29.7.0" - jest-util "^29.7.0" - -"@jest/globals@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" - integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== - dependencies: - "@jest/environment" "^29.7.0" - "@jest/expect" "^29.7.0" - "@jest/types" "^29.6.3" - jest-mock "^29.7.0" - -"@jest/reporters@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" - integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^29.7.0" - "@jest/test-result" "^29.7.0" - "@jest/transform" "^29.7.0" - "@jest/types" "^29.6.3" - "@jridgewell/trace-mapping" "^0.3.18" - "@types/node" "*" - chalk "^4.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^6.0.0" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.1.3" - jest-message-util "^29.7.0" - jest-util "^29.7.0" - jest-worker "^29.7.0" - slash "^3.0.0" - string-length "^4.0.1" - strip-ansi "^6.0.0" - v8-to-istanbul "^9.0.1" - -"@jest/schemas@^29.6.3": - version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" - integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== - dependencies: - "@sinclair/typebox" "^0.27.8" - -"@jest/source-map@^29.6.3": - version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" - integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== - dependencies: - "@jridgewell/trace-mapping" "^0.3.18" - callsites "^3.0.0" - graceful-fs "^4.2.9" - -"@jest/test-result@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" - integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== - dependencies: - "@jest/console" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" - integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== - dependencies: - "@jest/test-result" "^29.7.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.7.0" - slash "^3.0.0" - -"@jest/transform@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" - integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== - dependencies: - "@babel/core" "^7.11.6" - "@jest/types" "^29.6.3" - "@jridgewell/trace-mapping" "^0.3.18" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^2.0.0" - fast-json-stable-stringify "^2.1.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.7.0" - jest-regex-util "^29.6.3" - jest-util "^29.7.0" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - write-file-atomic "^4.0.2" - -"@jest/types@^29.6.3": - version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" - integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== - dependencies: - "@jest/schemas" "^29.6.3" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jridgewell/gen-mapping@^0.3.5": - version "0.3.5" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" - integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== - dependencies: - "@jridgewell/set-array" "^1.2.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.24" - -"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" - integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== - -"@jridgewell/set-array@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" - integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== - -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@0.3.9": - version "0.3.9" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" - integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": - version "0.3.25" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" - integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== - dependencies: - "@jridgewell/resolve-uri" "^3.1.0" - "@jridgewell/sourcemap-codec" "^1.4.14" - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.scandir@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-3.0.0.tgz#91c0a33e1aeaedcd4bab2bf31be5d1962a55d2a7" - integrity sha512-ktI9+PxfHYtKjF3cLTUAh2N+b8MijCRPNwKJNqTVdL0gB0QxLU2rIRaZ1t71oEa3YBDE6bukH1sR0+CDnpp/Mg== - dependencies: - "@nodelib/fs.stat" "3.0.0" - run-parallel "^1.2.0" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.stat@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-3.0.0.tgz#ef6c829f2b05f42595d88854ebd777d4335ff0a9" - integrity sha512-2tQOI38s19P9i7X/Drt0v8iMA+KMsgdhB/dyPER+e+2Y8L1Z7QvnuRdW/uLuf5YRFUYmnj4bMA6qCuZHFI1GDQ== - -"@nodelib/fs.walk@2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-2.0.0.tgz#10499ac2210f6399770b465ba728adafc7d44bb1" - integrity sha512-54voNDBobGdMl3BUXSu7UaDh1P85PGHWlJ5e0XhPugo1JulOyCtp2I+5ri4wplGDJ8QGwPEQW7/x3yTLU7yF1A== - dependencies: - "@nodelib/fs.scandir" "3.0.0" - fastq "^1.15.0" - -"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@pkgr/core@^0.1.0": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.1.1.tgz#1ec17e2edbec25c8306d424ecfbf13c7de1aaa31" - integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA== - -"@sinclair/typebox@^0.27.8": - version "0.27.8" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" - integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== - -"@sinonjs/commons@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" - integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^10.0.2": - version "10.3.0" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" - integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== - dependencies: - "@sinonjs/commons" "^3.0.0" - -"@snyk/github-codeowners@1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@snyk/github-codeowners/-/github-codeowners-1.1.0.tgz#45b99732c3c38b5f5b47e43d2b0c9db67a6d2bcc" - integrity sha512-lGFf08pbkEac0NYgVf4hdANpAgApRjNByLXB+WBip3qj1iendOIyAwP2GKkKbQMNVy2r1xxDf0ssfWscoiC+Vw== - dependencies: - commander "^4.1.1" - ignore "^5.1.8" - p-map "^4.0.0" - -"@tsconfig/node10@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.11.tgz#6ee46400685f130e278128c7b38b7e031ff5b2f2" - integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== - -"@tsconfig/node12@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" - integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== - -"@tsconfig/node14@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" - integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== - -"@tsconfig/node16@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" - integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== - -"@types/babel__core@^7.1.14": - version "7.20.5" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" - integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== - dependencies: - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.8" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" - integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" - integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.20.6" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7" - integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg== - dependencies: - "@babel/types" "^7.20.7" - -"@types/graceful-fs@^4.1.3": - version "4.1.9" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" - integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== - dependencies: - "@types/node" "*" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" - integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== - -"@types/istanbul-lib-report@*": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" - integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" - integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/jest@^29.5.12": - version "29.5.12" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.12.tgz#7f7dc6eb4cf246d2474ed78744b05d06ce025544" - integrity sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw== - dependencies: - expect "^29.0.0" - pretty-format "^29.0.0" - -"@types/minimist@^1.2.0": - version "1.2.5" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" - integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== - -"@types/node-fetch@^2.6.11": - version "2.6.11" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz#9b39b78665dae0e82a08f02f4967d62c66f95d24" - integrity sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g== - dependencies: - "@types/node" "*" - form-data "^4.0.0" - -"@types/node@*", "@types/node@^20.11.19": - version "20.14.5" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.5.tgz#fe35e3022ebe58b8f201580eb24e1fcfc0f2487d" - integrity sha512-aoRR+fJkZT2l0aGOJhuA8frnCSoNX6W7U2mpNq63+BxBIj5BQFt8rHy627kijCmm63ijdSdwvGgpUsU6MBsZZA== - dependencies: - undici-types "~5.26.4" - -"@types/normalize-package-data@^2.4.0": - version "2.4.4" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" - integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== - -"@types/stack-utils@^2.0.0": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" - integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== - -"@types/yargs-parser@*": - version "21.0.3" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" - integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== - -"@types/yargs@^17.0.8": - version "17.0.32" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" - integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== - dependencies: - "@types/yargs-parser" "*" - -"@typescript-eslint/eslint-plugin@^7.0.1": - version "7.13.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.13.1.tgz#cdc521c8bca38b55585cf30db787fb2abad3f9fd" - integrity sha512-kZqi+WZQaZfPKnsflLJQCz6Ze9FFSMfXrrIOcyargekQxG37ES7DJNpJUE9Q/X5n3yTIP/WPutVNzgknQ7biLg== - dependencies: - "@eslint-community/regexpp" "^4.10.0" - "@typescript-eslint/scope-manager" "7.13.1" - "@typescript-eslint/type-utils" "7.13.1" - "@typescript-eslint/utils" "7.13.1" - "@typescript-eslint/visitor-keys" "7.13.1" - graphemer "^1.4.0" - ignore "^5.3.1" - natural-compare "^1.4.0" - ts-api-utils "^1.3.0" - -"@typescript-eslint/parser@^7.0.1": - version "7.13.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.13.1.tgz#fac57811b3e519185f7259bac312291f7b9c4e72" - integrity sha512-1ELDPlnLvDQ5ybTSrMhRTFDfOQEOXNM+eP+3HT/Yq7ruWpciQw+Avi73pdEbA4SooCawEWo3dtYbF68gN7Ed1A== - dependencies: - "@typescript-eslint/scope-manager" "7.13.1" - "@typescript-eslint/types" "7.13.1" - "@typescript-eslint/typescript-estree" "7.13.1" - "@typescript-eslint/visitor-keys" "7.13.1" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@7.13.1": - version "7.13.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.13.1.tgz#c08041206904bf36f0e6997efdb0ca775e0c452e" - integrity sha512-adbXNVEs6GmbzaCpymHQ0MB6E4TqoiVbC0iqG3uijR8ZYfpAXMGttouQzF4Oat3P2GxDVIrg7bMI/P65LiQZdg== - dependencies: - "@typescript-eslint/types" "7.13.1" - "@typescript-eslint/visitor-keys" "7.13.1" - -"@typescript-eslint/type-utils@7.13.1": - version "7.13.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.13.1.tgz#63bec3f1fb43cf0bc409cbdb88ef96d118ca8632" - integrity sha512-aWDbLu1s9bmgPGXSzNCxELu+0+HQOapV/y+60gPXafR8e2g1Bifxzevaa+4L2ytCWm+CHqpELq4CSoN9ELiwCg== - dependencies: - "@typescript-eslint/typescript-estree" "7.13.1" - "@typescript-eslint/utils" "7.13.1" - debug "^4.3.4" - ts-api-utils "^1.3.0" - -"@typescript-eslint/types@7.13.1": - version "7.13.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.13.1.tgz#787db283bd0b58751094c90d5b58bbf5e9fc9bd8" - integrity sha512-7K7HMcSQIAND6RBL4kDl24sG/xKM13cA85dc7JnmQXw2cBDngg7c19B++JzvJHRG3zG36n9j1i451GBzRuHchw== - -"@typescript-eslint/typescript-estree@7.13.1": - version "7.13.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.13.1.tgz#3412841b130e070db2f675e3d9b8cb1ae49e1c3f" - integrity sha512-uxNr51CMV7npU1BxZzYjoVz9iyjckBduFBP0S5sLlh1tXYzHzgZ3BR9SVsNed+LmwKrmnqN3Kdl5t7eZ5TS1Yw== - dependencies: - "@typescript-eslint/types" "7.13.1" - "@typescript-eslint/visitor-keys" "7.13.1" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - minimatch "^9.0.4" - semver "^7.6.0" - ts-api-utils "^1.3.0" - -"@typescript-eslint/utils@7.13.1": - version "7.13.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.13.1.tgz#611083379caa0d3a2c09d126c65065a3e4337ba2" - integrity sha512-h5MzFBD5a/Gh/fvNdp9pTfqJAbuQC4sCN2WzuXme71lqFJsZtLbjxfSk4r3p02WIArOF9N94pdsLiGutpDbrXQ== - dependencies: - "@eslint-community/eslint-utils" "^4.4.0" - "@typescript-eslint/scope-manager" "7.13.1" - "@typescript-eslint/types" "7.13.1" - "@typescript-eslint/typescript-estree" "7.13.1" - -"@typescript-eslint/visitor-keys@7.13.1": - version "7.13.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.13.1.tgz#9c229a795a919db61f2d7f2337ef584ac05fbe96" - integrity sha512-k/Bfne7lrP7hcb7m9zSsgcBmo+8eicqqfNAJ7uUY+jkTFpKeH2FSkWpFRtimBxgkyvqfu9jTPRbYOvud6isdXA== - dependencies: - "@typescript-eslint/types" "7.13.1" - eslint-visitor-keys "^3.4.3" - -"@ungap/structured-clone@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" - integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== - -JSONStream@^1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - -acorn-jsx@^5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn-walk@^8.1.1: - version "8.3.3" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.3.tgz#9caeac29eefaa0c41e3d4c65137de4d6f34df43e" - integrity sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw== - dependencies: - acorn "^8.11.0" - -acorn@^8.11.0, acorn@^8.4.1, acorn@^8.9.0: - version "8.12.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.0.tgz#1627bfa2e058148036133b8d9b51a700663c294c" - integrity sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw== - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ajv@^6.12.4: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^8.11.0: - version "8.16.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.16.0.tgz#22e2a92b94f005f7e0f9c9d39652ef0b8f6f0cb4" - integrity sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw== - dependencies: - fast-deep-equal "^3.1.3" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.4.1" - -ansi-escapes@^4.2.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-escapes@^6.2.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.1.tgz#76c54ce9b081dad39acec4b5d53377913825fb0f" - integrity sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig== - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -ansi-styles@^6.0.0, ansi-styles@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== - -anymatch@^3.0.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -arity-n@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" - integrity sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ== - -array-buffer-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" - integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== - dependencies: - call-bind "^1.0.5" - is-array-buffer "^3.0.4" - -array-ify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" - integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== - -array-last@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array-last/-/array-last-1.3.0.tgz#7aa77073fec565ddab2493f5f88185f404a9d336" - integrity sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg== - dependencies: - is-number "^4.0.0" - -array-timsort@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/array-timsort/-/array-timsort-1.0.3.tgz#3c9e4199e54fb2b9c3fe5976396a21614ef0d926" - integrity sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ== - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -arraybuffer.prototype.slice@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" - integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== - dependencies: - array-buffer-byte-length "^1.0.1" - call-bind "^1.0.5" - define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.2.1" - get-intrinsic "^1.2.3" - is-array-buffer "^3.0.4" - is-shared-array-buffer "^1.0.2" - -arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -available-typed-arrays@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" - integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== - dependencies: - possible-typed-array-names "^1.0.0" - -axios@^1.7.1: - version "1.7.2" - resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.2.tgz#b625db8a7051fbea61c35a3cbb3a1daa7b9c7621" - integrity sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw== - dependencies: - follow-redirects "^1.15.6" - form-data "^4.0.0" - proxy-from-env "^1.1.0" - -babel-jest@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" - integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== - dependencies: - "@jest/transform" "^29.7.0" - "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^29.6.3" - chalk "^4.0.0" - graceful-fs "^4.2.9" - slash "^3.0.0" - -babel-plugin-istanbul@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" - integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^5.0.4" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" - integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.1.14" - "@types/babel__traverse" "^7.0.6" - -babel-plugin-polyfill-corejs2@^0.4.10: - version "0.4.11" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" - integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== - dependencies: - "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.6.2" - semver "^6.3.1" - -babel-plugin-polyfill-corejs3@^0.10.4: - version "0.10.4" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77" - integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.1" - core-js-compat "^3.36.1" - -babel-plugin-polyfill-regenerator@^0.6.1: - version "0.6.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" - integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.2" - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - -babel-preset-jest@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" - integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== - dependencies: - babel-plugin-jest-hoist "^29.6.3" - babel-preset-current-node-syntax "^1.0.0" - -babylon@^6.9.1: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -bech32@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" - integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== - -bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" - integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== - dependencies: - balanced-match "^1.0.0" - -braces@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" - integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== - dependencies: - fill-range "^7.1.1" - -brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== - -browserslist@^4.22.2, browserslist@^4.23.0: - version "4.23.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.1.tgz#ce4af0534b3d37db5c1a4ca98b9080f985041e96" - integrity sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw== - dependencies: - caniuse-lite "^1.0.30001629" - electron-to-chromium "^1.4.796" - node-releases "^2.0.14" - update-browserslist-db "^1.0.16" - -bs-logger@0.x: - version "0.2.6" - resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== - dependencies: - fast-json-stable-stringify "2.x" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - set-function-length "^1.2.1" - -callsites@^3.0.0, callsites@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -caniuse-lite@^1.0.30001629: - version "1.0.30001636" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz#b15f52d2bdb95fad32c2f53c0b68032b85188a78" - integrity sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg== - -chalk-template@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/chalk-template/-/chalk-template-1.1.0.tgz#ffc55db6dd745e9394b85327c8ac8466edb7a7b1" - integrity sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg== - dependencies: - chalk "^5.2.0" - -chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0, chalk@^4.1.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^5.2.0, chalk@^5.3.0, chalk@~5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" - integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -ci-info@^3.2.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" - integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== - -cjs-module-lexer@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz#c485341ae8fd999ca4ee5af2d7a1c9ae01e0099c" - integrity sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q== - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -clear-module@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/clear-module/-/clear-module-4.1.2.tgz#5a58a5c9f8dccf363545ad7284cad3c887352a80" - integrity sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw== - dependencies: - parent-module "^2.0.0" - resolve-from "^5.0.0" - -cli-cursor@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-4.0.0.tgz#3cecfe3734bf4fe02a8361cbdc0f6fe28c6a57ea" - integrity sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg== - dependencies: - restore-cursor "^4.0.0" - -cli-truncate@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-4.0.0.tgz#6cc28a2924fee9e25ce91e973db56c7066e6172a" - integrity sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA== - dependencies: - slice-ansi "^5.0.0" - string-width "^7.0.0" - -cliui@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.1" - wrap-ansi "^7.0.0" - -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== - -collect-v8-coverage@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" - integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -colorette@^2.0.20: - version "2.0.20" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" - integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== - -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@^12.1.0, commander@~12.1.0: - version "12.1.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-12.1.0.tgz#01423b36f501259fdaac4d0e4d60c96c991585d3" - integrity sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA== - -commander@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" - integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== - -comment-json@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/comment-json/-/comment-json-4.2.3.tgz#50b487ebbf43abe44431f575ebda07d30d015365" - integrity sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw== - dependencies: - array-timsort "^1.0.3" - core-util-is "^1.0.3" - esprima "^4.0.1" - has-own-prop "^2.0.0" - repeat-string "^1.6.1" - -compare-func@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" - integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== - dependencies: - array-ify "^1.0.0" - dot-prop "^5.1.0" - -compose-function@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" - integrity sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg== - dependencies: - arity-n "^1.0.4" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -conventional-changelog-angular@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz#5eec8edbff15aa9b1680a8dcfbd53e2d7eb2ba7a" - integrity sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ== - dependencies: - compare-func "^2.0.0" - -conventional-changelog-conventionalcommits@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz#aa5da0f1b2543094889e8cf7616ebe1a8f5c70d5" - integrity sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w== - dependencies: - compare-func "^2.0.0" - -conventional-commits-parser@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz#57f3594b81ad54d40c1b4280f04554df28627d9a" - integrity sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA== - dependencies: - JSONStream "^1.3.5" - is-text-path "^2.0.0" - meow "^12.0.1" - split2 "^4.0.0" - -convert-source-map@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" - integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== - -core-js-compat@^3.31.0, core-js-compat@^3.36.1: - version "3.37.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.1.tgz#c844310c7852f4bdf49b8d339730b97e17ff09ee" - integrity sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg== - dependencies: - browserslist "^4.23.0" - -core-util-is@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cosmiconfig-typescript-loader@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.0.0.tgz#0d3becfe022a871f7275ceb2397d692e06045dc8" - integrity sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA== - dependencies: - jiti "^1.19.1" - -cosmiconfig@^8.3.6: - version "8.3.6" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" - integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== - dependencies: - import-fresh "^3.3.0" - js-yaml "^4.1.0" - parse-json "^5.2.0" - path-type "^4.0.0" - -create-jest@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" - integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== - dependencies: - "@jest/types" "^29.6.3" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - jest-config "^29.7.0" - jest-util "^29.7.0" - prompts "^2.0.1" - -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -cross-spawn@^6.0.5: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -cspell-config-lib@8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.9.0.tgz#df256d9228cdfdc4a081eecec1706b3dd8e4de57" - integrity sha512-1FQketvqo6IktnyC2ishEIzfqSX2DNhsfpb0MIG/nNeG5KvbjSeozOZpfyrALVqhPUJZVWfMP3+N0/hj3AzH+g== - dependencies: - "@cspell/cspell-types" "8.9.0" - comment-json "^4.2.3" - yaml "^2.4.5" - -cspell-dictionary@8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.9.0.tgz#57ec639760f4b27cc568c4905f1cd35595655f91" - integrity sha512-IsFyWsn9P979xoJ0PgWHdyjxVcDYe5nVmHMgJRecQ5LLhl2gFkOmsu+aYIh2qlHCLmcbzH31Me2x7Fd+jA6AXw== - dependencies: - "@cspell/cspell-pipe" "8.9.0" - "@cspell/cspell-types" "8.9.0" - cspell-trie-lib "8.9.0" - fast-equals "^5.0.1" - gensequence "^7.0.0" - -cspell-gitignore@8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.9.0.tgz#1814a4b3ebdbf995aa1fe2be04c80a45766e5811" - integrity sha512-/iw+iqFLgySqW7xJ+kDHtC0mRjajDM1/jvnu4pUoxU9cRanCEqg2IAA/BET+n3ZEs/etsl8P4MB0lgWE98Z15g== - dependencies: - cspell-glob "8.9.0" - find-up-simple "^1.0.0" - -cspell-glob@8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.9.0.tgz#a28b85732abd82e7293bb9d84a05d1f5d3dddf8a" - integrity sha512-j96SMMzT5Nz0nKCUECLkoyPEEms4hXKm/S7Vj80A356TFglTJD/yYiMKfWUamCVPm8UYODCz7W0s/liR7gSBSw== - dependencies: - micromatch "^4.0.7" - -cspell-grammar@8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.9.0.tgz#2d22fbcdab8980eae9ab3344d4ab2d76dcc3b3ba" - integrity sha512-oZEOE64lLc0clLGOJeqc5d1Yzc1fUtXQAAeLIrS+uoVM7nA1SqgIEv1JBjp3R++8jQKLjS5n7v16VW5A/yk67w== - dependencies: - "@cspell/cspell-pipe" "8.9.0" - "@cspell/cspell-types" "8.9.0" - -cspell-io@8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.9.0.tgz#7b2ffa99af96b742ec584dbc10fab2bc9517a60c" - integrity sha512-8KHERgqlg8KKpn04Owg2VY1Di2dSiwV/v63bUFxsGb8ORGIQ1VcydxtANwWuugUrZvtVrSFsbuU2fK/LRmAnoQ== - dependencies: - "@cspell/cspell-service-bus" "8.9.0" - "@cspell/url" "8.9.0" - -cspell-lib@8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.9.0.tgz#b843d7c97360d22df93bea701f7d9eed1b72f934" - integrity sha512-k347TQs1QRUyyHWHYQxPJddApos/irFousr9W/M/jEkYTTKzMMfaXK8m20kBSnlJ+BOUMa+f8d+KPEw6QLwtJQ== - dependencies: - "@cspell/cspell-bundled-dicts" "8.9.0" - "@cspell/cspell-pipe" "8.9.0" - "@cspell/cspell-resolver" "8.9.0" - "@cspell/cspell-types" "8.9.0" - "@cspell/dynamic-import" "8.9.0" - "@cspell/strong-weak-map" "8.9.0" - "@cspell/url" "8.9.0" - clear-module "^4.1.2" - comment-json "^4.2.3" - cspell-config-lib "8.9.0" - cspell-dictionary "8.9.0" - cspell-glob "8.9.0" - cspell-grammar "8.9.0" - cspell-io "8.9.0" - cspell-trie-lib "8.9.0" - env-paths "^3.0.0" - fast-equals "^5.0.1" - gensequence "^7.0.0" - import-fresh "^3.3.0" - resolve-from "^5.0.0" - vscode-languageserver-textdocument "^1.0.11" - vscode-uri "^3.0.8" - xdg-basedir "^5.1.0" - -cspell-trie-lib@8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.9.0.tgz#266a1bdf248f075a61851d7cd4bd082458a1780f" - integrity sha512-fQNQyFoeZA7b66jvhGaUYPzsS6gmPRJa6RcEpw2onP41S+IyLO6egubUu/qq8Hn1ebgJe/0Pc4fzkgv6MfV3tQ== - dependencies: - "@cspell/cspell-pipe" "8.9.0" - "@cspell/cspell-types" "8.9.0" - gensequence "^7.0.0" - -cspell@^8.4.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.9.0.tgz#f8a1faa99cc266b94b38744708417ea58e136ffd" - integrity sha512-lDYu5p/XU3rqiNjMV46s92yJ7SfVyzAy03OtCJ94fopegZwFLjqZvqoy509ccP/0sHmiv83oTed8LP6Fm3kjpw== - dependencies: - "@cspell/cspell-json-reporter" "8.9.0" - "@cspell/cspell-pipe" "8.9.0" - "@cspell/cspell-types" "8.9.0" - "@cspell/dynamic-import" "8.9.0" - chalk "^5.3.0" - chalk-template "^1.1.0" - commander "^12.1.0" - cspell-gitignore "8.9.0" - cspell-glob "8.9.0" - cspell-io "8.9.0" - cspell-lib "8.9.0" - fast-glob "^3.3.2" - fast-json-stable-stringify "^2.1.0" - file-entry-cache "^8.0.0" - get-stdin "^9.0.0" - semver "^7.6.2" - strip-ansi "^7.1.0" - vscode-uri "^3.0.8" - -dargs@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" - integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== - -data-uri-to-buffer@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" - integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== - -data-view-buffer@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" - integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== - dependencies: - call-bind "^1.0.6" - es-errors "^1.3.0" - is-data-view "^1.0.1" - -data-view-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" - integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== - dependencies: - call-bind "^1.0.7" - es-errors "^1.3.0" - is-data-view "^1.0.1" - -data-view-byte-offset@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" - integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== - dependencies: - call-bind "^1.0.6" - es-errors "^1.3.0" - is-data-view "^1.0.1" - -debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@~4.3.4: - version "4.3.5" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" - integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== - dependencies: - ms "2.1.2" - -decamelize-keys@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" - integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== - dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -dedent@^1.0.0: - version "1.5.3" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" - integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== - -deep-is@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deepmerge@^4.2.2: - version "4.3.1" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" - integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== - -defaults@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" - integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== - dependencies: - clone "^1.0.2" - -define-data-property@^1.0.1, define-data-property@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" - integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - gopd "^1.0.1" - -define-properties@^1.2.0, define-properties@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" - integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== - dependencies: - define-data-property "^1.0.1" - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -diff-sequences@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" - integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -dot-prop@^5.1.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" - integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== - dependencies: - is-obj "^2.0.0" - -easy-table@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/easy-table/-/easy-table-1.2.0.tgz#ba9225d7138fee307bfd4f0b5bc3c04bdc7c54eb" - integrity sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww== - dependencies: - ansi-regex "^5.0.1" - optionalDependencies: - wcwidth "^1.0.1" - -electron-to-chromium@^1.4.796: - version "1.4.805" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.805.tgz#1d526e384c20944a3c68f618f9774edc384c4733" - integrity sha512-8W4UJwX/w9T0QSzINJckTKG6CYpAUTqsaWcWIsdud3I1FYJcMgW9QqT1/4CBff/pP/TihWh13OmiyY8neto6vw== - -elliptic@6.5.4: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - -emittery@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" - integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== - -emoji-regex@^10.3.0: - version "10.3.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.3.0.tgz#76998b9268409eb3dae3de989254d456e70cfe23" - integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -env-paths@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz#2f1e89c2f6dbd3408e1b1711dd82d62e317f58da" - integrity sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2: - version "1.23.3" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" - integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== - dependencies: - array-buffer-byte-length "^1.0.1" - arraybuffer.prototype.slice "^1.0.3" - available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - data-view-buffer "^1.0.1" - data-view-byte-length "^1.0.1" - data-view-byte-offset "^1.0.0" - es-define-property "^1.0.0" - es-errors "^1.3.0" - es-object-atoms "^1.0.0" - es-set-tostringtag "^2.0.3" - es-to-primitive "^1.2.1" - function.prototype.name "^1.1.6" - get-intrinsic "^1.2.4" - get-symbol-description "^1.0.2" - globalthis "^1.0.3" - gopd "^1.0.1" - has-property-descriptors "^1.0.2" - has-proto "^1.0.3" - has-symbols "^1.0.3" - hasown "^2.0.2" - internal-slot "^1.0.7" - is-array-buffer "^3.0.4" - is-callable "^1.2.7" - is-data-view "^1.0.1" - is-negative-zero "^2.0.3" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.3" - is-string "^1.0.7" - is-typed-array "^1.1.13" - is-weakref "^1.0.2" - object-inspect "^1.13.1" - object-keys "^1.1.1" - object.assign "^4.1.5" - regexp.prototype.flags "^1.5.2" - safe-array-concat "^1.1.2" - safe-regex-test "^1.0.3" - string.prototype.trim "^1.2.9" - string.prototype.trimend "^1.0.8" - string.prototype.trimstart "^1.0.8" - typed-array-buffer "^1.0.2" - typed-array-byte-length "^1.0.1" - typed-array-byte-offset "^1.0.2" - typed-array-length "^1.0.6" - unbox-primitive "^1.0.2" - which-typed-array "^1.1.15" - -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" - -es-errors@^1.2.1, es-errors@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" - integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== - -es-object-atoms@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" - integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== - dependencies: - es-errors "^1.3.0" - -es-set-tostringtag@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" - integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== - dependencies: - get-intrinsic "^1.2.4" - has-tostringtag "^1.0.2" - hasown "^2.0.1" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -esbuild@^0.20.1: - version "0.20.2" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" - integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== - optionalDependencies: - "@esbuild/aix-ppc64" "0.20.2" - "@esbuild/android-arm" "0.20.2" - "@esbuild/android-arm64" "0.20.2" - "@esbuild/android-x64" "0.20.2" - "@esbuild/darwin-arm64" "0.20.2" - "@esbuild/darwin-x64" "0.20.2" - "@esbuild/freebsd-arm64" "0.20.2" - "@esbuild/freebsd-x64" "0.20.2" - "@esbuild/linux-arm" "0.20.2" - "@esbuild/linux-arm64" "0.20.2" - "@esbuild/linux-ia32" "0.20.2" - "@esbuild/linux-loong64" "0.20.2" - "@esbuild/linux-mips64el" "0.20.2" - "@esbuild/linux-ppc64" "0.20.2" - "@esbuild/linux-riscv64" "0.20.2" - "@esbuild/linux-s390x" "0.20.2" - "@esbuild/linux-x64" "0.20.2" - "@esbuild/netbsd-x64" "0.20.2" - "@esbuild/openbsd-x64" "0.20.2" - "@esbuild/sunos-x64" "0.20.2" - "@esbuild/win32-arm64" "0.20.2" - "@esbuild/win32-ia32" "0.20.2" - "@esbuild/win32-x64" "0.20.2" - -esbuild@~0.21.4: - version "0.21.5" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" - integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== - optionalDependencies: - "@esbuild/aix-ppc64" "0.21.5" - "@esbuild/android-arm" "0.21.5" - "@esbuild/android-arm64" "0.21.5" - "@esbuild/android-x64" "0.21.5" - "@esbuild/darwin-arm64" "0.21.5" - "@esbuild/darwin-x64" "0.21.5" - "@esbuild/freebsd-arm64" "0.21.5" - "@esbuild/freebsd-x64" "0.21.5" - "@esbuild/linux-arm" "0.21.5" - "@esbuild/linux-arm64" "0.21.5" - "@esbuild/linux-ia32" "0.21.5" - "@esbuild/linux-loong64" "0.21.5" - "@esbuild/linux-mips64el" "0.21.5" - "@esbuild/linux-ppc64" "0.21.5" - "@esbuild/linux-riscv64" "0.21.5" - "@esbuild/linux-s390x" "0.21.5" - "@esbuild/linux-x64" "0.21.5" - "@esbuild/netbsd-x64" "0.21.5" - "@esbuild/openbsd-x64" "0.21.5" - "@esbuild/sunos-x64" "0.21.5" - "@esbuild/win32-arm64" "0.21.5" - "@esbuild/win32-ia32" "0.21.5" - "@esbuild/win32-x64" "0.21.5" - -escalade@^3.1.1, escalade@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" - integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -eslint-config-prettier@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f" - integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== - -eslint-plugin-prettier@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz#17cfade9e732cef32b5f5be53bd4e07afd8e67e1" - integrity sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw== - dependencies: - prettier-linter-helpers "^1.0.0" - synckit "^0.8.6" - -eslint-plugin-sonarjs@^0.24.0: - version "0.24.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.24.0.tgz#b594ccb9b1d6123edd3c3fe3a45b4392e14932d7" - integrity sha512-87zp50mbbNrSTuoEOebdRQBPa0mdejA5UEjyuScyIw8hEpEjfWP89Qhkq5xVZfVyVSRQKZc9alVm7yRKQvvUmg== - -eslint-scope@^7.2.2: - version "7.2.2" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" - integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: - version "3.4.3" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" - integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== - -eslint@^8.56.0: - version "8.57.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" - integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.6.1" - "@eslint/eslintrc" "^2.1.4" - "@eslint/js" "8.57.0" - "@humanwhocodes/config-array" "^0.11.14" - "@humanwhocodes/module-importer" "^1.0.1" - "@nodelib/fs.walk" "^1.2.8" - "@ungap/structured-clone" "^1.2.0" - ajv "^6.12.4" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.2.2" - eslint-visitor-keys "^3.4.3" - espree "^9.6.1" - esquery "^1.4.2" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - find-up "^5.0.0" - glob-parent "^6.0.2" - globals "^13.19.0" - graphemer "^1.4.0" - ignore "^5.2.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - is-path-inside "^3.0.3" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.3" - strip-ansi "^6.0.1" - text-table "^0.2.0" - -espree@^9.6.0, espree@^9.6.1: - version "9.6.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" - integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== - dependencies: - acorn "^8.9.0" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.1" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.4.2: - version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" - integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^5.1.0, estraverse@^5.2.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -eventemitter3@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" - integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== - -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -execa@~8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c" - integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^8.0.1" - human-signals "^5.0.0" - is-stream "^3.0.0" - merge-stream "^2.0.0" - npm-run-path "^5.1.0" - onetime "^6.0.0" - signal-exit "^4.1.0" - strip-final-newline "^3.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== - -expect@^29.0.0, expect@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" - integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== - dependencies: - "@jest/expect-utils" "^29.7.0" - jest-get-type "^29.6.3" - jest-matcher-utils "^29.7.0" - jest-message-util "^29.7.0" - jest-util "^29.7.0" - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-diff@^1.1.2: - version "1.3.0" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" - integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== - -fast-equals@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/fast-equals/-/fast-equals-5.0.1.tgz#a4eefe3c5d1c0d021aeed0bc10ba5e0c12ee405d" - integrity sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ== - -fast-glob@^3.2.9, fast-glob@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" - integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fastq@^1.15.0, fastq@^1.6.0: - version "1.17.1" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" - integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== - dependencies: - reusify "^1.0.4" - -fb-watchman@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" - integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== - dependencies: - bser "2.1.1" - -fetch-blob@^3.1.2, fetch-blob@^3.1.4: - version "3.2.0" - resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" - integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== - dependencies: - node-domexception "^1.0.0" - web-streams-polyfill "^3.0.3" - -file-entry-cache@8.0.0, file-entry-cache@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f" - integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== - dependencies: - flat-cache "^4.0.0" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -fill-range@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" - integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== - dependencies: - to-regex-range "^5.0.1" - -filter-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" - integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== - -find-up-simple@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/find-up-simple/-/find-up-simple-1.0.0.tgz#21d035fde9fdbd56c8f4d2f63f32fd93a1cfc368" - integrity sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw== - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -flat-cache@^3.0.4: - version "3.2.0" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" - integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== - dependencies: - flatted "^3.2.9" - keyv "^4.5.3" - rimraf "^3.0.2" - -flat-cache@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c" - integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== - dependencies: - flatted "^3.2.9" - keyv "^4.5.4" - -flatted@^3.2.9: - version "3.3.1" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" - integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== - -follow-redirects@^1.15.6: - version "1.15.6" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" - integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -formdata-polyfill@^4.0.10: - version "4.0.10" - resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" - integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== - dependencies: - fetch-blob "^3.1.2" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@^2.3.2, fsevents@~2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - -function-bind@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" - integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== - -function.prototype.name@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" - integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - functions-have-names "^1.2.3" - -functions-have-names@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -gensequence@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/gensequence/-/gensequence-7.0.0.tgz#bb6aedec8ff665e3a6c42f92823121e3a6ea7718" - integrity sha512-47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ== - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-east-asian-width@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz#5e6ebd9baee6fb8b7b6bd505221065f0cd91f64e" - integrity sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA== - -get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== - dependencies: - es-errors "^1.3.0" - function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-stdin@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-9.0.0.tgz#3983ff82e03d56f1b2ea0d3e60325f39d703a575" - integrity sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA== - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-stream@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2" - integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== - -get-symbol-description@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" - integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== - dependencies: - call-bind "^1.0.5" - es-errors "^1.3.0" - get-intrinsic "^1.2.4" - -get-tsconfig@^4.7.5: - version "4.7.5" - resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.5.tgz#5e012498579e9a6947511ed0cd403272c7acbbaf" - integrity sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw== - dependencies: - resolve-pkg-maps "^1.0.0" - -git-raw-commits@^2.0.11: - version "2.0.11" - resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" - integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== - dependencies: - dargs "^7.0.0" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - -glob-parent@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-parent@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== - dependencies: - is-glob "^4.0.3" - -glob@^7.1.3, glob@^7.1.4: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -global-directory@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/global-directory/-/global-directory-4.0.1.tgz#4d7ac7cfd2cb73f304c53b8810891748df5e361e" - integrity sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q== - dependencies: - ini "4.1.1" - -global-dirs@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" - integrity sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg== - dependencies: - ini "^1.3.4" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^13.19.0: - version "13.24.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" - integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== - dependencies: - type-fest "^0.20.2" - -globalthis@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" - integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== - dependencies: - define-properties "^1.2.1" - gopd "^1.0.1" - -globby@^11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - -graceful-fs@^4.1.2, graceful-fs@^4.2.9: - version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== - -graphemer@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" - integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-own-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-own-prop/-/has-own-prop-2.0.0.tgz#f0f95d58f65804f5d218db32563bb85b8e0417af" - integrity sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ== - -has-own-property@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/has-own-property/-/has-own-property-0.1.0.tgz#992b0f5bb3a25416f8d4d0cde53f497b9d7b1ea5" - integrity sha512-14qdBKoonU99XDhWcFKZTShK+QV47qU97u8zzoVo9cL5TZ3BmBHXogItSt9qJjR0KUMFRhcCW8uGIGl8nkl7Aw== - -has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" - integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== - dependencies: - es-define-property "^1.0.0" - -has-proto@^1.0.1, has-proto@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== - -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" - integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== - dependencies: - has-symbols "^1.0.3" - -hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - -hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== - dependencies: - function-bind "^1.1.2" - -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -human-signals@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28" - integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== - -husky@^9.0.11: - version "9.0.11" - resolved "https://registry.yarnpkg.com/husky/-/husky-9.0.11.tgz#fc91df4c756050de41b3e478b2158b87c1e79af9" - integrity sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw== - -identity-function@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/identity-function/-/identity-function-1.0.0.tgz#bea1159f0985239be3ca348edf40ce2f0dd2c21d" - integrity sha512-kNrgUK0qI+9qLTBidsH85HjDLpZfrrS0ElquKKe/fJFdB3D7VeKdXXEvOPDUHSHOzdZKCAAaQIWWyp0l2yq6pw== - -ignore@^5.1.8, ignore@^5.2.0, ignore@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" - integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== - -import-fresh@^3.0.0, import-fresh@^3.2.1, import-fresh@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -import-meta-resolve@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz#f9db8bead9fafa61adb811db77a2bf22c5399706" - integrity sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw== - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.3, inherits@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1" - integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g== - -ini@^1.3.4: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -internal-slot@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" - integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== - dependencies: - es-errors "^1.3.0" - hasown "^2.0.0" - side-channel "^1.0.4" - -is-array-buffer@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" - integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.1" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - -is-core-module@^2.13.0, is-core-module@^2.5.0: - version "2.13.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" - integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== - dependencies: - hasown "^2.0.0" - -is-data-view@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" - integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== - dependencies: - is-typed-array "^1.1.13" - -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-fullwidth-code-point@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" - integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== - -is-fullwidth-code-point@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz#9609efced7c2f97da7b60145ef481c787c7ba704" - integrity sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA== - dependencies: - get-east-asian-width "^1.0.0" - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-iterable@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-iterable/-/is-iterable-1.1.1.tgz#71f9aa6f113e1d968ebe1d41cff4c8fb23a817bc" - integrity sha512-EdOZCr0NsGE00Pot+x1ZFx9MJK3C6wy91geZpXwvwexDLJvA4nzYyZf7r+EIwSeVsOLDdBz7ATg9NqKTzuNYuQ== - -is-negative-zero@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" - integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-number@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" - integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-obj@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== - -is-path-inside@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== - -is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" - integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== - dependencies: - call-bind "^1.0.7" - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" - integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-text-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-2.0.0.tgz#b2484e2b720a633feb2e85b67dc193ff72c75636" - integrity sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw== - dependencies: - text-extensions "^2.0.0" - -is-typed-array@^1.1.13: - version "1.1.13" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" - integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== - dependencies: - which-typed-array "^1.1.14" - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - -isarray@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" - integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" - integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== - -istanbul-lib-instrument@^5.0.4: - version "5.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" - integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== - dependencies: - "@babel/core" "^7.12.3" - "@babel/parser" "^7.14.7" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.2.0" - semver "^6.3.0" - -istanbul-lib-instrument@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz#91655936cf7380e4e473383081e38478b69993b1" - integrity sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw== - dependencies: - "@babel/core" "^7.23.9" - "@babel/parser" "^7.23.9" - "@istanbuljs/schema" "^0.1.3" - istanbul-lib-coverage "^3.2.0" - semver "^7.5.4" - -istanbul-lib-report@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" - integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^4.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" - integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.1.3: - version "3.1.7" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" - integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -iterable-lookahead@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/iterable-lookahead/-/iterable-lookahead-1.0.0.tgz#896dfcb78680bdb50036e97edb034c8b68a9737f" - integrity sha512-hJnEP2Xk4+44DDwJqUQGdXal5VbyeWLaPyDl2AQc242Zr7iqz4DgpQOrEzglWVMGHMDCkguLHEKxd1+rOsmgSQ== - -jest-changed-files@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" - integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== - dependencies: - execa "^5.0.0" - jest-util "^29.7.0" - p-limit "^3.1.0" - -jest-circus@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" - integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== - dependencies: - "@jest/environment" "^29.7.0" - "@jest/expect" "^29.7.0" - "@jest/test-result" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - dedent "^1.0.0" - is-generator-fn "^2.0.0" - jest-each "^29.7.0" - jest-matcher-utils "^29.7.0" - jest-message-util "^29.7.0" - jest-runtime "^29.7.0" - jest-snapshot "^29.7.0" - jest-util "^29.7.0" - p-limit "^3.1.0" - pretty-format "^29.7.0" - pure-rand "^6.0.0" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-cli@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" - integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== - dependencies: - "@jest/core" "^29.7.0" - "@jest/test-result" "^29.7.0" - "@jest/types" "^29.6.3" - chalk "^4.0.0" - create-jest "^29.7.0" - exit "^0.1.2" - import-local "^3.0.2" - jest-config "^29.7.0" - jest-util "^29.7.0" - jest-validate "^29.7.0" - yargs "^17.3.1" - -jest-config@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" - integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== - dependencies: - "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^29.7.0" - "@jest/types" "^29.6.3" - babel-jest "^29.7.0" - chalk "^4.0.0" - ci-info "^3.2.0" - deepmerge "^4.2.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-circus "^29.7.0" - jest-environment-node "^29.7.0" - jest-get-type "^29.6.3" - jest-regex-util "^29.6.3" - jest-resolve "^29.7.0" - jest-runner "^29.7.0" - jest-util "^29.7.0" - jest-validate "^29.7.0" - micromatch "^4.0.4" - parse-json "^5.2.0" - pretty-format "^29.7.0" - slash "^3.0.0" - strip-json-comments "^3.1.1" - -jest-diff@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" - integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== - dependencies: - chalk "^4.0.0" - diff-sequences "^29.6.3" - jest-get-type "^29.6.3" - pretty-format "^29.7.0" - -jest-docblock@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" - integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== - dependencies: - detect-newline "^3.0.0" - -jest-each@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" - integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== - dependencies: - "@jest/types" "^29.6.3" - chalk "^4.0.0" - jest-get-type "^29.6.3" - jest-util "^29.7.0" - pretty-format "^29.7.0" - -jest-environment-node@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" - integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== - dependencies: - "@jest/environment" "^29.7.0" - "@jest/fake-timers" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/node" "*" - jest-mock "^29.7.0" - jest-util "^29.7.0" - -jest-get-type@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" - integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== - -jest-haste-map@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" - integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== - dependencies: - "@jest/types" "^29.6.3" - "@types/graceful-fs" "^4.1.3" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.9" - jest-regex-util "^29.6.3" - jest-util "^29.7.0" - jest-worker "^29.7.0" - micromatch "^4.0.4" - walker "^1.0.8" - optionalDependencies: - fsevents "^2.3.2" - -jest-junit@16.0.0: - version "16.0.0" - resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-16.0.0.tgz#d838e8c561cf9fdd7eb54f63020777eee4136785" - integrity sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ== - dependencies: - mkdirp "^1.0.4" - strip-ansi "^6.0.1" - uuid "^8.3.2" - xml "^1.0.1" - -jest-leak-detector@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" - integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== - dependencies: - jest-get-type "^29.6.3" - pretty-format "^29.7.0" - -jest-matcher-utils@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" - integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== - dependencies: - chalk "^4.0.0" - jest-diff "^29.7.0" - jest-get-type "^29.6.3" - pretty-format "^29.7.0" - -jest-message-util@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" - integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.6.3" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^29.7.0" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-mock@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" - integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== - dependencies: - "@jest/types" "^29.6.3" - "@types/node" "*" - jest-util "^29.7.0" - -jest-pnp-resolver@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" - integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== - -jest-regex-util@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" - integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== - -jest-resolve-dependencies@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" - integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== - dependencies: - jest-regex-util "^29.6.3" - jest-snapshot "^29.7.0" - -jest-resolve@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" - integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== - dependencies: - chalk "^4.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.7.0" - jest-pnp-resolver "^1.2.2" - jest-util "^29.7.0" - jest-validate "^29.7.0" - resolve "^1.20.0" - resolve.exports "^2.0.0" - slash "^3.0.0" - -jest-runner@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" - integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== - dependencies: - "@jest/console" "^29.7.0" - "@jest/environment" "^29.7.0" - "@jest/test-result" "^29.7.0" - "@jest/transform" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.13.1" - graceful-fs "^4.2.9" - jest-docblock "^29.7.0" - jest-environment-node "^29.7.0" - jest-haste-map "^29.7.0" - jest-leak-detector "^29.7.0" - jest-message-util "^29.7.0" - jest-resolve "^29.7.0" - jest-runtime "^29.7.0" - jest-util "^29.7.0" - jest-watcher "^29.7.0" - jest-worker "^29.7.0" - p-limit "^3.1.0" - source-map-support "0.5.13" - -jest-runtime@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" - integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== - dependencies: - "@jest/environment" "^29.7.0" - "@jest/fake-timers" "^29.7.0" - "@jest/globals" "^29.7.0" - "@jest/source-map" "^29.6.3" - "@jest/test-result" "^29.7.0" - "@jest/transform" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/node" "*" - chalk "^4.0.0" - cjs-module-lexer "^1.0.0" - collect-v8-coverage "^1.0.0" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-haste-map "^29.7.0" - jest-message-util "^29.7.0" - jest-mock "^29.7.0" - jest-regex-util "^29.6.3" - jest-resolve "^29.7.0" - jest-snapshot "^29.7.0" - jest-util "^29.7.0" - slash "^3.0.0" - strip-bom "^4.0.0" - -jest-snapshot@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" - integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== - dependencies: - "@babel/core" "^7.11.6" - "@babel/generator" "^7.7.2" - "@babel/plugin-syntax-jsx" "^7.7.2" - "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/types" "^7.3.3" - "@jest/expect-utils" "^29.7.0" - "@jest/transform" "^29.7.0" - "@jest/types" "^29.6.3" - babel-preset-current-node-syntax "^1.0.0" - chalk "^4.0.0" - expect "^29.7.0" - graceful-fs "^4.2.9" - jest-diff "^29.7.0" - jest-get-type "^29.6.3" - jest-matcher-utils "^29.7.0" - jest-message-util "^29.7.0" - jest-util "^29.7.0" - natural-compare "^1.4.0" - pretty-format "^29.7.0" - semver "^7.5.3" - -jest-util@^29.0.0, jest-util@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" - integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== - dependencies: - "@jest/types" "^29.6.3" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-validate@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" - integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== - dependencies: - "@jest/types" "^29.6.3" - camelcase "^6.2.0" - chalk "^4.0.0" - jest-get-type "^29.6.3" - leven "^3.1.0" - pretty-format "^29.7.0" - -jest-watcher@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" - integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== - dependencies: - "@jest/test-result" "^29.7.0" - "@jest/types" "^29.6.3" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - emittery "^0.13.1" - jest-util "^29.7.0" - string-length "^4.0.1" - -jest-worker@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" - integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== - dependencies: - "@types/node" "*" - jest-util "^29.7.0" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" - integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== - dependencies: - "@jest/core" "^29.7.0" - "@jest/types" "^29.6.3" - import-local "^3.0.2" - jest-cli "^29.7.0" - -jiti@^1.19.1, jiti@^1.21.0: - version "1.21.6" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" - integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== - -js-sha3@0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" - integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - -json-buffer@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" - integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== - -json-parse-better-errors@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== - -json5@^2.2.2, json5@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - -jsonparse@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== - -keyv@^4.5.3, keyv@^4.5.4: - version "4.5.4" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" - integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== - dependencies: - json-buffer "3.0.1" - -kind-of@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -knip@^5.0.1: - version "5.21.2" - resolved "https://registry.yarnpkg.com/knip/-/knip-5.21.2.tgz#0b25001ee645882784c652cd14c3a3e7ff50ec37" - integrity sha512-V8bzHWjQyhkN0cxajxyHqaD8CPOkNtSwo4+Zue3z//4fbWO79xXLVp61fuaaTcT9O7I7E2ZjuHENtRkBrjSzCg== - dependencies: - "@ericcornelissen/bash-parser" "0.5.3" - "@nodelib/fs.walk" "2.0.0" - "@snyk/github-codeowners" "1.1.0" - easy-table "1.2.0" - fast-glob "^3.3.2" - file-entry-cache "8.0.0" - jiti "^1.21.0" - js-yaml "^4.1.0" - minimist "^1.2.8" - picocolors "^1.0.0" - picomatch "^4.0.1" - pretty-ms "^9.0.0" - resolve "^1.22.8" - smol-toml "^1.1.4" - strip-json-comments "5.0.1" - summary "2.1.0" - tsconfig-paths "^4.2.0" - zod "^3.22.4" - zod-validation-error "^3.0.3" - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -lilconfig@~3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" - integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -lint-staged@^15.2.2: - version "15.2.7" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-15.2.7.tgz#97867e29ed632820c0fb90be06cd9ed384025649" - integrity sha512-+FdVbbCZ+yoh7E/RosSdqKJyUM2OEjTciH0TFNkawKgvFp1zbGlEC39RADg+xKBG1R4mhoH2j85myBQZ5wR+lw== - dependencies: - chalk "~5.3.0" - commander "~12.1.0" - debug "~4.3.4" - execa "~8.0.1" - lilconfig "~3.1.1" - listr2 "~8.2.1" - micromatch "~4.0.7" - pidtree "~0.6.0" - string-argv "~0.3.2" - yaml "~2.4.2" - -listr2@~8.2.1: - version "8.2.1" - resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.2.1.tgz#06a1a6efe85f23c5324180d7c1ddbd96b5eefd6d" - integrity sha512-irTfvpib/rNiD637xeevjO2l3Z5loZmuaRi0L0YE5LfijwVY96oyVn0DFD3o/teAok7nfobMG1THvvcHh/BP6g== - dependencies: - cli-truncate "^4.0.0" - colorette "^2.0.20" - eventemitter3 "^5.0.1" - log-update "^6.0.0" - rfdc "^1.3.1" - wrap-ansi "^9.0.0" - -load-json-file@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" - integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== - dependencies: - graceful-fs "^4.1.2" - parse-json "^4.0.0" - pify "^3.0.0" - strip-bom "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lodash.camelcase@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== - -lodash.curry@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" - integrity sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA== - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash.isfunction@^3.0.9: - version "3.0.9" - resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" - integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw== - -lodash.isplainobject@^4.0.6: - version "4.0.6" - resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" - integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== - -lodash.kebabcase@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" - integrity sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== - -lodash.memoize@4.x: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== - -lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash.mergewith@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" - integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== - -lodash.snakecase@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" - integrity sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw== - -lodash.startcase@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" - integrity sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== - -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== - -lodash.upperfirst@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" - integrity sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== - -lodash@^4.17.15: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -log-update@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/log-update/-/log-update-6.0.0.tgz#0ddeb7ac6ad658c944c1de902993fce7c33f5e59" - integrity sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw== - dependencies: - ansi-escapes "^6.2.0" - cli-cursor "^4.0.0" - slice-ansi "^7.0.0" - strip-ansi "^7.1.0" - wrap-ansi "^9.0.0" - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -magic-string@^0.16.0: - version "0.16.0" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.16.0.tgz#970ebb0da7193301285fb1aa650f39bdd81eb45a" - integrity sha512-c4BEos3y6G2qO0B9X7K0FVLOPT9uGrjYwYRLFmDqyl5YMboUviyecnXWp94fJTSMwPw2/sf+CEYt5AGpmklkkQ== - dependencies: - vlq "^0.2.1" - -make-dir@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" - integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== - dependencies: - semver "^7.5.3" - -make-error@1.x, make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -makeerror@1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" - integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== - dependencies: - tmpl "1.0.5" - -map-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== - -map-obj@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" - integrity sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ== - -map-obj@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" - integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== - -memorystream@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" - integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== - -meow@^12.0.1: - version "12.1.1" - resolved "https://registry.yarnpkg.com/meow/-/meow-12.1.1.tgz#e558dddbab12477b69b2e9a2728c327f191bace6" - integrity sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw== - -meow@^8.0.0: - version "8.1.2" - resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" - integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -micromatch@^4.0.4, micromatch@^4.0.7, micromatch@~4.0.7: - version "4.0.7" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" - integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== - dependencies: - braces "^3.0.3" - picomatch "^2.3.1" - -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-fn@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" - integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== - -minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^9.0.4: - version "9.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51" - integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw== - dependencies: - brace-expansion "^2.0.1" - -minimist-options@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@^1.2.6, minimist@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -node-domexception@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - -node-fetch@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b" - integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA== - dependencies: - data-uri-to-buffer "^4.0.0" - fetch-blob "^3.1.4" - formdata-polyfill "^4.0.10" - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== - -node-releases@^2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" - integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== - -normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" - integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== - dependencies: - hosted-git-info "^4.0.1" - is-core-module "^2.5.0" - semver "^7.3.4" - validate-npm-package-license "^3.0.1" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-all@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" - integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== - dependencies: - ansi-styles "^3.2.1" - chalk "^2.4.1" - cross-spawn "^6.0.5" - memorystream "^0.3.1" - minimatch "^3.0.4" - pidtree "^0.3.0" - read-pkg "^3.0.0" - shell-quote "^1.6.1" - string.prototype.padend "^3.0.0" - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -npm-run-path@^5.1.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.3.0.tgz#e23353d0ebb9317f174e93417e4a4d82d0249e9f" - integrity sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ== - dependencies: - path-key "^4.0.0" - -object-inspect@^1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" - integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object-pairs@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/object-pairs/-/object-pairs-0.1.0.tgz#8276eed81d60b8549d69c5f73a682ab9da4ff32f" - integrity sha512-3ECr6K831I4xX/Mduxr9UC+HPOz/d6WKKYj9p4cmC8Lg8p7g8gitzsxNX5IWlSIgFWN/a4JgrJaoAMKn20oKwA== - -object-values@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/object-values/-/object-values-1.0.0.tgz#72af839630119e5b98c3b02bb8c27e3237158105" - integrity sha512-+8hwcz/JnQ9EpLIXzN0Rs7DLsBpJNT/xYehtB/jU93tHYr5BFEO8E+JGQNOSqE7opVzz5cGksKFHt7uUJVLSjQ== - -object.assign@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" - integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== - dependencies: - call-bind "^1.0.5" - define-properties "^1.2.1" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -once@^1.3.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -onetime@^5.1.0, onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -onetime@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" - integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== - dependencies: - mimic-fn "^4.0.0" - -optionator@^0.9.3: - version "0.9.4" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" - integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.5" - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2, p-limit@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parent-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-2.0.0.tgz#fa71f88ff1a50c27e15d8ff74e0e3a9523bf8708" - integrity sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg== - dependencies: - callsites "^3.1.0" - -parse-json@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== - dependencies: - error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" - -parse-json@^5.0.0, parse-json@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse-ms@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-4.0.0.tgz#c0c058edd47c2a590151a718990533fd62803df4" - integrity sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-key@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" - integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-type@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" - integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== - dependencies: - pify "^3.0.0" - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -picocolors@^1.0.0, picocolors@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" - integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== - -picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -picomatch@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab" - integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== - -pidtree@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" - integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== - -pidtree@~0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" - integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== - -pify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== - -pirates@^4.0.4: - version "4.0.6" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" - integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -possible-typed-array-names@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" - integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - -prettier@^3.2.5: - version "3.3.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.2.tgz#03ff86dc7c835f2d2559ee76876a3914cec4a90a" - integrity sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA== - -pretty-format@^29.0.0, pretty-format@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" - integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== - dependencies: - "@jest/schemas" "^29.6.3" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -pretty-ms@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-9.0.0.tgz#53c57f81171c53be7ce3fd20bdd4265422bc5929" - integrity sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng== - dependencies: - parse-ms "^4.0.0" - -prompts@^2.0.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -proxy-from-env@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" - integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== - -punycode@^2.1.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" - integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== - -pure-rand@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" - integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== - -react-is@^18.0.0: - version "18.3.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" - integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" - integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== - dependencies: - load-json-file "^4.0.0" - normalize-package-data "^2.3.2" - path-type "^3.0.0" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -readable-stream@3, readable-stream@^3.0.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -regenerate-unicode-properties@^10.1.0: - version "10.1.1" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" - integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== - dependencies: - regenerate "^1.4.2" - -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - -regenerator-runtime@^0.14.0: - version "0.14.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" - integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== - -regenerator-transform@^0.15.2: - version "0.15.2" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" - integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== - dependencies: - "@babel/runtime" "^7.8.4" - -regexp.prototype.flags@^1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" - integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== - dependencies: - call-bind "^1.0.6" - define-properties "^1.2.1" - es-errors "^1.3.0" - set-function-name "^2.0.1" - -regexpu-core@^5.3.1: - version "5.3.2" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" - integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== - dependencies: - "@babel/regjsgen" "^0.8.0" - regenerate "^1.4.2" - regenerate-unicode-properties "^10.1.0" - regjsparser "^0.9.1" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.1.0" - -regjsparser@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" - integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== - dependencies: - jsesc "~0.5.0" - -repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@5.0.0, resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-global@1.0.0, resolve-global@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255" - integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw== - dependencies: - global-dirs "^0.1.1" - -resolve-pkg-maps@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" - integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== - -resolve.exports@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" - integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== - -resolve@^1.10.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.8: - version "1.22.8" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" - integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== - dependencies: - is-core-module "^2.13.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -restore-cursor@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-4.0.0.tgz#519560a4318975096def6e609d44100edaa4ccb9" - integrity sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -reverse-arguments@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/reverse-arguments/-/reverse-arguments-1.0.0.tgz#c28095a3a921ac715d61834ddece9027992667cd" - integrity sha512-/x8uIPdTafBqakK0TmPNJzgkLP+3H+yxpUJhCQHsLBg1rYEVNR2D8BRYNWQhVBjyOd7oo1dZRVzIkwMY2oqfYQ== - -rfdc@^1.3.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca" - integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== - -rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -run-parallel@^1.1.9, run-parallel@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -safe-array-concat@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" - integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== - dependencies: - call-bind "^1.0.7" - get-intrinsic "^1.2.4" - has-symbols "^1.0.3" - isarray "^2.0.5" - -safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-regex-test@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" - integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== - dependencies: - call-bind "^1.0.6" - es-errors "^1.3.0" - is-regex "^1.1.4" - -"semver@2 || 3 || 4 || 5", semver@^5.5.0: - version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" - integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== - -semver@7.6.0: - version "7.6.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" - integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== - dependencies: - lru-cache "^6.0.0" - -semver@^6.3.0, semver@^6.3.1: - version "6.3.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" - integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== - -semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.2: - version "7.6.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13" - integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== - -set-function-length@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" - integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== - dependencies: - define-data-property "^1.1.4" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - gopd "^1.0.1" - has-property-descriptors "^1.0.2" - -set-function-name@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" - integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== - dependencies: - define-data-property "^1.1.4" - es-errors "^1.3.0" - functions-have-names "^1.2.3" - has-property-descriptors "^1.0.2" - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== - dependencies: - shebang-regex "^1.0.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shell-quote-word@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/shell-quote-word/-/shell-quote-word-1.0.1.tgz#e2bdfd22d599fd68886491677e38f560f9d469c9" - integrity sha512-lT297f1WLAdq0A4O+AknIFRP6kkiI3s8C913eJ0XqBxJbZPGWUNkRQk2u8zk4bEAjUJ5i+fSLwB6z1HzeT+DEg== - -shell-quote@^1.6.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== - -side-channel@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" - integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== - dependencies: - call-bind "^1.0.7" - es-errors "^1.3.0" - get-intrinsic "^1.2.4" - object-inspect "^1.13.1" - -signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signal-exit@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" - integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slice-ansi@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" - integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== - dependencies: - ansi-styles "^6.0.0" - is-fullwidth-code-point "^4.0.0" - -slice-ansi@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.0.tgz#cd6b4655e298a8d1bdeb04250a433094b347b9a9" - integrity sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg== - dependencies: - ansi-styles "^6.2.1" - is-fullwidth-code-point "^5.0.0" - -smol-toml@^1.1.4: - version "1.2.1" - resolved "https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.2.1.tgz#6216334548763d4aac76cafff19f8914937ee13a" - integrity sha512-OtZKrVrGIT+m++lxyF0z5n68nkwdgZotPhy89bfA4T7nSWe0xeQtfbjM1z5VLTilJdWXH46g8i0oAcpQNkzZTg== - -source-map-support@0.5.13: - version "0.5.13" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" - integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0, source-map@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -spdx-correct@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" - integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" - integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.18" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz#22aa922dcf2f2885a6494a261f2d8b75345d0326" - integrity sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ== - -split2@^3.0.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" - integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== - dependencies: - readable-stream "^3.0.0" - -split2@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/split2/-/split2-4.2.0.tgz#c9c5920904d148bab0b9f67145f245a86aadbfa4" - integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -stack-utils@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" - integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== - dependencies: - escape-string-regexp "^2.0.0" - -string-argv@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" - integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== - -string-length@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" - integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.1.0.tgz#d994252935224729ea3719c49f7206dc9c46550a" - integrity sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw== - dependencies: - emoji-regex "^10.3.0" - get-east-asian-width "^1.0.0" - strip-ansi "^7.1.0" - -string.fromcodepoint@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/string.fromcodepoint/-/string.fromcodepoint-0.2.1.tgz#8d978333c0bc92538f50f383e4888f3e5619d653" - integrity sha512-n69H31OnxSGSZyZbgBlvYIXlrMhJQ0dQAX1js1QDhpaUH6zmU3QYlj07bCwCNlPOu3oRXIubGPl2gDGnHsiCqg== - -string.prototype.padend@^3.0.0: - version "3.1.6" - resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.6.tgz#ba79cf8992609a91c872daa47c6bb144ee7f62a5" - integrity sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.2" - es-object-atoms "^1.0.0" - -string.prototype.trim@^1.2.9: - version "1.2.9" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" - integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-abstract "^1.23.0" - es-object-atoms "^1.0.0" - -string.prototype.trimend@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" - integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-object-atoms "^1.0.0" - -string.prototype.trimstart@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" - integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== - dependencies: - call-bind "^1.0.7" - define-properties "^1.2.1" - es-object-atoms "^1.0.0" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== - dependencies: - ansi-regex "^6.0.1" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-final-newline@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" - integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.1.tgz#0d8b7d01b23848ed7dbdf4baaaa31a8250d8cfa0" - integrity sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw== - -strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -summary@2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/summary/-/summary-2.1.0.tgz#be8a49a0aa34eb6ceea56042cae88f8add4b0885" - integrity sha512-nMIjMrd5Z2nuB2RZCKJfFMjgS3fygbeyGk9PxPPaJR1RIcyN9yn4A63Isovzm3ZtQuEkLBVgMdPup8UeLH7aQw== - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -synckit@^0.8.6: - version "0.8.8" - resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.8.tgz#fe7fe446518e3d3d49f5e429f443cf08b6edfcd7" - integrity sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ== - dependencies: - "@pkgr/core" "^0.1.0" - tslib "^2.6.2" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -text-extensions@^2.0.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-2.4.0.tgz#a1cfcc50cf34da41bfd047cc744f804d1680ea34" - integrity sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g== - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -through2@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" - integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== - dependencies: - readable-stream "3" - -"through@>=2.2.7 <3": - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -tmpl@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" - integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-no-case@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/to-no-case/-/to-no-case-1.0.2.tgz#c722907164ef6b178132c8e69930212d1b4aa16a" - integrity sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg== - -to-pascal-case@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/to-pascal-case/-/to-pascal-case-1.0.0.tgz#0bbdc8df448886ba01535e543327048d0aa1ce78" - integrity sha512-QGMWHqM6xPrcQW57S23c5/3BbYb0Tbe9p+ur98ckRnGDwD4wbbtDiYI38CfmMKNB5Iv0REjs5SNDntTwvDxzZA== - dependencies: - to-space-case "^1.0.0" - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -to-space-case@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/to-space-case/-/to-space-case-1.0.0.tgz#b052daafb1b2b29dc770cea0163e5ec0ebc9fc17" - integrity sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA== - dependencies: - to-no-case "^1.0.0" - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -ts-api-utils@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" - integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== - -ts-jest@^29.1.2: - version "29.1.5" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.5.tgz#d6c0471cc78bffa2cb4664a0a6741ef36cfe8f69" - integrity sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg== - dependencies: - bs-logger "0.x" - fast-json-stable-stringify "2.x" - jest-util "^29.0.0" - json5 "^2.2.3" - lodash.memoize "4.x" - make-error "1.x" - semver "^7.5.3" - yargs-parser "^21.0.1" - -ts-node@10.9.2: - version "10.9.2" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" - integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== - dependencies: - "@cspotcode/source-map-support" "^0.8.0" - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.2" - acorn "^8.4.1" - acorn-walk "^8.1.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - v8-compile-cache-lib "^3.0.1" - yn "3.1.1" - -tsconfig-paths@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c" - integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== - dependencies: - json5 "^2.2.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@^2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0" - integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== - -tsx@^4.7.1: - version "4.15.6" - resolved "https://registry.yarnpkg.com/tsx/-/tsx-4.15.6.tgz#4522ed093f7fa54f031a7a999274e8b35dbf3165" - integrity sha512-is0VQQlfNZRHEuSSTKA6m4xw74IU4AizmuB6lAYLRt9XtuyeQnyJYexhNZOPCB59SqC4JzmSzPnHGBXxf3k0hA== - dependencies: - esbuild "~0.21.4" - get-tsconfig "^4.7.5" - optionalDependencies: - fsevents "~2.3.3" - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.18.0: - version "0.18.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== - -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -typed-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" - integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== - dependencies: - call-bind "^1.0.7" - es-errors "^1.3.0" - is-typed-array "^1.1.13" - -typed-array-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" - integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== - dependencies: - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" - -typed-array-byte-offset@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" - integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== - dependencies: - available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" - -typed-array-length@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" - integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== - dependencies: - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" - possible-typed-array-names "^1.0.0" - -typescript@^5.3.3: - version "5.4.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" - integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== - dependencies: - call-bind "^1.0.2" - has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" - -undici-types@~5.26.4: - version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" - integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== - -unescape-js@^1.0.5: - version "1.1.4" - resolved "https://registry.yarnpkg.com/unescape-js/-/unescape-js-1.1.4.tgz#4bc6389c499cb055a98364a0b3094e1c3d5da395" - integrity sha512-42SD8NOQEhdYntEiUQdYq/1V/YHwr1HLwlHuTJB5InVVdOSbgI6xu8jK5q65yIzuFCfczzyDF/7hbGzVbyCw0g== - dependencies: - string.fromcodepoint "^0.2.1" - -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== - -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== - dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" - -unicode-match-property-value-ecmascript@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" - integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== - -unicode-property-aliases-ecmascript@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" - integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== - -update-browserslist-db@^1.0.16: - version "1.0.16" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz#f6d489ed90fb2f07d67784eb3f53d7891f736356" - integrity sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ== - dependencies: - escalade "^3.1.2" - picocolors "^1.0.1" - -uri-js@^4.2.2, uri-js@^4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -util-deprecate@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - -v8-compile-cache-lib@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" - integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== - -v8-to-istanbul@^9.0.1: - version "9.2.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz#2ed7644a245cddd83d4e087b9b33b3e62dfd10ad" - integrity sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== - dependencies: - "@jridgewell/trace-mapping" "^0.3.12" - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^2.0.0" - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -vlq@^0.2.1: - version "0.2.3" - resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" - integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow== - -vscode-languageserver-textdocument@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz#0822a000e7d4dc083312580d7575fe9e3ba2e2bf" - integrity sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA== - -vscode-uri@^3.0.8: - version "3.0.8" - resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f" - integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw== - -walker@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" - integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== - dependencies: - makeerror "1.0.12" - -wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - -web-streams-polyfill@^3.0.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b" - integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw== - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" - -which-typed-array@^1.1.14, which-typed-array@^1.1.15: - version "1.1.15" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" - integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== - dependencies: - available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.2" - -which@^1.2.9: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -word-wrap@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" - integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.0.tgz#1a3dc8b70d85eeb8398ddfb1e4a02cd186e58b3e" - integrity sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q== - dependencies: - ansi-styles "^6.2.1" - string-width "^7.0.0" - strip-ansi "^7.1.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -write-file-atomic@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" - integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^3.0.7" - -ws@7.4.6: - version "7.4.6" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" - integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== - -xdg-basedir@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-5.1.0.tgz#1efba19425e73be1bc6f2a6ceb52a3d2c884c0c9" - integrity sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ== - -xml@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" - integrity sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^2.4.5, yaml@~2.4.2: - version "2.4.5" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.5.tgz#60630b206dd6d84df97003d33fc1ddf6296cca5e" - integrity sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg== - -yargs-parser@^20.2.3: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs-parser@^21.0.1, yargs-parser@^21.1.1: - version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs@^17.0.0, yargs@^17.3.1: - version "17.7.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" - integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== - dependencies: - cliui "^8.0.1" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.1.1" - -yn@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -zod-validation-error@^3.0.3: - version "3.3.0" - resolved "https://registry.yarnpkg.com/zod-validation-error/-/zod-validation-error-3.3.0.tgz#2cfe81b62d044e0453d1aa3ae7c32a2f36dde9af" - integrity sha512-Syib9oumw1NTqEv4LT0e6U83Td9aVRk9iTXPUQr1otyV1PuXQKOvOwhMNqZIq5hluzHP2pMgnOmHEo7kPdI2mw== - -zod@^3.22.4: - version "3.23.8" - resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" - integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 8 + cacheKey: 10c0 + +"@ampproject/remapping@npm:^2.2.0": + version: 2.3.0 + resolution: "@ampproject/remapping@npm:2.3.0" + dependencies: + "@jridgewell/gen-mapping": "npm:^0.3.5" + "@jridgewell/trace-mapping": "npm:^0.3.24" + checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed + languageName: node + linkType: hard + +"@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.7" + picocolors: "npm:^1.0.0" + checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6 + languageName: node + linkType: hard + +"@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.7 + resolution: "@babel/core@npm:7.24.7" + dependencies: + "@ampproject/remapping": "npm:^2.2.0" + "@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/4004ba454d3c20a46ea66264e06c15b82e9f6bdc35f88819907d24620da70dbf896abac1cb4cc4b6bb8642969e45f4d808497c9054a1388a386cf8c12e9b9e0d + languageName: node + linkType: hard + +"@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.7" + "@jridgewell/gen-mapping": "npm:^0.3.5" + "@jridgewell/trace-mapping": "npm:^0.3.25" + jsesc: "npm:^2.5.1" + checksum: 10c0/06b1f3350baf527a3309e50ffd7065f7aee04dd06e1e7db794ddfde7fe9d81f28df64edd587173f8f9295496a7ddb74b9a185d4bf4de7bb619e6d4ec45c8fd35 + languageName: node + linkType: hard + +"@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.24.7" + checksum: 10c0/4679f7df4dffd5b3e26083ae65228116c3da34c3fff2c11ae11b259a61baec440f51e30fd236f7a0435b9d471acd93d0bc5a95df8213cbf02b1e083503d81b9a + languageName: node + linkType: hard + +"@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/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.24.7": + version: 7.24.7 + resolution: "@babel/helper-compilation-targets@npm:7.24.7" + dependencies: + "@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/1d580a9bcacefe65e6bf02ba1dafd7ab278269fef45b5e281d8354d95c53031e019890464e7f9351898c01502dd2e633184eb0bcda49ed2ecd538675ce310f51 + languageName: node + linkType: hard + +"@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.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/6b7b47d70b41c00f39f86790cff67acf2bce0289d52a7c182b28e797f4e0e6d69027e3d06eccf1d54dddc2e5dde1df663bb1932437e5f447aeb8635d8d64a6ab + languageName: node + linkType: hard + +"@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.24.7" + regexpu-core: "npm:^5.3.1" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/ed611a7eb0c71843f9cdc471eeb38767972229f9225f7aaa90d124d7ee0062cf6908fd53ee9c34f731394c429594f06049a7738a71d342e0191d4047b2fc0ac2 + languageName: node + linkType: hard + +"@babel/helper-define-polyfill-provider@npm:^0.6.1, @babel/helper-define-polyfill-provider@npm:^0.6.2": + version: 0.6.2 + resolution: "@babel/helper-define-polyfill-provider@npm:0.6.2" + dependencies: + "@babel/helper-compilation-targets": "npm:^7.22.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" + debug: "npm:^4.1.1" + lodash.debounce: "npm:^4.0.8" + resolve: "npm:^1.14.2" + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/f777fe0ee1e467fdaaac059c39ed203bdc94ef2465fb873316e9e1acfc511a276263724b061e3b0af2f6d7ad3ff174f2bb368fde236a860e0f650fda43d7e022 + languageName: node + linkType: hard + +"@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.24.7": + version: 7.24.7 + resolution: "@babel/helper-function-name@npm:7.24.7" + dependencies: + "@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.24.7": + version: 7.24.7 + resolution: "@babel/helper-hoist-variables@npm:7.24.7" + dependencies: + "@babel/types": "npm:^7.24.7" + checksum: 10c0/19ee37563bbd1219f9d98991ad0e9abef77803ee5945fd85aa7aa62a67c69efca9a801696a1b58dda27f211e878b3327789e6fd2a6f6c725ccefe36774b5ce95 + languageName: node + linkType: hard + +"@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/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.7": + version: 7.24.7 + resolution: "@babel/helper-module-imports@npm:7.24.7" + dependencies: + "@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.24.7": + version: 7.24.7 + resolution: "@babel/helper-module-transforms@npm:7.24.7" + dependencies: + "@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/4f311755fcc3b4cbdb689386309cdb349cf0575a938f0b9ab5d678e1a81bbb265aa34ad93174838245f2ac7ff6d5ddbd0104638a75e4e961958ed514355687b6 + languageName: node + linkType: hard + +"@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.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.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.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.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/4e7fa2cdcbc488e41c27066c16e562857ef3c5c2bfe70d2f1e32e9ee7546b17c3fc1c20d05bf2a7f1c291bd9e7a0a219f6a9fa387209013294be79a26fcfe64d + languageName: node + linkType: hard + +"@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.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/0e133bb03371dee78e519c334a09c08e1493103a239d9628db0132dfaac3fc16380479ca3c590d278a9b71b624030a338c18ebbfe6d430ebb2e4653775c4b3e3 + languageName: node + linkType: hard + +"@babel/helper-simple-access@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-simple-access@npm:7.24.7" + dependencies: + "@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.24.7": + version: 7.24.7 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.24.7" + dependencies: + "@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.7": + version: 7.24.7 + resolution: "@babel/helper-split-export-declaration@npm:7.24.7" + dependencies: + "@babel/types": "npm:^7.24.7" + checksum: 10c0/0254577d7086bf09b01bbde98f731d4fcf4b7c3fa9634fdb87929801307c1f6202a1352e3faa5492450fa8da4420542d44de604daf540704ff349594a78184f6 + languageName: node + linkType: hard + +"@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.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.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.24.7": + version: 7.24.7 + resolution: "@babel/helper-wrap-function@npm:7.24.7" + dependencies: + "@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.7": + version: 7.24.7 + resolution: "@babel/helpers@npm:7.24.7" + dependencies: + "@babel/template": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/aa8e230f6668773e17e141dbcab63e935c514b4b0bf1fed04d2eaefda17df68e16b61a56573f7f1d4d1e605ce6cc162b5f7e9fdf159fde1fd9b77c920ae47d27 + languageName: node + linkType: hard + +"@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.7" + chalk: "npm:^2.4.2" + js-tokens: "npm:^4.0.0" + picocolors: "npm:^1.0.0" + 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.7": + version: 7.24.7 + resolution: "@babel/parser@npm:7.24.7" + bin: + parser: ./bin/babel-parser.js + checksum: 10c0/8b244756872185a1c6f14b979b3535e682ff08cb5a2a5fd97cc36c017c7ef431ba76439e95e419d43000c5b07720495b00cf29a7f0d9a483643d08802b58819b + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/394c30e2b708ad385fa1219528e039066a1f1cb40f47986f283878848fd354c745e6397f588b4e5a046ee8d64bfdf4c208e4c3dfbdcfb2fd34315ec67c64e7af + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/a36307428ecc1a01b00cf90812335eed1575d13f211ab24fe4d0c55c28a2fcbd4135f142efabc3b277b2a8e09ee05df594a1272353f061b63829495b5dcfdb96 + languageName: node + linkType: hard + +"@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.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/aeb6e7aa363a47f815cf956ea1053c5dd8b786a17799f065c9688ba4b0051fe7565d258bbe9400bfcbfb3114cb9fda66983e10afe4d750bc70ff75403e15dd36 + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/2b52a73e444f6adc73f927b623e53a4cf64397170dd1071268536df1b3db1e02131418c8dc91351af48837a6298212118f4a72d5407f8005cf9a732370a315b0 + languageName: node + linkType: hard + +"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": + version: 7.21.0-placeholder-for-preset-env.2 + resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e605e0070da087f6c35579499e65801179a521b6842c15181a1e305c04fded2393f11c1efd09b087be7f8b083d1b75e8f3efcbc1292b4f60d3369e14812cff63 + languageName: node + linkType: hard + +"@babel/plugin-syntax-async-generators@npm:^7.8.4": + version: 7.8.4 + resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8 + languageName: node + linkType: hard + +"@babel/plugin-syntax-bigint@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3": + version: 7.12.13 + resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.12.13" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120 + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-static-block@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371 + languageName: node + linkType: hard + +"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/9c50927bf71adf63f60c75370e2335879402648f468d0172bc912e303c6a3876927d8eb35807331b57f415392732ed05ab9b42c68ac30a936813ab549e0246c5 + languageName: node + linkType: hard + +"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/5100d658ba563829700cd8d001ddc09f4c0187b1a13de300d729c5b3e87503f75a6d6c99c1794182f7f1a9f546ee009df4f15a0ce36376e206ed0012fa7cdc24 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/b82c53e095274ee71c248551352d73441cf65b3b3fc0107258ba4e9aef7090772a425442b3ed1c396fa207d0efafde8929c87a17d3c885b3ca2021316e87e246 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/eccc54d0f03c96d0eec7a6e2fa124dadbc7298345b62ffc4238f173308c4325b5598f139695ff05a95cf78412ef6903599e4b814496612bf39aad4715a16375b + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee + languageName: node + linkType: hard + +"@babel/plugin-syntax-json-strings@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/f44d927a9ae8d5ef016ff5b450e1671e56629ddc12e56b938e41fd46e141170d9dfc9a53d6cb2b9a20a7dd266a938885e6a3981c60c052a2e1daed602ac80e51 + languageName: node + linkType: hard + +"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b + languageName: node + linkType: hard + +"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce + languageName: node + linkType: hard + +"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9 + languageName: node + linkType: hard + +"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26 + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81 + languageName: node + linkType: hard + +"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/69822772561706c87f0a65bc92d0772cea74d6bc0911537904a676d5ff496a6d3ac4e05a166d8125fce4a16605bace141afc3611074e170a994e66e5397787f3 + languageName: node + linkType: hard + +"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3": + version: 7.14.5 + resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/cdabd2e8010fb0ad15b49c2c270efc97c4bfe109ead36c7bbcf22da7a74bc3e49702fc4f22f12d2d6049e8e22a5769258df1fd05f0420ae45e11bdd5bc07805a + languageName: node + linkType: hard + +"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.18.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/9144e5b02a211a4fb9a0ce91063f94fbe1004e80bde3485a0910c9f14897cf83fabd8c21267907cff25db8e224858178df0517f14333cfcf3380ad9a4139cb50 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/6ac05a54e5582f34ac6d5dc26499e227227ec1c7fa6fc8de1f3d40c275f140d3907f79bbbd49304da2d7008a5ecafb219d0b71d78ee3290ca22020d878041245 + languageName: node + linkType: hard + +"@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.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/6b5e33ae66dce0afce9b06d8dace6fa052528e60f7622aa6cfd3e71bd372ca5079d426e78336ca564bc0d5f37acbcda1b21f4fe656fcb642f1a93a697ab39742 + languageName: node + linkType: hard + +"@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.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/83c82e243898875af8457972a26ab29baf8a2078768ee9f35141eb3edff0f84b165582a2ff73e90a9e08f5922bf813dbf15a85c1213654385198f4591c0dc45d + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/113e86de4612ae91773ff5cb6b980f01e1da7e26ae6f6012127415d7ae144e74987bc23feb97f63ba4bc699331490ddea36eac004d76a20d5369e4cc6a7f61cd + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/dcbc5e385c0ca5fb5736b1c720c90755cffe9f91d8c854f82e61e59217dd3f6c91b3633eeee4b55a89d3f59e5275d0f5b0b1b1363d4fa70c49c468b55aa87700 + languageName: node + linkType: hard + +"@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.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/75018a466c7ede3d2397e158891c224ba7fca72864506ce067ddbc02fc65191d44da4d6379c996d0c7f09019e26b5c3f5f1d3a639cd98366519723886f0689d0 + languageName: node + linkType: hard + +"@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.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/b0ade39a3d09dce886f79dbd5907c3d99b48167eddb6b9bbde24a0598129654d7017e611c20494cdbea48b07ac14397cd97ea34e3754bbb2abae4e698128eccb + languageName: node + linkType: hard + +"@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.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/e51dba7ce8b770d1eee929e098d5a3be3efc3e8b941e22dda7d0097dc4e7be5feabd2da7b707ac06fcac5661b31223c541941dec08ce76c1faa55544d87d06ec + languageName: node + linkType: hard + +"@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.7" + "@babel/template": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/25636dbc1f605c0b8bc60aa58628a916b689473d11551c9864a855142e36742fe62d4a70400ba3b74902338e77fb3d940376c0a0ba154b6b7ec5367175233b49 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/929f07a807fb62230bfbf881cfcedf187ac5daf2f1b01da94a75c7a0f6f72400268cf4bcfee534479e43260af8193e42c31ee03c8b0278ba77d0036ed6709c27 + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/793f14c9494972d294b7e7b97b747f47874b6d57d7804d3443c701becf5db192c9311be6a1835c07664486df1f5c60d33196c36fb7e11a53015e476b4c145b33 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/75ff7ec1117ac500e77bf20a144411d39c0fdd038f108eec061724123ce6d1bb8d5bd27968e466573ee70014f8be0043361cdb0ef388f8a182d1d97ad67e51b9 + languageName: node + linkType: hard + +"@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.7" + "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/eeda48372efd0a5103cb22dadb13563c975bce18ae85daafbb47d57bb9665d187da9d4fe8d07ac0a6e1288afcfcb73e4e5618bf75ff63fddf9736bfbf225203b + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/ace3e11c94041b88848552ba8feb39ae4d6cad3696d439ff51445bd2882d8b8775d85a26c2c0edb9b5e38c9e6013cc11b0dea89ec8f93c7d9d7ee95e3645078c + languageName: node + linkType: hard + +"@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.7" + "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/4e144d7f1c57bc63b4899dbbbdfed0880f2daa75ea9c7251c7997f106e4b390dc362175ab7830f11358cb21f6b972ca10a43a2e56cd789065f7606b082674c0c + languageName: node + linkType: hard + +"@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.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/77629b1173e55d07416f05ba7353caa09d2c2149da2ca26721ab812209b63689d1be45116b68eadc011c49ced59daf5320835b15245eb7ae93ae0c5e8277cfc0 + languageName: node + linkType: hard + +"@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.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/3e9642428d6952851850d89ea9307d55946528d18973784d0e2f04a651b23bd9924dd8a2641c824b483bd4ab1223bab1d2f6a1106a939998f7ced512cb60ac5b + languageName: node + linkType: hard + +"@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.7" + "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/17c72cd5bf3e90e722aabd333559275f3309e3fa0b9cea8c2944ab83ae01502c71a2be05da5101edc02b3fc8df15a8dbb9b861cbfcc8a52bf5e797cf01d3a40a + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/9f3f6f3831929cd2a977748c07addf9944d5cccb50bd3a24a58beb54f91f00d6cacd3d7831d13ffe1ad6f8aba0aefd7bca5aec65d63b77f39c62ad1f2d484a3e + languageName: node + linkType: hard + +"@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.7" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/dbe882eb9053931f2ab332c50fc7c2a10ef507d6421bd9831adbb4cb7c9f8e1e5fbac4fbd2e007f6a1bf1df1843547559434012f118084dc0bf42cda3b106272 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e789ae359bdf2d20e90bedef18dfdbd965c9ebae1cee398474a0c349590fda7c8b874e1a2ceee62e47e5e6ec1730e76b0f24e502164357571854271fc12cc684 + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/6df7de7fce34117ca4b2fa07949b12274c03668cbfe21481c4037b6300796d50ae40f4f170527b61b70a67f26db906747797e30dbd0d9809a441b6e220b5728f + languageName: node + linkType: hard + +"@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.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/9442292b3daf6a5076cdc3c4c32bf423bda824ccaeb0dd0dc8b3effaa1fecfcb0130ae6e647fef12a5d5ff25bcc99a0d6bfc6d24a7525345e1bcf46fcdf81752 + languageName: node + linkType: hard + +"@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.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/e2a795e0a6baafe26f4a74010622212ddd873170742d673f450e0097f8d984f6e6a95eb8ce41b05071ee9790c4be088b33801aaab3f78ee202c567634e52a331 + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/7791d290121db210e4338b94b4a069a1a79e4c7a8d7638d8159a97b281851bbed3048dac87a4ae718ad963005e6c14a5d28e6db2eeb2b04e031cee92fb312f85 + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/41a0b0f2d0886318237440aa3b489f6d0305361d8671121777d9ff89f9f6de9d0c02ce93625049061426c8994064ef64deae8b819d1b14c00374a6a2336fb5d9 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2540808a35e1a978e537334c43dab439cf24c93e7beb213a2e71902f6710e60e0184316643790c0a6644e7a8021e52f7ab8165e6b3e2d6651be07bdf517b67df + languageName: node + linkType: hard + +"@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.7" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/7243c8ff734ed5ef759dd8768773c4b443c12e792727e759a1aec2c7fa2bfdd24f1ecb42e292a7b3d8bd3d7f7b861cf256a8eb4ba144fc9cc463892c303083d9 + languageName: node + linkType: hard + +"@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.7" + "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e18e09ca5a6342645d00ede477731aa6e8714ff357efc9d7cda5934f1703b3b6fb7d3298dce3ce3ba53e9ff1158eab8f1aadc68874cc21a6099d33a1ca457789 + languageName: node + linkType: hard + +"@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.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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/9ad64bc003f583030f9da50614b485852f8edac93f8faf5d1cd855201a4852f37c5255ae4daf70dd4375bdd4874e16e39b91f680d4668ec219ba05441ce286eb + languageName: node + linkType: hard + +"@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.7" + "@babel/helper-replace-supers": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/770cebb4b4e1872c216b17069db9a13b87dfee747d359dc56d9fcdd66e7544f92dc6ab1861a4e7e0528196aaff2444e4f17dc84efd8eaf162d542b4ba0943869 + languageName: node + linkType: hard + +"@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.7" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/1e2f10a018f7d03b3bde6c0b70d063df8d5dd5209861d4467726cf834f5e3d354e2276079dc226aa8e6ece35f5c9b264d64b8229a8bb232829c01e561bcfb07a + languageName: node + linkType: hard + +"@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.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/b9e3649b299e103b0d1767bbdba56574d065ff776e5350403b7bfd4e3982743c0cdb373d33bdbf94fa3c322d155e45d0aad946acf0aa741b870aed22dfec8b8e + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/53bf190d6926771545d5184f1f5f3f5144d0f04f170799ad46a43f683a01fab8d5fe4d2196cf246774530990c31fe1f2b9f0def39f0a5ddbb2340b924f5edf01 + languageName: node + linkType: hard + +"@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.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/5b7bf923b738fbe3ad6c33b260e0a7451be288edfe4ef516303fa787a1870cd87533bfbf61abb779c22ed003c2fc484dec2436fe75a48756f686c0241173d364 + languageName: node + linkType: hard + +"@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.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/c6fa7defb90b1b0ed46f24ff94ff2e77f44c1f478d1090e81712f33cf992dda5ba347016f030082a2f770138bac6f4a9c2c1565e9f767a125901c77dd9c239ba + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/52564b58f3d111dc02d241d5892a4b01512e98dfdf6ef11b0ed62f8b11b0acacccef0fc229b44114fe8d1a57a8b70780b11bdd18b807d3754a781a07d8f57433 + languageName: node + linkType: hard + +"@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.7" + regenerator-transform: "npm:^0.15.2" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/d2dc2c788fdae9d97217e70d46ba8ca9db0035c398dc3e161552b0c437113719a75c04f201f9c91ddc8d28a1da60d0b0853f616dead98a396abb9c845c44892b + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2229de2768615e7f5dc0bbc55bc121b5678fd6d2febd46c74a58e42bb894d74cd5955c805880f4e02d0e1cf94f6886270eda7fafc1be9305a1ec3b9fd1d063f5 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/41b155bdbb3be66618358488bf7731b3b2e8fff2de3dbfd541847720a9debfcec14db06a117abedd03c9cd786db20a79e2a86509a4f19513f6e1b610520905cf + languageName: node + linkType: hard + +"@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.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/facba1553035f76b0d2930d4ada89a8cd0f45b79579afd35baefbfaf12e3b86096995f4b0c402cf9ee23b3f2ea0a4460c3b1ec0c192d340962c948bb223d4e66 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/5a74ed2ed0a3ab51c3d15fcaf09d9e2fe915823535c7a4d7b019813177d559b69677090e189ec3d5d08b619483eb5ad371fbcfbbff5ace2a76ba33ee566a1109 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/3630f966257bcace122f04d3157416a09d40768c44c3a800855da81146b009187daa21859d1c3b7d13f4e19e8888e60613964b175b2275d451200fb6d8d6cfe6 + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/5649e7260a138681e68b296ab5931e2b1f132f287d6b4131d49b24f9dc20d62902b7e9d63c4d2decd5683b41df35ef4b9b03f58c7f9f65e4c25a6d8bbf04e9e9 + languageName: node + linkType: hard + +"@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.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/e8dacdc153a4c4599014b66eb01b94e3dc933d58d4f0cc3039c1a8f432e77b9df14f34a61964e014b975bf466f3fefd8c4768b3e887d3da1be9dc942799bdfdf + languageName: node + linkType: hard + +"@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.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/8b18e2e66af33471a6971289492beff5c240e56727331db1d34c4338a6a368a82a7ed6d57ec911001b6d65643aed76531e1e7cac93265fb3fb2717f54d845e69 + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/bc57656eb94584d1b74a385d378818ac2b3fca642e3f649fead8da5fb3f9de22f8461185936915dfb33d5a9104e62e7a47828331248b09d28bb2d59e9276de3e + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/83f72a345b751566b601dc4d07e9f2c8f1bc0e0c6f7abb56ceb3095b3c9d304de73f85f2f477a09f8cc7edd5e65afd0ff9e376cdbcbea33bc0c28f3705b38fd9 + languageName: node + linkType: hard + +"@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.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/7457c0ee8e80a80cb6fdc1fe54ab115b52815627616ce9151be8ef292fc99d04a910ec24f11382b4f124b89374264396892b086886bd2a9c2317904d87c9b21b + languageName: node + linkType: hard + +"@babel/preset-env@npm:^7.24.0": + 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.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" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@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.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" + babel-plugin-polyfill-regenerator: "npm:^0.6.1" + core-js-compat: "npm:^3.31.0" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/c6714346f3ccc1271eaa90051c75b8bb57b20ef57408ab68740e2f3552693ae0ee5a4bcce3a00211d40e4947af1f7b8ab422066b953f0095461937fb72d11274 + languageName: node + linkType: hard + +"@babel/preset-modules@npm:0.1.6-no-external-plugins": + version: 0.1.6-no-external-plugins + resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.0.0" + "@babel/types": "npm:^7.4.4" + esutils: "npm:^2.0.2" + peerDependencies: + "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/9d02f70d7052446c5f3a4fb39e6b632695fb6801e46d31d7f7c5001f7c18d31d1ea8369212331ca7ad4e7877b73231f470b0d559162624128f1b80fe591409e6 + languageName: node + linkType: hard + +"@babel/preset-typescript@npm:^7.23.3": + 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/986bc0978eedb4da33aba8e1e13a3426dd1829515313b7e8f4ba5d8c18aff1663b468939d471814e7acf4045d326ae6cff37239878d169ac3fe53a8fde71f8ee + languageName: node + linkType: hard + +"@babel/regjsgen@npm:^0.8.0": + version: 0.8.0 + resolution: "@babel/regjsgen@npm:0.8.0" + checksum: 10c0/4f3ddd8c7c96d447e05c8304c1d5ba3a83fcabd8a716bc1091c2f31595cdd43a3a055fff7cb5d3042b8cb7d402d78820fcb4e05d896c605a7d8bcf30f2424c4a + languageName: node + linkType: hard + +"@babel/runtime@npm:^7.8.4": + version: 7.24.7 + resolution: "@babel/runtime@npm:7.24.7" + dependencies: + regenerator-runtime: "npm:^0.14.0" + checksum: 10c0/b6fa3ec61a53402f3c1d75f4d808f48b35e0dfae0ec8e2bb5c6fc79fb95935da75766e0ca534d0f1c84871f6ae0d2ebdd950727cfadb745a2cdbef13faef5513 + languageName: node + linkType: hard + +"@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.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.7": + version: 7.24.7 + resolution: "@babel/traverse@npm:7.24.7" + dependencies: + "@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/a5135e589c3f1972b8877805f50a084a04865ccb1d68e5e1f3b94a8841b3485da4142e33413d8fd76bc0e6444531d3adf1f59f359c11ffac452b743d835068ab + languageName: node + linkType: hard + +"@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.7" + "@babel/helper-validator-identifier": "npm:^7.24.7" + to-fast-properties: "npm:^2.0.0" + checksum: 10c0/d9ecbfc3eb2b05fb1e6eeea546836ac30d990f395ef3fe3f75ced777a222c3cfc4489492f72e0ce3d9a5a28860a1ce5f81e66b88cf5088909068b3ff4fab72c1 + languageName: node + linkType: hard + +"@bcoe/v8-coverage@npm:^0.2.3": + version: 0.2.3 + resolution: "@bcoe/v8-coverage@npm:0.2.3" + checksum: 10c0/6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52 + languageName: node + linkType: hard + +"@commitlint/cli@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/cli@npm:18.6.1" + dependencies: + "@commitlint/format": "npm:^18.6.1" + "@commitlint/lint": "npm:^18.6.1" + "@commitlint/load": "npm:^18.6.1" + "@commitlint/read": "npm:^18.6.1" + "@commitlint/types": "npm:^18.6.1" + execa: "npm:^5.0.0" + lodash.isfunction: "npm:^3.0.9" + resolve-from: "npm:5.0.0" + resolve-global: "npm:1.0.0" + yargs: "npm:^17.0.0" + bin: + commitlint: cli.js + checksum: 10c0/4ec3eec2919170aece1295253c70656d48b8f0fcb2a1f2e48819b1913effa1e92a2416a422f1cfa4b90c4b33b7a8b07184b40851bc906ac6b027b11a8927de50 + languageName: node + linkType: hard + +"@commitlint/config-conventional@npm:^18.6.2": + version: 18.6.3 + resolution: "@commitlint/config-conventional@npm:18.6.3" + dependencies: + "@commitlint/types": "npm:^18.6.1" + conventional-changelog-conventionalcommits: "npm:^7.0.2" + checksum: 10c0/047f84598f80f7f793bdb0ffc9cf9059c199da6c5bc12ab87084fa933faee08c9290e3331f6f0d7e07c4f0ffb0b5c678e5036025aeabb8e74af296b9146c6354 + languageName: node + linkType: hard + +"@commitlint/config-validator@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/config-validator@npm:18.6.1" + dependencies: + "@commitlint/types": "npm:^18.6.1" + ajv: "npm:^8.11.0" + checksum: 10c0/611dec17774e261189b041db180068c7951f6d85d12895497b5fe2408f77eccba32f8cec2bb656a165e99c2b038e806aa2d42e59e68eb0e090eb98b5b3f4e854 + languageName: node + linkType: hard + +"@commitlint/ensure@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/ensure@npm:18.6.1" + dependencies: + "@commitlint/types": "npm:^18.6.1" + lodash.camelcase: "npm:^4.3.0" + lodash.kebabcase: "npm:^4.1.1" + lodash.snakecase: "npm:^4.1.1" + lodash.startcase: "npm:^4.4.0" + lodash.upperfirst: "npm:^4.3.1" + checksum: 10c0/b7fbc70dbf1c3010f47ab76b1115c28be24b11fe0d01d47e2d64666dee801c8e98961076777f10116c3cbfeed676979d702c98934c342feafc4cdce2ef48f62c + languageName: node + linkType: hard + +"@commitlint/execute-rule@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/execute-rule@npm:18.6.1" + checksum: 10c0/cdbf397f533ddaf2d90e457d7917ad16e6d8b78fdc79aff583618c42c758159eaaec33bd92e7f5dfefd0d5c6652c5d36d511b5e73cf5a2de12eb018b1e6be5f0 + languageName: node + linkType: hard + +"@commitlint/format@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/format@npm:18.6.1" + dependencies: + "@commitlint/types": "npm:^18.6.1" + chalk: "npm:^4.1.0" + checksum: 10c0/b72d6d75e34e32c7e1db8e46ff4cf27ba0880d7a72d6371a32faa5461a7f993dd14f006a5c6d66e6d0ccb571339fbaa96aa679d7ce332cdf81e2b4762b714ea2 + languageName: node + linkType: hard + +"@commitlint/is-ignored@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/is-ignored@npm:18.6.1" + dependencies: + "@commitlint/types": "npm:^18.6.1" + semver: "npm:7.6.0" + checksum: 10c0/9be99142a2e24db8fa67776351d2ab5d4e0ead013a3317e6e011eaf24a030605c312b8fb404092c38563823a21abf213294bf322bf42a0b60ddaaa4fd791e78c + languageName: node + linkType: hard + +"@commitlint/lint@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/lint@npm:18.6.1" + dependencies: + "@commitlint/is-ignored": "npm:^18.6.1" + "@commitlint/parse": "npm:^18.6.1" + "@commitlint/rules": "npm:^18.6.1" + "@commitlint/types": "npm:^18.6.1" + checksum: 10c0/a1e1648ee04875c0fdc82adbdcded89cbc645649d817ba069b3b0144ff74090d6ac43c2cf86e46615d1268c33cad7019d967ca769fc7c1e4ebd193b1c2363ee6 + languageName: node + linkType: hard + +"@commitlint/load@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/load@npm:18.6.1" + dependencies: + "@commitlint/config-validator": "npm:^18.6.1" + "@commitlint/execute-rule": "npm:^18.6.1" + "@commitlint/resolve-extends": "npm:^18.6.1" + "@commitlint/types": "npm:^18.6.1" + chalk: "npm:^4.1.0" + cosmiconfig: "npm:^8.3.6" + cosmiconfig-typescript-loader: "npm:^5.0.0" + lodash.isplainobject: "npm:^4.0.6" + lodash.merge: "npm:^4.6.2" + lodash.uniq: "npm:^4.5.0" + resolve-from: "npm:^5.0.0" + checksum: 10c0/da4f90c92015016b97bff65b446011185b2701383929ba8f4a6e1307be919cb2c94e3b62906f460edded76c530f0185d13bee8fe20c4a78995bf8f6aae65ae30 + languageName: node + linkType: hard + +"@commitlint/message@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/message@npm:18.6.1" + checksum: 10c0/46a81835961e474a924b219aee93754f80c8e1b3ad7e358667f831e67e8631612eed8227a0065486c32c10be8cacaa78f1dedb45e67aa2e31b677d11d1648cbd + languageName: node + linkType: hard + +"@commitlint/parse@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/parse@npm:18.6.1" + dependencies: + "@commitlint/types": "npm:^18.6.1" + conventional-changelog-angular: "npm:^7.0.0" + conventional-commits-parser: "npm:^5.0.0" + checksum: 10c0/286bf092436f73730ecd474737b4e53c3c268ade1f01c019a628c54654b3bf3387a151fcb0510dee49dd8d2e4b5ac6f69c62da2183198c0088ee67a06f8ad247 + languageName: node + linkType: hard + +"@commitlint/read@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/read@npm:18.6.1" + dependencies: + "@commitlint/top-level": "npm:^18.6.1" + "@commitlint/types": "npm:^18.6.1" + git-raw-commits: "npm:^2.0.11" + minimist: "npm:^1.2.6" + checksum: 10c0/92a88348b95ad058a6572484da5593f2471335a784965fed03bec36c786b99a467782aba231127d96c23f03a030d9aed17be197e5392a5f8636b818c3c2907ac + languageName: node + linkType: hard + +"@commitlint/resolve-extends@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/resolve-extends@npm:18.6.1" + dependencies: + "@commitlint/config-validator": "npm:^18.6.1" + "@commitlint/types": "npm:^18.6.1" + import-fresh: "npm:^3.0.0" + lodash.mergewith: "npm:^4.6.2" + resolve-from: "npm:^5.0.0" + resolve-global: "npm:^1.0.0" + checksum: 10c0/05fbf6742c2b3e719d40c112d37efd3b395aa17daeb1d23913f6a72f1cc2ec3c5ec7f3ba683eef12fe698c7002aa186b05c2fe0d0cefe16ef8e967d10d7c1397 + languageName: node + linkType: hard + +"@commitlint/rules@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/rules@npm:18.6.1" + dependencies: + "@commitlint/ensure": "npm:^18.6.1" + "@commitlint/message": "npm:^18.6.1" + "@commitlint/to-lines": "npm:^18.6.1" + "@commitlint/types": "npm:^18.6.1" + execa: "npm:^5.0.0" + checksum: 10c0/6ba0a70295a3bc46304c4ca4212755751c774dc0e16aea25552e632495a585d595993c308e73710bba14d6908dd72de0a5a267f3604710c61746d6c3c7397c83 + languageName: node + linkType: hard + +"@commitlint/to-lines@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/to-lines@npm:18.6.1" + checksum: 10c0/93c23ed056fb657618ac77b671d40fd6a90c5ecc3e850adb1715b4e4072b7a41575877e890d4c017c9f215f753ee2fd1189914fc2374d5383a4af4c5123a9f57 + languageName: node + linkType: hard + +"@commitlint/top-level@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/top-level@npm:18.6.1" + dependencies: + find-up: "npm:^5.0.0" + checksum: 10c0/b3fc8ae12267f9c98e19f254e5eed26861c8805937883266e64397d23ef957bbd5826e53fb9c23bde55e3ae73d2963450dfa99c75425d58fec3f151f8f650cbc + languageName: node + linkType: hard + +"@commitlint/types@npm:^18.6.1": + version: 18.6.1 + resolution: "@commitlint/types@npm:18.6.1" + dependencies: + chalk: "npm:^4.1.0" + checksum: 10c0/5728f5cb62bcaad5158dd8982ab5d44c1ea1aee9ac251026cd91b9a4795bb912505c904f75cbd3ae0d1bb7b4dd1e5d84990b76093230018166af8e111b658685 + languageName: node + linkType: hard + +"@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.2" + "@cspell/dict-bash": "npm:^4.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.2" + "@cspell/dict-elixir": "npm:^4.0.3" + "@cspell/dict-en-common-misspellings": "npm:^2.0.2" + "@cspell/dict-en-gb": "npm:1.1.33" + "@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.8" + "@cspell/dict-gaming-terms": "npm:^1.0.5" + "@cspell/dict-git": "npm:^3.0.0" + "@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.7" + "@cspell/dict-julia": "npm:^1.0.1" + "@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.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.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.5" + "@cspell/dict-vue": "npm:^3.0.0" + checksum: 10c0/7591a0679c1a534868807b23a57c80cc7a684dcb19866a15dd3a813ebae260d0378250e532ae1fcf507e460e823c9a3edacfd64f2c233c39b93aaed5914805d0 + languageName: node + linkType: hard + +"@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.9.0" + checksum: 10c0/6d09017f5fb867853774fbcf6ab425e5fdf8c665cb0d18999c35a50373526b10aec915730f96713868454d96b8248c5b7b1d038dd2c1e2be8c3894d5921e0285 + languageName: node + linkType: hard + +"@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.9.0": + version: 8.9.0 + resolution: "@cspell/cspell-resolver@npm:8.9.0" + dependencies: + global-directory: "npm:^4.0.1" + checksum: 10c0/a8d3e1fbdbdd8cd7f318c7e68f86bf9afb07588666f3e52804bb2eaf5388a7755aed67660953b065541448484a534aae5271c2760e59f3f01f7c57a6a4b26ec8 + languageName: node + linkType: hard + +"@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.9.0": + version: 8.9.0 + resolution: "@cspell/cspell-types@npm:8.9.0" + checksum: 10c0/eda8f87bf603deb87c943e3e931c466cabcfbcc598a5641269aca78754baa101dba27049023945641f380de61d6295e8052f49ca017d1c2b92b23f91394c225f + languageName: node + linkType: hard + +"@cspell/dict-ada@npm:^4.0.2": + version: 4.0.2 + resolution: "@cspell/dict-ada@npm:4.0.2" + checksum: 10c0/ef2e34ddfc635a398522a04b0193e2130051a644dffa52f31faa59e864f88d1624b50b53115ed16cc4508f36b43ba8819f504635f437f34ee7d451d3bb441a71 + languageName: node + linkType: hard + +"@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 + +"@cspell/dict-bash@npm:^4.1.3": + version: 4.1.3 + resolution: "@cspell/dict-bash@npm:4.1.3" + checksum: 10c0/b91920a38d7db74cdf1da7677ddfa1853643175dacba90b65a9d58343cacb0280f86a3927288c673c9ccc0587b200bc8447b210fdd89e8ea2f66956207d55024 + languageName: node + linkType: hard + +"@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.10": + version: 5.1.10 + resolution: "@cspell/dict-cpp@npm:5.1.10" + checksum: 10c0/4459a913979e4abf64fbe35104c442a0ca1de4bff40a85a526b805981ee15e447cb38274959179b04815c267bf83ea4c201ee46a3af27a584b7772f07924fcbe + languageName: node + linkType: hard + +"@cspell/dict-cryptocurrencies@npm:^5.0.0": + version: 5.0.0 + resolution: "@cspell/dict-cryptocurrencies@npm:5.0.0" + checksum: 10c0/d5b124eb5d037103ffa2b282779dda8a01ec6622c5498282e05b58f92ce262dae9ac8995748e47a89578e9d658ffd963aa430e85699618c8428166fbe741370d + languageName: node + linkType: hard + +"@cspell/dict-csharp@npm:^4.0.2": + version: 4.0.2 + resolution: "@cspell/dict-csharp@npm:4.0.2" + checksum: 10c0/146b7edeb8aa1acf6b0ccb283a2a5e0e8f2612e6fc67cca9b26e0fabe954a92042d314860bb5418522d6db265bd5933b6c68004d2b8225ad89498bf795b51f89 + languageName: node + linkType: hard + +"@cspell/dict-css@npm:^4.0.12": + version: 4.0.12 + resolution: "@cspell/dict-css@npm:4.0.12" + checksum: 10c0/aba5755408d3184d3fe3bc61db112caf8f9360944da4a777d7ef823198768e9b019c1338993f36af00c33f475434476d8dc2351c439a7cb898dc02dd5acd13e9 + languageName: node + linkType: hard + +"@cspell/dict-dart@npm:^2.0.3": + version: 2.0.3 + resolution: "@cspell/dict-dart@npm:2.0.3" + checksum: 10c0/640b432ced4888c4a6dbdeb2006ed778b59cab7eeb1445e85a66320c1eefe42e905da7c4c89003c42eca97f785380038d603200b8e1f3bea9bc39b81cfadabf7 + languageName: node + linkType: hard + +"@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 + +"@cspell/dict-django@npm:^4.1.0": + version: 4.1.0 + resolution: "@cspell/dict-django@npm:4.1.0" + checksum: 10c0/85b7f58d772f169f7471f2c1bcb8a0207cdff7c32677bf470bcbcc74ce6498269623cfcc7910730eeac7f052633f8d4c63574367c1afe5f46a2917748ed397ca + languageName: node + linkType: hard + +"@cspell/dict-docker@npm:^1.1.7": + version: 1.1.7 + resolution: "@cspell/dict-docker@npm:1.1.7" + checksum: 10c0/e34428f3e18d3ebb94854e4034746a8a0ef81354994f09d289254f75b9ce11fee53f64c706e1e598d5131fbe50d536401c4e5b854e44b965e6e193d454fa87b7 + languageName: node + linkType: hard + +"@cspell/dict-dotnet@npm:^5.0.2": + version: 5.0.2 + resolution: "@cspell/dict-dotnet@npm:5.0.2" + checksum: 10c0/c5a1a7cbef0b8d0f917e783ff0e7880d2516be72adaa05664e0f9bfa0cfd622812e23146150b4fff0257784e48db1b9d72126f1a4518ae0c4a8c4a97e803a65a + languageName: node + linkType: hard + +"@cspell/dict-elixir@npm:^4.0.3": + version: 4.0.3 + resolution: "@cspell/dict-elixir@npm:4.0.3" + checksum: 10c0/c24b742b0615f310c89a05ded6648a63ee8e0a9d63326fd155846ce4acba2337a1cef3f58d653b9d8f4b6636d466dfeac2bf7122f374ae39a4d539894ebc5523 + languageName: node + linkType: hard + +"@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 + +"@cspell/dict-en-gb@npm:1.1.33": + version: 1.1.33 + resolution: "@cspell/dict-en-gb@npm:1.1.33" + checksum: 10c0/09563d1016f652dc8164a5f692be49beb78a847a54d5e470d406ae4db125bf8021db75d3db63f7a0c1d1b7a5dfbec4b709fb2ff3520447dcad690adb98d74130 + languageName: node + linkType: hard + +"@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.4": + version: 3.0.4 + resolution: "@cspell/dict-filetypes@npm:3.0.4" + checksum: 10c0/8400748182c641d3308acd827b126380fd4b9b428a1bedc6bed53f7e21ee011e8acc99c5b177b75d1bafe1bf7ae6b1a6bf45406bccdd346ef62d64089ad0285e + languageName: node + linkType: hard + +"@cspell/dict-fonts@npm:^4.0.0": + version: 4.0.0 + resolution: "@cspell/dict-fonts@npm:4.0.0" + checksum: 10c0/d7b62691ebb34cf5538f65e18e4188716a87e3fcd56cabde090040b5c81676bc0004304bda47bc14c58417ac710b4627b3513a5bbeb99be1fae6d9b5f291bd2c + languageName: node + linkType: hard + +"@cspell/dict-fsharp@npm:^1.0.1": + version: 1.0.1 + resolution: "@cspell/dict-fsharp@npm:1.0.1" + checksum: 10c0/bc1a83f35eab65e4704889cbfa4625dbbf07219987c2535f0c469f741f047ee8d14ea2fb65d32b669fd27b63a79a119b65e587d28ec9608e064a6f49d2274ca6 + languageName: node + linkType: hard + +"@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 + +"@cspell/dict-gaming-terms@npm:^1.0.5": + version: 1.0.5 + resolution: "@cspell/dict-gaming-terms@npm:1.0.5" + checksum: 10c0/2017d228104dcf1642fce087e1e1aae76927d0d05f229bd44d0652acfdf93c17e287079920b885f7d78bd9154434ace674d986e94425b9187e4984d54b410597 + languageName: node + linkType: hard + +"@cspell/dict-git@npm:^3.0.0": + version: 3.0.0 + resolution: "@cspell/dict-git@npm:3.0.0" + checksum: 10c0/baf9de7896f4da603600c735fe861c8ce3db8f8533ac6f52b0541096090ae8efcdcde33aab19b69e8bd6d72af45d664b1f2cfda6fbb157a81608bc6d0d39ce6d + languageName: node + linkType: hard + +"@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 + +"@cspell/dict-haskell@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-haskell@npm:4.0.1" + checksum: 10c0/7693a06b74a393aec35b67304ae56dad1ce3509951bec64053d992011e0309e9c420edd13a073ab3e500c0ac53e15dd92472097d689f7602c6d9ad10a2ee0dab + languageName: node + linkType: hard + +"@cspell/dict-html-symbol-entities@npm:^4.0.0": + version: 4.0.0 + resolution: "@cspell/dict-html-symbol-entities@npm:4.0.0" + checksum: 10c0/35d3223f02f0d091ac6a93424d4c31a075ece530bee00853ee1f5827e5ed25d08407a522a3c747cbfbaa891333df3aa9cf6107a21f2a030667f74228655c9081 + languageName: node + linkType: hard + +"@cspell/dict-html@npm:^4.0.5": + version: 4.0.5 + resolution: "@cspell/dict-html@npm:4.0.5" + checksum: 10c0/6e1b9262bba042a951a6020dfd99efb5fb3a29a5ad8bbdc96a1dd197dc1d89384448afd3b6ff7227a48f2439a90bd3b297566b35c94dcc032f8b473ac147c16a + languageName: node + linkType: hard + +"@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 + +"@cspell/dict-julia@npm:^1.0.1": + version: 1.0.1 + resolution: "@cspell/dict-julia@npm:1.0.1" + checksum: 10c0/7c8fbe4f1e6df956f9ad87b05fa6c21f19607951b1eaadda3823e43a533aa52bec54bf2887cb59308167d9bd9bf7252b0fffeb2ac50a1cc0d46bcfb0f561ac10 + languageName: node + linkType: hard + +"@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 + +"@cspell/dict-latex@npm:^4.0.0": + version: 4.0.0 + resolution: "@cspell/dict-latex@npm:4.0.0" + checksum: 10c0/d96392866378e680d2fe29770bb8f38b1abad8c2b5b29e003bdbfe7aee79de1841fe699b6e357629e7b94dbaf882fd33e5e316d066be7fc02f0cea6caa8dcde4 + languageName: node + linkType: hard + +"@cspell/dict-lorem-ipsum@npm:^4.0.0": + version: 4.0.0 + resolution: "@cspell/dict-lorem-ipsum@npm:4.0.0" + checksum: 10c0/9f518643664f4ccc8b3e4126abf78385d9ea4abd1d9fc4d5e89f3a140175c62e2d5f729a97845d912f899e908dd8a9ebbc3a0debd2a41f15cee7a2f15d44b04b + languageName: node + linkType: hard + +"@cspell/dict-lua@npm:^4.0.3": + version: 4.0.3 + resolution: "@cspell/dict-lua@npm:4.0.3" + checksum: 10c0/3c6bf9942f3194071d293c0024e3be1b203cdd953222cc4140e97572f1991697c3cc7b6be0c828788eaefb72e7013c8b41937e9b1c14188f79c38b45786fcca5 + languageName: node + linkType: hard + +"@cspell/dict-makefile@npm:^1.0.0": + version: 1.0.0 + resolution: "@cspell/dict-makefile@npm:1.0.0" + checksum: 10c0/b0618d71cfae52c8cbe023d316195ff7fc80b29504ed983e4994df6109b62ef1e3af00500cf60ad9489b9ca9ca85b33aeb8a56f6dfff4bf8e1ac08b25a38e823 + languageName: node + linkType: hard + +"@cspell/dict-monkeyc@npm:^1.0.6": + version: 1.0.6 + resolution: "@cspell/dict-monkeyc@npm:1.0.6" + checksum: 10c0/8d0889be1fda98825172b34330dfdf0b3da73fb0167cf4018771428e80ec91e205bc655538a9959ed5e7ebcc1f6842916485d037a726a098e725874b19c0ac9e + languageName: node + linkType: hard + +"@cspell/dict-node@npm:^4.0.3": + version: 4.0.3 + resolution: "@cspell/dict-node@npm:4.0.3" + checksum: 10c0/334ce75e5d3ad97dda48e33192ae2ce37d604b86e7f9d97dda1fe1468030735c6719257962d0e5a7413c63d194100e1348b86d05b5b724599175e75b0b3d29b2 + languageName: node + linkType: hard + +"@cspell/dict-node@npm:^5.0.1": + version: 5.0.1 + resolution: "@cspell/dict-node@npm:5.0.1" + checksum: 10c0/ef1d5fb11a4591dde96cc65425aff8f856a39d922c04b796e7cf4e4f6693a01ca32d24be3258334e9629a57b7213a5bd53d21189b1861e2f21b5113510980374 + languageName: node + linkType: hard + +"@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.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.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.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.2.1": + version: 4.2.1 + resolution: "@cspell/dict-python@npm:4.2.1" + dependencies: + "@cspell/dict-data-science": "npm:^2.0.1" + checksum: 10c0/652b5f3f918b8a82fcdf62cb6ae56a33819d658c871e418a6d907abf435b00ffaa5f136a518b190d304156bf0ce0c1d8189eea798e31bbf74d6d138e4f180950 + languageName: node + linkType: hard + +"@cspell/dict-r@npm:^2.0.1": + version: 2.0.1 + resolution: "@cspell/dict-r@npm:2.0.1" + checksum: 10c0/c8eead19fed04ff748c8ac75c55c4cf32b0383b0b9d05a23299e7e5d2d6f0c33fe94ff4c73080fdbd5b7e2fcdeaf726373a993122ec35e3a8f2b61f202c4a837 + languageName: node + linkType: hard + +"@cspell/dict-ruby@npm:^5.0.2": + version: 5.0.2 + resolution: "@cspell/dict-ruby@npm:5.0.2" + checksum: 10c0/d966f7cef9065d93671e82605bd30639ff3846b2cc3c89029a6b01898b0cc6575cf88d95e5854f9bc26fe5c02c4cefa7ff35ace4be401607cc4839ed26a116d1 + languageName: node + linkType: hard + +"@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.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.4.6": + version: 3.4.6 + resolution: "@cspell/dict-software-terms@npm:3.4.6" + checksum: 10c0/556440f7586ab023f53bb25b0bb38aaf8b4460476a3318f0f16133662cfbd60eeaeeb888f464affc10febf0ad436c1b568056a9f504c4f21849f5f46ee0718f8 + languageName: node + linkType: hard + +"@cspell/dict-sql@npm:^2.1.3": + version: 2.1.3 + resolution: "@cspell/dict-sql@npm:2.1.3" + checksum: 10c0/2b9037e51cc471a9bd6a1a79a6cdbd109646a170b5926d5174b29bdfce0a3fd096bc2ab0b9e6d49d5114760429cfce3bf424c3a1e6a15288a361b35860797400 + languageName: node + linkType: hard + +"@cspell/dict-svelte@npm:^1.0.2": + version: 1.0.2 + resolution: "@cspell/dict-svelte@npm:1.0.2" + checksum: 10c0/bd650fd25d2ea83808a69eb2a6cb7a5b82295c3dde1c334fc54ff439287c5bf13e3293397e2c45e8b2d1b69fd133e17f4eb920b64df2571c5a399ac1e206f551 + languageName: node + linkType: hard + +"@cspell/dict-swift@npm:^2.0.1": + version: 2.0.1 + resolution: "@cspell/dict-swift@npm:2.0.1" + checksum: 10c0/e29ffc8379d50ef9397018c25b1be05177d4ecb1e18d3b97834f9edf0306af349b5593d7d93a7f2624616c1beeb35eb1e56560d351f459b776c3dd6b2c0ac601 + languageName: node + linkType: hard + +"@cspell/dict-terraform@npm:^1.0.0": + version: 1.0.0 + resolution: "@cspell/dict-terraform@npm:1.0.0" + checksum: 10c0/ea6905b0ac588ec0dc5482dc85cd174e76ca7027a95da4ed7c9478608ab74848b0805e20df225761dc60ffa2c739696ddfe1bb194fc4204ccbdd81ac85e22fb5 + languageName: node + linkType: hard + +"@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 + +"@cspell/dict-vue@npm:^3.0.0": + version: 3.0.0 + resolution: "@cspell/dict-vue@npm:3.0.0" + checksum: 10c0/2995b912e26cf88cb6ec9728a9adc5b24a0243c001887d425b14a61ef2be22aca38fa99a84d7698d8982aef65c8db4abf583c3d916c2166b9e8d99cec80800cd + languageName: node + linkType: hard + +"@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/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/url@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/url@npm:8.9.0" + checksum: 10c0/72f5192e5db5f21989348ac29e470a0ef7620b255fc942ed1a482441414152882667d45a18421a71df6d39100a137f7b04c673f2d253349fe6effab7a016c528 + languageName: node + linkType: hard + +"@cspotcode/source-map-support@npm:^0.8.0": + version: 0.8.1 + resolution: "@cspotcode/source-map-support@npm:0.8.1" + dependencies: + "@jridgewell/trace-mapping": "npm:0.3.9" + checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6 + languageName: node + linkType: hard + +"@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" + filter-obj: "npm:^1.1.0" + has-own-property: "npm:^0.1.0" + identity-function: "npm:^1.0.0" + is-iterable: "npm:^1.1.0" + iterable-lookahead: "npm:^1.0.0" + lodash.curry: "npm:^4.1.1" + magic-string: "npm:^0.16.0" + map-obj: "npm:^2.0.0" + object-pairs: "npm:^0.1.0" + object-values: "npm:^1.0.0" + reverse-arguments: "npm:^1.0.0" + shell-quote-word: "npm:^1.0.1" + to-pascal-case: "npm:^1.0.0" + unescape-js: "npm:^1.0.5" + checksum: 10c0/668e83b4cf9c85f74fd874b4290c1b301e5903d5e54a575416d01948518744d9dc32439af5434ec6eaa253fcbf75e8c375e4155ce9e7ffaa1ae97f6001d2361d + languageName: node + linkType: hard + +"@esbuild/aix-ppc64@npm:0.20.2": + version: 0.20.2 + resolution: "@esbuild/aix-ppc64@npm:0.20.2" + conditions: os=aix & cpu=ppc64 + 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" + conditions: os=android & cpu=arm64 + 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" + conditions: os=android & cpu=arm + 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" + conditions: os=android & cpu=x64 + 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" + conditions: os=darwin & cpu=arm64 + 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" + conditions: os=darwin & cpu=x64 + 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" + conditions: os=freebsd & cpu=arm64 + 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" + conditions: os=freebsd & cpu=x64 + 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" + conditions: os=linux & cpu=arm64 + 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" + conditions: os=linux & cpu=arm + 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" + conditions: os=linux & cpu=ia32 + 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" + conditions: os=linux & cpu=loong64 + 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" + conditions: os=linux & cpu=mips64el + 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" + conditions: os=linux & cpu=ppc64 + 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" + conditions: os=linux & cpu=riscv64 + 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" + conditions: os=linux & cpu=s390x + 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" + conditions: os=linux & cpu=x64 + 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" + conditions: os=netbsd & cpu=x64 + 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" + conditions: os=openbsd & cpu=x64 + 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" + conditions: os=sunos & cpu=x64 + 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" + conditions: os=win32 & cpu=arm64 + 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" + conditions: os=win32 & cpu=ia32 + 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" + conditions: os=win32 & cpu=x64 + 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" + dependencies: + eslint-visitor-keys: "npm:^3.3.0" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e + languageName: node + linkType: hard + +"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1": + version: 4.10.1 + resolution: "@eslint-community/regexpp@npm:4.10.1" + checksum: 10c0/f59376025d0c91dd9fdf18d33941df499292a3ecba3e9889c360f3f6590197d30755604588786cdca0f9030be315a26b206014af4b65c0ff85b4ec49043de780 + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^2.1.4": + version: 2.1.4 + resolution: "@eslint/eslintrc@npm:2.1.4" + dependencies: + ajv: "npm:^6.12.4" + debug: "npm:^4.3.2" + espree: "npm:^9.6.0" + globals: "npm:^13.19.0" + ignore: "npm:^5.2.0" + import-fresh: "npm:^3.2.1" + js-yaml: "npm:^4.1.0" + minimatch: "npm:^3.1.2" + strip-json-comments: "npm:^3.1.1" + checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573 + languageName: node + linkType: hard + +"@eslint/js@npm:8.57.0": + version: 8.57.0 + resolution: "@eslint/js@npm:8.57.0" + checksum: 10c0/9a518bb8625ba3350613903a6d8c622352ab0c6557a59fe6ff6178bf882bf57123f9d92aa826ee8ac3ee74b9c6203fe630e9ee00efb03d753962dcf65ee4bd94 + languageName: node + linkType: hard + +"@ethersproject/abstract-provider@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/abstract-provider@npm:5.7.0" + dependencies: + "@ethersproject/bignumber": "npm:^5.7.0" + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + "@ethersproject/networks": "npm:^5.7.0" + "@ethersproject/properties": "npm:^5.7.0" + "@ethersproject/transactions": "npm:^5.7.0" + "@ethersproject/web": "npm:^5.7.0" + checksum: 10c0/a5708e2811b90ddc53d9318ce152511a32dd4771aa2fb59dbe9e90468bb75ca6e695d958bf44d13da684dc3b6aab03f63d425ff7591332cb5d7ddaf68dff7224 + languageName: node + linkType: hard + +"@ethersproject/abstract-signer@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/abstract-signer@npm:5.7.0" + dependencies: + "@ethersproject/abstract-provider": "npm:^5.7.0" + "@ethersproject/bignumber": "npm:^5.7.0" + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + "@ethersproject/properties": "npm:^5.7.0" + checksum: 10c0/e174966b3be17269a5974a3ae5eef6d15ac62ee8c300ceace26767f218f6bbf3de66f29d9a9c9ca300fa8551aab4c92e28d2cc772f5475fdeaa78d9b5be0e745 + languageName: node + linkType: hard + +"@ethersproject/address@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/address@npm:5.7.0" + dependencies: + "@ethersproject/bignumber": "npm:^5.7.0" + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/keccak256": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + "@ethersproject/rlp": "npm:^5.7.0" + checksum: 10c0/db5da50abeaae8f6cf17678323e8d01cad697f9a184b0593c62b71b0faa8d7e5c2ba14da78a998d691773ed6a8eb06701f65757218e0eaaeb134e5c5f3e5a908 + languageName: node + linkType: hard + +"@ethersproject/base64@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/base64@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + checksum: 10c0/4f748cd82af60ff1866db699fbf2bf057feff774ea0a30d1f03ea26426f53293ea10cc8265cda1695301da61093bedb8cc0d38887f43ed9dad96b78f19d7337e + languageName: node + linkType: hard + +"@ethersproject/basex@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/basex@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/properties": "npm:^5.7.0" + checksum: 10c0/02304de77477506ad798eb5c68077efd2531624380d770ef4a823e631a288fb680107a0f9dc4a6339b2a0b0f5b06ee77f53429afdad8f950cde0f3e40d30167d + languageName: node + linkType: hard + +"@ethersproject/bignumber@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/bignumber@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + bn.js: "npm:^5.2.1" + checksum: 10c0/14263cdc91a7884b141d9300f018f76f69839c47e95718ef7161b11d2c7563163096fee69724c5fa8ef6f536d3e60f1c605819edbc478383a2b98abcde3d37b2 + languageName: node + linkType: hard + +"@ethersproject/bytes@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/bytes@npm:5.7.0" + dependencies: + "@ethersproject/logger": "npm:^5.7.0" + checksum: 10c0/07dd1f0341b3de584ef26c8696674ff2bb032f4e99073856fc9cd7b4c54d1d846cabe149e864be267934658c3ce799e5ea26babe01f83af0e1f06c51e5ac791f + languageName: node + linkType: hard + +"@ethersproject/constants@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/constants@npm:5.7.0" + dependencies: + "@ethersproject/bignumber": "npm:^5.7.0" + checksum: 10c0/6df63ab753e152726b84595250ea722165a5744c046e317df40a6401f38556385a37c84dadf5b11ca651c4fb60f967046125369c57ac84829f6b30e69a096273 + languageName: node + linkType: hard + +"@ethersproject/hash@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/hash@npm:5.7.0" + dependencies: + "@ethersproject/abstract-signer": "npm:^5.7.0" + "@ethersproject/address": "npm:^5.7.0" + "@ethersproject/base64": "npm:^5.7.0" + "@ethersproject/bignumber": "npm:^5.7.0" + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/keccak256": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + "@ethersproject/properties": "npm:^5.7.0" + "@ethersproject/strings": "npm:^5.7.0" + checksum: 10c0/1a631dae34c4cf340dde21d6940dd1715fc7ae483d576f7b8ef9e8cb1d0e30bd7e8d30d4a7d8dc531c14164602323af2c3d51eb2204af18b2e15167e70c9a5ef + languageName: node + linkType: hard + +"@ethersproject/keccak256@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/keccak256@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + js-sha3: "npm:0.8.0" + checksum: 10c0/3b1a91706ff11f5ab5496840b9c36cedca27db443186d28b94847149fd16baecdc13f6fc5efb8359506392f2aba559d07e7f9c1e17a63f9d5de9f8053cfcb033 + languageName: node + linkType: hard + +"@ethersproject/logger@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/logger@npm:5.7.0" + checksum: 10c0/d03d460fb2d4a5e71c627b7986fb9e50e1b59a6f55e8b42a545b8b92398b961e7fd294bd9c3d8f92b35d0f6ff9d15aa14c95eab378f8ea194e943c8ace343501 + languageName: node + linkType: hard + +"@ethersproject/networks@npm:^5.7.0": + version: 5.7.1 + resolution: "@ethersproject/networks@npm:5.7.1" + dependencies: + "@ethersproject/logger": "npm:^5.7.0" + checksum: 10c0/9efcdce27f150459e85d74af3f72d5c32898823a99f5410e26bf26cca2d21fb14e403377314a93aea248e57fb2964e19cee2c3f7bfc586ceba4c803a8f1b75c0 + languageName: node + linkType: hard + +"@ethersproject/properties@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/properties@npm:5.7.0" + dependencies: + "@ethersproject/logger": "npm:^5.7.0" + checksum: 10c0/4fe5d36e5550b8e23a305aa236a93e8f04d891d8198eecdc8273914c761b0e198fd6f757877406ee3eb05033ec271132a3e5998c7bd7b9a187964fb4f67b1373 + languageName: node + linkType: hard + +"@ethersproject/providers@npm:5.7.2": + version: 5.7.2 + resolution: "@ethersproject/providers@npm:5.7.2" + dependencies: + "@ethersproject/abstract-provider": "npm:^5.7.0" + "@ethersproject/abstract-signer": "npm:^5.7.0" + "@ethersproject/address": "npm:^5.7.0" + "@ethersproject/base64": "npm:^5.7.0" + "@ethersproject/basex": "npm:^5.7.0" + "@ethersproject/bignumber": "npm:^5.7.0" + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/constants": "npm:^5.7.0" + "@ethersproject/hash": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + "@ethersproject/networks": "npm:^5.7.0" + "@ethersproject/properties": "npm:^5.7.0" + "@ethersproject/random": "npm:^5.7.0" + "@ethersproject/rlp": "npm:^5.7.0" + "@ethersproject/sha2": "npm:^5.7.0" + "@ethersproject/strings": "npm:^5.7.0" + "@ethersproject/transactions": "npm:^5.7.0" + "@ethersproject/web": "npm:^5.7.0" + bech32: "npm:1.1.4" + ws: "npm:7.4.6" + checksum: 10c0/4c8d19e6b31f769c24042fb2d02e483a4ee60dcbfca9e3291f0a029b24337c47d1ea719a390be856f8fd02997125819e834415e77da4fb2023369712348dae4c + languageName: node + linkType: hard + +"@ethersproject/random@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/random@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + checksum: 10c0/23e572fc55372653c22062f6a153a68c2e2d3200db734cd0d39621fbfd0ca999585bed2d5682e3ac65d87a2893048375682e49d1473d9965631ff56d2808580b + languageName: node + linkType: hard + +"@ethersproject/rlp@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/rlp@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + checksum: 10c0/bc863d21dcf7adf6a99ae75c41c4a3fb99698cfdcfc6d5d82021530f3d3551c6305bc7b6f0475ad6de6f69e91802b7e872bee48c0596d98969aefcf121c2a044 + languageName: node + linkType: hard + +"@ethersproject/sha2@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/sha2@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + hash.js: "npm:1.1.7" + checksum: 10c0/0e7f9ce6b1640817b921b9c6dd9dab8d5bf5a0ce7634d6a7d129b7366a576c2f90dcf4bcb15a0aa9310dde67028f3a44e4fcc2f26b565abcd2a0f465116ff3b1 + languageName: node + linkType: hard + +"@ethersproject/signing-key@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/signing-key@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + "@ethersproject/properties": "npm:^5.7.0" + bn.js: "npm:^5.2.1" + elliptic: "npm:6.5.4" + hash.js: "npm:1.1.7" + checksum: 10c0/fe2ca55bcdb6e370d81372191d4e04671234a2da872af20b03c34e6e26b97dc07c1ee67e91b673680fb13344c9d5d7eae52f1fa6117733a3d68652b778843e09 + languageName: node + linkType: hard + +"@ethersproject/strings@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/strings@npm:5.7.0" + dependencies: + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/constants": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + checksum: 10c0/570d87040ccc7d94de9861f76fc2fba6c0b84c5d6104a99a5c60b8a2401df2e4f24bf9c30afa536163b10a564a109a96f02e6290b80e8f0c610426f56ad704d1 + languageName: node + linkType: hard + +"@ethersproject/transactions@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/transactions@npm:5.7.0" + dependencies: + "@ethersproject/address": "npm:^5.7.0" + "@ethersproject/bignumber": "npm:^5.7.0" + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/constants": "npm:^5.7.0" + "@ethersproject/keccak256": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + "@ethersproject/properties": "npm:^5.7.0" + "@ethersproject/rlp": "npm:^5.7.0" + "@ethersproject/signing-key": "npm:^5.7.0" + checksum: 10c0/aa4d51379caab35b9c468ed1692a23ae47ce0de121890b4f7093c982ee57e30bd2df0c743faed0f44936d7e59c55fffd80479f2c28ec6777b8de06bfb638c239 + languageName: node + linkType: hard + +"@ethersproject/web@npm:^5.7.0": + version: 5.7.1 + resolution: "@ethersproject/web@npm:5.7.1" + dependencies: + "@ethersproject/base64": "npm:^5.7.0" + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/logger": "npm:^5.7.0" + "@ethersproject/properties": "npm:^5.7.0" + "@ethersproject/strings": "npm:^5.7.0" + checksum: 10c0/c82d6745c7f133980e8dab203955260e07da22fa544ccafdd0f21c79fae127bd6ef30957319e37b1cc80cddeb04d6bfb60f291bb14a97c9093d81ce50672f453 + languageName: node + linkType: hard + +"@humanwhocodes/config-array@npm:^0.11.14": + version: 0.11.14 + resolution: "@humanwhocodes/config-array@npm:0.11.14" + dependencies: + "@humanwhocodes/object-schema": "npm:^2.0.2" + debug: "npm:^4.3.1" + minimatch: "npm:^3.0.5" + checksum: 10c0/66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541 + languageName: node + linkType: hard + +"@humanwhocodes/module-importer@npm:^1.0.1": + version: 1.0.1 + resolution: "@humanwhocodes/module-importer@npm:1.0.1" + checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529 + languageName: node + linkType: hard + +"@humanwhocodes/object-schema@npm:^2.0.2": + version: 2.0.3 + resolution: "@humanwhocodes/object-schema@npm:2.0.3" + checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c + languageName: node + linkType: hard + +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" + dependencies: + string-width: "npm:^5.1.2" + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: "npm:^7.0.1" + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: "npm:^8.1.0" + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e + languageName: node + linkType: hard + +"@istanbuljs/load-nyc-config@npm:^1.0.0": + version: 1.1.0 + resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" + dependencies: + camelcase: "npm:^5.3.1" + find-up: "npm:^4.1.0" + get-package-type: "npm:^0.1.0" + js-yaml: "npm:^3.13.1" + resolve-from: "npm:^5.0.0" + checksum: 10c0/dd2a8b094887da5a1a2339543a4933d06db2e63cbbc2e288eb6431bd832065df0c099d091b6a67436e71b7d6bf85f01ce7c15f9253b4cbebcc3b9a496165ba42 + languageName: node + linkType: hard + +"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": + version: 0.1.3 + resolution: "@istanbuljs/schema@npm:0.1.3" + checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a + languageName: node + linkType: hard + +"@jest/console@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/console@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + jest-message-util: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + slash: "npm:^3.0.0" + checksum: 10c0/7be408781d0a6f657e969cbec13b540c329671819c2f57acfad0dae9dbfe2c9be859f38fe99b35dba9ff1536937dc6ddc69fdcd2794812fa3c647a1619797f6c + languageName: node + linkType: hard + +"@jest/core@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/core@npm:29.7.0" + dependencies: + "@jest/console": "npm:^29.7.0" + "@jest/reporters": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + ansi-escapes: "npm:^4.2.1" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + exit: "npm:^0.1.2" + graceful-fs: "npm:^4.2.9" + jest-changed-files: "npm:^29.7.0" + jest-config: "npm:^29.7.0" + jest-haste-map: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-regex-util: "npm:^29.6.3" + jest-resolve: "npm:^29.7.0" + jest-resolve-dependencies: "npm:^29.7.0" + jest-runner: "npm:^29.7.0" + jest-runtime: "npm:^29.7.0" + jest-snapshot: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-validate: "npm:^29.7.0" + jest-watcher: "npm:^29.7.0" + micromatch: "npm:^4.0.4" + pretty-format: "npm:^29.7.0" + slash: "npm:^3.0.0" + strip-ansi: "npm:^6.0.0" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + checksum: 10c0/934f7bf73190f029ac0f96662c85cd276ec460d407baf6b0dbaec2872e157db4d55a7ee0b1c43b18874602f662b37cb973dda469a4e6d88b4e4845b521adeeb2 + languageName: node + linkType: hard + +"@jest/environment@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/environment@npm:29.7.0" + dependencies: + "@jest/fake-timers": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + jest-mock: "npm:^29.7.0" + checksum: 10c0/c7b1b40c618f8baf4d00609022d2afa086d9c6acc706f303a70bb4b67275868f620ad2e1a9efc5edd418906157337cce50589a627a6400bbdf117d351b91ef86 + languageName: node + linkType: hard + +"@jest/expect-utils@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/expect-utils@npm:29.7.0" + dependencies: + jest-get-type: "npm:^29.6.3" + checksum: 10c0/60b79d23a5358dc50d9510d726443316253ecda3a7fb8072e1526b3e0d3b14f066ee112db95699b7a43ad3f0b61b750c72e28a5a1cac361d7a2bb34747fa938a + languageName: node + linkType: hard + +"@jest/expect@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/expect@npm:29.7.0" + dependencies: + expect: "npm:^29.7.0" + jest-snapshot: "npm:^29.7.0" + checksum: 10c0/b41f193fb697d3ced134349250aed6ccea075e48c4f803159db102b826a4e473397c68c31118259868fd69a5cba70e97e1c26d2c2ff716ca39dc73a2ccec037e + languageName: node + linkType: hard + +"@jest/fake-timers@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/fake-timers@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@sinonjs/fake-timers": "npm:^10.0.2" + "@types/node": "npm:*" + jest-message-util: "npm:^29.7.0" + jest-mock: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + checksum: 10c0/cf0a8bcda801b28dc2e2b2ba36302200ee8104a45ad7a21e6c234148932f826cb3bc57c8df3b7b815aeea0861d7b6ca6f0d4778f93b9219398ef28749e03595c + languageName: node + linkType: hard + +"@jest/globals@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/globals@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/expect": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + jest-mock: "npm:^29.7.0" + checksum: 10c0/a385c99396878fe6e4460c43bd7bb0a5cc52befb462cc6e7f2a3810f9e7bcce7cdeb51908fd530391ee452dc856c98baa2c5f5fa8a5b30b071d31ef7f6955cea + languageName: node + linkType: hard + +"@jest/reporters@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/reporters@npm:29.7.0" + dependencies: + "@bcoe/v8-coverage": "npm:^0.2.3" + "@jest/console": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@jridgewell/trace-mapping": "npm:^0.3.18" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + collect-v8-coverage: "npm:^1.0.0" + exit: "npm:^0.1.2" + glob: "npm:^7.1.3" + graceful-fs: "npm:^4.2.9" + istanbul-lib-coverage: "npm:^3.0.0" + istanbul-lib-instrument: "npm:^6.0.0" + istanbul-lib-report: "npm:^3.0.0" + istanbul-lib-source-maps: "npm:^4.0.0" + istanbul-reports: "npm:^3.1.3" + jest-message-util: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-worker: "npm:^29.7.0" + slash: "npm:^3.0.0" + string-length: "npm:^4.0.1" + strip-ansi: "npm:^6.0.0" + v8-to-istanbul: "npm:^9.0.1" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + checksum: 10c0/a754402a799541c6e5aff2c8160562525e2a47e7d568f01ebfc4da66522de39cbb809bbb0a841c7052e4270d79214e70aec3c169e4eae42a03bc1a8a20cb9fa2 + languageName: node + linkType: hard + +"@jest/schemas@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/schemas@npm:29.6.3" + dependencies: + "@sinclair/typebox": "npm:^0.27.8" + checksum: 10c0/b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be + languageName: node + linkType: hard + +"@jest/source-map@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/source-map@npm:29.6.3" + dependencies: + "@jridgewell/trace-mapping": "npm:^0.3.18" + callsites: "npm:^3.0.0" + graceful-fs: "npm:^4.2.9" + checksum: 10c0/a2f177081830a2e8ad3f2e29e20b63bd40bade294880b595acf2fc09ec74b6a9dd98f126a2baa2bf4941acd89b13a4ade5351b3885c224107083a0059b60a219 + languageName: node + linkType: hard + +"@jest/test-result@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/test-result@npm:29.7.0" + dependencies: + "@jest/console": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/istanbul-lib-coverage": "npm:^2.0.0" + collect-v8-coverage: "npm:^1.0.0" + checksum: 10c0/7de54090e54a674ca173470b55dc1afdee994f2d70d185c80236003efd3fa2b753fff51ffcdda8e2890244c411fd2267529d42c4a50a8303755041ee493e6a04 + languageName: node + linkType: hard + +"@jest/test-sequencer@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/test-sequencer@npm:29.7.0" + dependencies: + "@jest/test-result": "npm:^29.7.0" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^29.7.0" + slash: "npm:^3.0.0" + checksum: 10c0/593a8c4272797bb5628984486080cbf57aed09c7cfdc0a634e8c06c38c6bef329c46c0016e84555ee55d1cd1f381518cf1890990ff845524c1123720c8c1481b + languageName: node + linkType: hard + +"@jest/transform@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/transform@npm:29.7.0" + dependencies: + "@babel/core": "npm:^7.11.6" + "@jest/types": "npm:^29.6.3" + "@jridgewell/trace-mapping": "npm:^0.3.18" + babel-plugin-istanbul: "npm:^6.1.1" + chalk: "npm:^4.0.0" + convert-source-map: "npm:^2.0.0" + fast-json-stable-stringify: "npm:^2.1.0" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^29.7.0" + jest-regex-util: "npm:^29.6.3" + jest-util: "npm:^29.7.0" + micromatch: "npm:^4.0.4" + pirates: "npm:^4.0.4" + slash: "npm:^3.0.0" + write-file-atomic: "npm:^4.0.2" + checksum: 10c0/7f4a7f73dcf45dfdf280c7aa283cbac7b6e5a904813c3a93ead7e55873761fc20d5c4f0191d2019004fac6f55f061c82eb3249c2901164ad80e362e7a7ede5a6 + languageName: node + linkType: hard + +"@jest/types@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/types@npm:29.6.3" + dependencies: + "@jest/schemas": "npm:^29.6.3" + "@types/istanbul-lib-coverage": "npm:^2.0.0" + "@types/istanbul-reports": "npm:^3.0.0" + "@types/node": "npm:*" + "@types/yargs": "npm:^17.0.8" + chalk: "npm:^4.0.0" + checksum: 10c0/ea4e493dd3fb47933b8ccab201ae573dcc451f951dc44ed2a86123cd8541b82aa9d2b1031caf9b1080d6673c517e2dcc25a44b2dc4f3fbc37bfc965d444888c0 + languageName: node + linkType: hard + +"@jridgewell/gen-mapping@npm:^0.3.5": + version: 0.3.5 + resolution: "@jridgewell/gen-mapping@npm:0.3.5" + dependencies: + "@jridgewell/set-array": "npm:^1.2.1" + "@jridgewell/sourcemap-codec": "npm:^1.4.10" + "@jridgewell/trace-mapping": "npm:^0.3.24" + checksum: 10c0/1be4fd4a6b0f41337c4f5fdf4afc3bd19e39c3691924817108b82ffcb9c9e609c273f936932b9fba4b3a298ce2eb06d9bff4eb1cc3bd81c4f4ee1b4917e25feb + languageName: node + linkType: hard + +"@jridgewell/resolve-uri@npm:^3.0.3, @jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.2 + resolution: "@jridgewell/resolve-uri@npm:3.1.2" + checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e + languageName: node + linkType: hard + +"@jridgewell/set-array@npm:^1.2.1": + version: 1.2.1 + resolution: "@jridgewell/set-array@npm:1.2.1" + checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4 + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": + version: 1.4.15 + resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" + checksum: 10c0/0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5 + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:0.3.9": + version: 0.3.9 + resolution: "@jridgewell/trace-mapping@npm:0.3.9" + dependencies: + "@jridgewell/resolve-uri": "npm:^3.0.3" + "@jridgewell/sourcemap-codec": "npm:^1.4.10" + checksum: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": + version: 0.3.25 + resolution: "@jridgewell/trace-mapping@npm:0.3.25" + dependencies: + "@jridgewell/resolve-uri": "npm:^3.1.0" + "@jridgewell/sourcemap-codec": "npm:^1.4.14" + checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4 + languageName: node + linkType: hard + +"@nodelib/fs.scandir@npm:2.1.5": + version: 2.1.5 + resolution: "@nodelib/fs.scandir@npm:2.1.5" + dependencies: + "@nodelib/fs.stat": "npm:2.0.5" + run-parallel: "npm:^1.1.9" + checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb + languageName: node + linkType: hard + +"@nodelib/fs.scandir@npm:3.0.0": + version: 3.0.0 + resolution: "@nodelib/fs.scandir@npm:3.0.0" + dependencies: + "@nodelib/fs.stat": "npm:3.0.0" + run-parallel: "npm:^1.2.0" + checksum: 10c0/ff557a1d4dc779e41dd1108f92690a03bc3f0debd26a2c4d890fa3fe606646c2e6d958a9ccb3e59f2fd4751eed405151b7f1ab18947b5909ad67b64e155bc760 + languageName: node + linkType: hard + +"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": + version: 2.0.5 + resolution: "@nodelib/fs.stat@npm:2.0.5" + checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d + languageName: node + linkType: hard + +"@nodelib/fs.stat@npm:3.0.0": + version: 3.0.0 + resolution: "@nodelib/fs.stat@npm:3.0.0" + checksum: 10c0/c798b6b07a3d93e29a98699dbda3380d28fe05194b2396b2d02670249691fe2758e0a7a32f1f760dabcbde05f3e0b2822c4b94e40c6c27b2db914c806e162687 + languageName: node + linkType: hard + +"@nodelib/fs.walk@npm:2.0.0": + version: 2.0.0 + resolution: "@nodelib/fs.walk@npm:2.0.0" + dependencies: + "@nodelib/fs.scandir": "npm:3.0.0" + fastq: "npm:^1.15.0" + checksum: 10c0/e490143c4596c89797f7c375104aeb0409a68492cd92c9344fcf2408a5a876580b56282b3d960d7f7d1346a41fd29cbb588707ac8dcc0b8d048ab38e1d2709cf + languageName: node + linkType: hard + +"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": + version: 1.2.8 + resolution: "@nodelib/fs.walk@npm:1.2.8" + dependencies: + "@nodelib/fs.scandir": "npm:2.1.5" + fastq: "npm:^1.6.0" + checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1 + languageName: node + linkType: hard + +"@npmcli/agent@npm:^2.0.0": + version: 2.2.2 + resolution: "@npmcli/agent@npm:2.2.2" + dependencies: + agent-base: "npm:^7.1.0" + http-proxy-agent: "npm:^7.0.0" + https-proxy-agent: "npm:^7.0.1" + lru-cache: "npm:^10.0.1" + socks-proxy-agent: "npm:^8.0.3" + checksum: 10c0/325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae + languageName: node + linkType: hard + +"@npmcli/fs@npm:^3.1.0": + version: 3.1.1 + resolution: "@npmcli/fs@npm:3.1.1" + dependencies: + semver: "npm:^7.3.5" + checksum: 10c0/c37a5b4842bfdece3d14dfdb054f73fe15ed2d3da61b34ff76629fb5b1731647c49166fd2a8bf8b56fcfa51200382385ea8909a3cbecdad612310c114d3f6c99 + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd + languageName: node + linkType: hard + +"@pkgr/core@npm:^0.1.0": + version: 0.1.1 + resolution: "@pkgr/core@npm:0.1.1" + checksum: 10c0/3f7536bc7f57320ab2cf96f8973664bef624710c403357429fbf680a5c3b4843c1dbd389bb43daa6b1f6f1f007bb082f5abcb76bb2b5dc9f421647743b71d3d8 + languageName: node + linkType: hard + +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 10c0/ef6351ae073c45c2ac89494dbb3e1f87cc60a93ce4cde797b782812b6f97da0d620ae81973f104b43c9b7eaa789ad20ba4f6a1359f1cc62f63729a55a7d22d4e + languageName: node + linkType: hard + +"@sinonjs/commons@npm:^3.0.0": + version: 3.0.1 + resolution: "@sinonjs/commons@npm:3.0.1" + dependencies: + type-detect: "npm:4.0.8" + checksum: 10c0/1227a7b5bd6c6f9584274db996d7f8cee2c8c350534b9d0141fc662eaf1f292ea0ae3ed19e5e5271c8fd390d27e492ca2803acd31a1978be2cdc6be0da711403 + languageName: node + linkType: hard + +"@sinonjs/fake-timers@npm:^10.0.2": + version: 10.3.0 + resolution: "@sinonjs/fake-timers@npm:10.3.0" + dependencies: + "@sinonjs/commons": "npm:^3.0.0" + checksum: 10c0/2e2fb6cc57f227912814085b7b01fede050cd4746ea8d49a1e44d5a0e56a804663b0340ae2f11af7559ea9bf4d087a11f2f646197a660ea3cb04e19efc04aa63 + languageName: node + linkType: hard + +"@snyk/github-codeowners@npm:1.1.0": + version: 1.1.0 + resolution: "@snyk/github-codeowners@npm:1.1.0" + dependencies: + commander: "npm:^4.1.1" + ignore: "npm:^5.1.8" + p-map: "npm:^4.0.0" + bin: + github-codeowners: dist/cli.js + checksum: 10c0/92d860a904a1e67f8563d4ac4d540cc613f71193f7968933b4a4b1526e80a97f536f52d27762c158e3e39d48c2f3db4906ec78846309351c741abb1a28653af9 + languageName: node + linkType: hard + +"@tsconfig/node10@npm:^1.0.7": + version: 1.0.11 + resolution: "@tsconfig/node10@npm:1.0.11" + checksum: 10c0/28a0710e5d039e0de484bdf85fee883bfd3f6a8980601f4d44066b0a6bcd821d31c4e231d1117731c4e24268bd4cf2a788a6787c12fc7f8d11014c07d582783c + languageName: node + linkType: hard + +"@tsconfig/node12@npm:^1.0.7": + version: 1.0.11 + resolution: "@tsconfig/node12@npm:1.0.11" + checksum: 10c0/dddca2b553e2bee1308a056705103fc8304e42bb2d2cbd797b84403a223b25c78f2c683ec3e24a095e82cd435387c877239bffcb15a590ba817cd3f6b9a99fd9 + languageName: node + linkType: hard + +"@tsconfig/node14@npm:^1.0.0": + version: 1.0.3 + resolution: "@tsconfig/node14@npm:1.0.3" + checksum: 10c0/67c1316d065fdaa32525bc9449ff82c197c4c19092b9663b23213c8cbbf8d88b6ed6a17898e0cbc2711950fbfaf40388938c1c748a2ee89f7234fc9e7fe2bf44 + languageName: node + linkType: hard + +"@tsconfig/node16@npm:^1.0.2": + version: 1.0.4 + resolution: "@tsconfig/node16@npm:1.0.4" + checksum: 10c0/05f8f2734e266fb1839eb1d57290df1664fe2aa3b0fdd685a9035806daa635f7519bf6d5d9b33f6e69dd545b8c46bd6e2b5c79acb2b1f146e885f7f11a42a5bb + languageName: node + linkType: hard + +"@types/babel__core@npm:^7.1.14": + version: 7.20.5 + resolution: "@types/babel__core@npm:7.20.5" + dependencies: + "@babel/parser": "npm:^7.20.7" + "@babel/types": "npm:^7.20.7" + "@types/babel__generator": "npm:*" + "@types/babel__template": "npm:*" + "@types/babel__traverse": "npm:*" + checksum: 10c0/bdee3bb69951e833a4b811b8ee9356b69a61ed5b7a23e1a081ec9249769117fa83aaaf023bb06562a038eb5845155ff663e2d5c75dd95c1d5ccc91db012868ff + languageName: node + linkType: hard + +"@types/babel__generator@npm:*": + version: 7.6.8 + resolution: "@types/babel__generator@npm:7.6.8" + dependencies: + "@babel/types": "npm:^7.0.0" + checksum: 10c0/f0ba105e7d2296bf367d6e055bb22996886c114261e2cb70bf9359556d0076c7a57239d019dee42bb063f565bade5ccb46009bce2044b2952d964bf9a454d6d2 + languageName: node + linkType: hard + +"@types/babel__template@npm:*": + version: 7.4.4 + resolution: "@types/babel__template@npm:7.4.4" + dependencies: + "@babel/parser": "npm:^7.1.0" + "@babel/types": "npm:^7.0.0" + checksum: 10c0/cc84f6c6ab1eab1427e90dd2b76ccee65ce940b778a9a67be2c8c39e1994e6f5bbc8efa309f6cea8dc6754994524cd4d2896558df76d92e7a1f46ecffee7112b + languageName: node + linkType: hard + +"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6": + version: 7.20.6 + resolution: "@types/babel__traverse@npm:7.20.6" + dependencies: + "@babel/types": "npm:^7.20.7" + checksum: 10c0/7ba7db61a53e28cac955aa99af280d2600f15a8c056619c05b6fc911cbe02c61aa4f2823299221b23ce0cce00b294c0e5f618ec772aa3f247523c2e48cf7b888 + languageName: node + linkType: hard + +"@types/graceful-fs@npm:^4.1.3": + version: 4.1.9 + resolution: "@types/graceful-fs@npm:4.1.9" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/235d2fc69741448e853333b7c3d1180a966dd2b8972c8cbcd6b2a0c6cd7f8d582ab2b8e58219dbc62cce8f1b40aa317ff78ea2201cdd8249da5025adebed6f0b + languageName: node + linkType: hard + +"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0, @types/istanbul-lib-coverage@npm:^2.0.1": + version: 2.0.6 + resolution: "@types/istanbul-lib-coverage@npm:2.0.6" + checksum: 10c0/3948088654f3eeb45363f1db158354fb013b362dba2a5c2c18c559484d5eb9f6fd85b23d66c0a7c2fcfab7308d0a585b14dadaca6cc8bf89ebfdc7f8f5102fb7 + languageName: node + linkType: hard + +"@types/istanbul-lib-report@npm:*": + version: 3.0.3 + resolution: "@types/istanbul-lib-report@npm:3.0.3" + dependencies: + "@types/istanbul-lib-coverage": "npm:*" + checksum: 10c0/247e477bbc1a77248f3c6de5dadaae85ff86ac2d76c5fc6ab1776f54512a745ff2a5f791d22b942e3990ddbd40f3ef5289317c4fca5741bedfaa4f01df89051c + languageName: node + linkType: hard + +"@types/istanbul-reports@npm:^3.0.0": + version: 3.0.4 + resolution: "@types/istanbul-reports@npm:3.0.4" + dependencies: + "@types/istanbul-lib-report": "npm:*" + checksum: 10c0/1647fd402aced5b6edac87274af14ebd6b3a85447ef9ad11853a70fd92a98d35f81a5d3ea9fcb5dbb5834e800c6e35b64475e33fcae6bfa9acc70d61497c54ee + languageName: node + linkType: hard + +"@types/jest@npm:^29.5.12": + version: 29.5.12 + resolution: "@types/jest@npm:29.5.12" + dependencies: + expect: "npm:^29.0.0" + pretty-format: "npm:^29.0.0" + checksum: 10c0/25fc8e4c611fa6c4421e631432e9f0a6865a8cb07c9815ec9ac90d630271cad773b2ee5fe08066f7b95bebd18bb967f8ce05d018ee9ab0430f9dfd1d84665b6f + languageName: node + linkType: hard + +"@types/minimist@npm:^1.2.0": + version: 1.2.5 + resolution: "@types/minimist@npm:1.2.5" + checksum: 10c0/3f791258d8e99a1d7d0ca2bda1ca6ea5a94e5e7b8fc6cde84dd79b0552da6fb68ade750f0e17718f6587783c24254bbca0357648dd59dc3812c150305cabdc46 + languageName: node + linkType: hard + +"@types/node-fetch@npm:^2.6.11": + version: 2.6.11 + resolution: "@types/node-fetch@npm:2.6.11" + dependencies: + "@types/node": "npm:*" + form-data: "npm:^4.0.0" + checksum: 10c0/5283d4e0bcc37a5b6d8e629aee880a4ffcfb33e089f4b903b2981b19c623972d1e64af7c3f9540ab990f0f5c89b9b5dda19c5bcb37a8e177079e93683bfd2f49 + languageName: node + linkType: hard + +"@types/node@npm:*, @types/node@npm:^20.11.19": + version: 20.14.5 + resolution: "@types/node@npm:20.14.5" + dependencies: + undici-types: "npm:~5.26.4" + checksum: 10c0/06a8c304b5f7f190d4497807dc67ad09ee7b14ea2996bfdc823553c624698d8cab1ef9d16f8b764f20cb9eb11caa0e832787741e9ef70e1c89d620797ab28436 + languageName: node + linkType: hard + +"@types/normalize-package-data@npm:^2.4.0": + version: 2.4.4 + resolution: "@types/normalize-package-data@npm:2.4.4" + checksum: 10c0/aef7bb9b015883d6f4119c423dd28c4bdc17b0e8a0ccf112c78b4fe0e91fbc4af7c6204b04bba0e199a57d2f3fbbd5b4a14bf8739bf9d2a39b2a0aad545e0f86 + languageName: node + linkType: hard + +"@types/stack-utils@npm:^2.0.0": + version: 2.0.3 + resolution: "@types/stack-utils@npm:2.0.3" + checksum: 10c0/1f4658385ae936330581bcb8aa3a066df03867d90281cdf89cc356d404bd6579be0f11902304e1f775d92df22c6dd761d4451c804b0a4fba973e06211e9bd77c + languageName: node + linkType: hard + +"@types/yargs-parser@npm:*": + version: 21.0.3 + resolution: "@types/yargs-parser@npm:21.0.3" + checksum: 10c0/e71c3bd9d0b73ca82e10bee2064c384ab70f61034bbfb78e74f5206283fc16a6d85267b606b5c22cb2a3338373586786fed595b2009825d6a9115afba36560a0 + languageName: node + linkType: hard + +"@types/yargs@npm:^17.0.8": + version: 17.0.32 + resolution: "@types/yargs@npm:17.0.32" + dependencies: + "@types/yargs-parser": "npm:*" + checksum: 10c0/2095e8aad8a4e66b86147415364266b8d607a3b95b4239623423efd7e29df93ba81bb862784a6e08664f645cc1981b25fd598f532019174cd3e5e1e689e1cccf + languageName: node + linkType: hard + +"@typescript-eslint/eslint-plugin@npm:^7.0.1": + 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.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" + ts-api-utils: "npm:^1.3.0" + peerDependencies: + "@typescript-eslint/parser": ^7.0.0 + eslint: ^8.56.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/6677f9c090a25978e4e20c24d67365ad89ca1208ebd2bb103d3f1e15a7deea22dea538e9f61f3a3d4f03a741179acf58c02ad7d03f805aceabb78929a8dc1908 + languageName: node + linkType: hard + +"@typescript-eslint/parser@npm:^7.0.1": + version: 7.13.1 + resolution: "@typescript-eslint/parser@npm:7.13.1" + dependencies: + "@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/455d067bfb81fa3d133c75ebc4d8d7f2de5001441585f5b58dc8b0d4380d7397dc3745e11a9299d596dfa581265fdcdea6c28b2ddd2d3b542869c851ecd52fcd + languageName: node + linkType: hard + +"@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.13.1" + "@typescript-eslint/visitor-keys": "npm:7.13.1" + checksum: 10c0/3d8770bf9c89e7a07e54efbc3dac6df02c0ce49d49575076111ac663566c90cbb852f06c94a311db7c0aec1fab0417f3ef6e601b3852aa30bed75c65f4f076f4 + languageName: node + linkType: hard + +"@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.13.1" + "@typescript-eslint/utils": "npm:7.13.1" + debug: "npm:^4.3.4" + ts-api-utils: "npm:^1.3.0" + peerDependencies: + eslint: ^8.56.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/c02305dccb0b2c7dcc9249230078c83e851ee589f93e08eb6cdc0b4c38d78d85ef4996631ac427836ee9d0a868ac031417feb74a6e4d0600096f41ca3c0e99a0 + languageName: node + linkType: hard + +"@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.13.1": + version: 7.13.1 + resolution: "@typescript-eslint/typescript-estree@npm:7.13.1" + dependencies: + "@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" + minimatch: "npm:^9.0.4" + semver: "npm:^7.6.0" + ts-api-utils: "npm:^1.3.0" + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/bd5c8951ae79e8eacd05ff100def02926c633045a1a54426f98f20b4ca31c485968af3226dd7939934dfaf36a6b5fcb3386948e2a7d763ddee2db905ac187ebc + languageName: node + linkType: hard + +"@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.13.1" + "@typescript-eslint/types": "npm:7.13.1" + "@typescript-eslint/typescript-estree": "npm:7.13.1" + peerDependencies: + eslint: ^8.56.0 + checksum: 10c0/d2f6be42a80608ed265b34a5f6a0c97dc0b627d53b91e83d87c7d67541cb5b3c038e7320026b4ad8dfafe1ac07a0554efa8fe7673f54d74b68c253d6f9519bb6 + languageName: node + linkType: hard + +"@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.13.1" + eslint-visitor-keys: "npm:^3.4.3" + checksum: 10c0/23c1bb896173cadfb33e3801420a70aa2f0481384caa3b534b04f7920acdb9d8f7d635fcaf1f8c7fc78ebce71b8f2435391608d120091761ad2e2c00eb870832 + languageName: node + linkType: hard + +"@ubiquity-dao/rpc-handler@workspace:.": + version: 0.0.0-use.local + resolution: "@ubiquity-dao/rpc-handler@workspace:." + dependencies: + "@babel/core": "npm:^7.24.0" + "@babel/preset-env": "npm:^7.24.0" + "@babel/preset-typescript": "npm:^7.23.3" + "@commitlint/cli": "npm:^18.6.1" + "@commitlint/config-conventional": "npm:^18.6.2" + "@cspell/dict-node": "npm:^4.0.3" + "@cspell/dict-software-terms": "npm:^3.3.18" + "@cspell/dict-typescript": "npm:^3.1.2" + "@ethersproject/providers": "npm:5.7.2" + "@types/jest": "npm:^29.5.12" + "@types/node": "npm:^20.11.19" + "@types/node-fetch": "npm:^2.6.11" + "@typescript-eslint/eslint-plugin": "npm:^7.0.1" + "@typescript-eslint/parser": "npm:^7.0.1" + axios: "npm:^1.7.1" + cspell: "npm:^8.4.0" + esbuild: "npm:^0.20.1" + eslint: "npm:^8.56.0" + eslint-config-prettier: "npm:^9.1.0" + eslint-plugin-prettier: "npm:^5.1.3" + eslint-plugin-sonarjs: "npm:^0.24.0" + husky: "npm:^9.0.11" + jest: "npm:^29.7.0" + jest-junit: "npm:16.0.0" + knip: "npm:^5.0.1" + lint-staged: "npm:^15.2.2" + node-fetch: "npm:^3.3.2" + npm-run-all: "npm:^4.1.5" + prettier: "npm:^3.2.5" + ts-jest: "npm:^29.1.2" + ts-node: "npm:10.9.2" + tsx: "npm:^4.7.1" + typescript: "npm:^5.3.3" + languageName: unknown + linkType: soft + +"@ungap/structured-clone@npm:^1.2.0": + version: 1.2.0 + resolution: "@ungap/structured-clone@npm:1.2.0" + checksum: 10c0/8209c937cb39119f44eb63cf90c0b73e7c754209a6411c707be08e50e29ee81356dca1a848a405c8bdeebfe2f5e4f831ad310ae1689eeef65e7445c090c6657d + languageName: node + linkType: hard + +"JSONStream@npm:^1.3.5": + version: 1.3.5 + resolution: "JSONStream@npm:1.3.5" + dependencies: + jsonparse: "npm:^1.2.0" + through: "npm:>=2.2.7 <3" + bin: + JSONStream: ./bin.js + checksum: 10c0/0f54694da32224d57b715385d4a6b668d2117379d1f3223dc758459246cca58fdc4c628b83e8a8883334e454a0a30aa198ede77c788b55537c1844f686a751f2 + languageName: node + linkType: hard + +"abbrev@npm:^2.0.0": + version: 2.0.0 + resolution: "abbrev@npm:2.0.0" + checksum: 10c0/f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372 + languageName: node + linkType: hard + +"acorn-jsx@npm:^5.3.2": + version: 5.3.2 + resolution: "acorn-jsx@npm:5.3.2" + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: 10c0/4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1 + languageName: node + linkType: hard + +"acorn-walk@npm:^8.1.1": + 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.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/a19f9dead009d3b430fa3c253710b47778cdaace15b316de6de93a68c355507bc1072a9956372b6c990cbeeb167d4a929249d0faeb8ae4bb6911d68d53299549 + languageName: node + linkType: hard + +"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0, agent-base@npm:^7.1.1": + version: 7.1.1 + resolution: "agent-base@npm:7.1.1" + dependencies: + debug: "npm:^4.3.4" + checksum: 10c0/e59ce7bed9c63bf071a30cc471f2933862044c97fd9958967bfe22521d7a0f601ce4ed5a8c011799d0c726ca70312142ae193bbebb60f576b52be19d4a363b50 + languageName: node + linkType: hard + +"aggregate-error@npm:^3.0.0": + version: 3.1.0 + resolution: "aggregate-error@npm:3.1.0" + dependencies: + clean-stack: "npm:^2.0.0" + indent-string: "npm:^4.0.0" + checksum: 10c0/a42f67faa79e3e6687a4923050e7c9807db3848a037076f791d10e092677d65c1d2d863b7848560699f40fc0502c19f40963fb1cd1fb3d338a7423df8e45e039 + languageName: node + linkType: hard + +"ajv@npm:^6.12.4": + version: 6.12.6 + resolution: "ajv@npm:6.12.6" + dependencies: + fast-deep-equal: "npm:^3.1.1" + fast-json-stable-stringify: "npm:^2.0.0" + json-schema-traverse: "npm:^0.4.1" + uri-js: "npm:^4.2.2" + checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 + languageName: node + linkType: hard + +"ajv@npm:^8.11.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/6fc38aa8fd4fbfaa7096ac049e48c0cb440db36b76fef2d7d5b7d92b102735670d055d412d19176c08c9d48eaa9d06661b67e59f04943dc71ab1551e0484f88c + languageName: node + linkType: hard + +"ansi-escapes@npm:^4.2.1": + version: 4.3.2 + resolution: "ansi-escapes@npm:4.3.2" + dependencies: + type-fest: "npm:^0.21.3" + checksum: 10c0/da917be01871525a3dfcf925ae2977bc59e8c513d4423368645634bf5d4ceba5401574eb705c1e92b79f7292af5a656f78c5725a4b0e1cec97c4b413705c1d50 + languageName: node + linkType: hard + +"ansi-escapes@npm:^6.2.0": + version: 6.2.1 + resolution: "ansi-escapes@npm:6.2.1" + checksum: 10c0/a2c6f58b044be5f69662ee17073229b492daa2425a7fd99a665db6c22eab6e4ab42752807def7281c1c7acfed48f87f2362dda892f08c2c437f1b39c6b033103 + languageName: node + linkType: hard + +"ansi-regex@npm:^5.0.1": + version: 5.0.1 + resolution: "ansi-regex@npm:5.0.1" + checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 + languageName: node + linkType: hard + +"ansi-regex@npm:^6.0.1": + version: 6.0.1 + resolution: "ansi-regex@npm:6.0.1" + checksum: 10c0/cbe16dbd2c6b2735d1df7976a7070dd277326434f0212f43abf6d87674095d247968209babdaad31bb00882fa68807256ba9be340eec2f1004de14ca75f52a08 + languageName: node + linkType: hard + +"ansi-styles@npm:^3.2.1": + version: 3.2.1 + resolution: "ansi-styles@npm:3.2.1" + dependencies: + color-convert: "npm:^1.9.0" + checksum: 10c0/ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b + languageName: node + linkType: hard + +"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": + version: 4.3.0 + resolution: "ansi-styles@npm:4.3.0" + dependencies: + color-convert: "npm:^2.0.1" + checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 + languageName: node + linkType: hard + +"ansi-styles@npm:^5.0.0": + version: 5.2.0 + resolution: "ansi-styles@npm:5.2.0" + checksum: 10c0/9c4ca80eb3c2fb7b33841c210d2f20807f40865d27008d7c3f707b7f95cab7d67462a565e2388ac3285b71cb3d9bb2173de8da37c57692a362885ec34d6e27df + languageName: node + linkType: hard + +"ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1": + version: 6.2.1 + resolution: "ansi-styles@npm:6.2.1" + checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c + languageName: node + linkType: hard + +"anymatch@npm:^3.0.3": + version: 3.1.3 + resolution: "anymatch@npm:3.1.3" + dependencies: + normalize-path: "npm:^3.0.0" + picomatch: "npm:^2.0.4" + checksum: 10c0/57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac + languageName: node + linkType: hard + +"arg@npm:^4.1.0": + version: 4.1.3 + resolution: "arg@npm:4.1.3" + checksum: 10c0/070ff801a9d236a6caa647507bdcc7034530604844d64408149a26b9e87c2f97650055c0f049abd1efc024b334635c01f29e0b632b371ac3f26130f4cf65997a + languageName: node + linkType: hard + +"argparse@npm:^1.0.7": + version: 1.0.10 + resolution: "argparse@npm:1.0.10" + dependencies: + sprintf-js: "npm:~1.0.2" + checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de + languageName: node + linkType: hard + +"argparse@npm:^2.0.1": + version: 2.0.1 + resolution: "argparse@npm:2.0.1" + checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e + languageName: node + linkType: hard + +"arity-n@npm:^1.0.4": + version: 1.0.4 + resolution: "arity-n@npm:1.0.4" + checksum: 10c0/31c390104bf3b9275574c9d59df67b8a2684981b93ca728a99c4f92241b71b8089b1e99b732f889891e78087887b49a59c885167e2185303449bece83e8d7f9c + languageName: node + linkType: hard + +"array-buffer-byte-length@npm:^1.0.1": + version: 1.0.1 + resolution: "array-buffer-byte-length@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.5" + is-array-buffer: "npm:^3.0.4" + checksum: 10c0/f5cdf54527cd18a3d2852ddf73df79efec03829e7373a8322ef5df2b4ef546fb365c19c71d6b42d641cb6bfe0f1a2f19bc0ece5b533295f86d7c3d522f228917 + languageName: node + linkType: hard + +"array-ify@npm:^1.0.0": + version: 1.0.0 + resolution: "array-ify@npm:1.0.0" + checksum: 10c0/75c9c072faac47bd61779c0c595e912fe660d338504ac70d10e39e1b8a4a0c9c87658703d619b9d1b70d324177ae29dc8d07dda0d0a15d005597bc4c5a59c70c + languageName: node + linkType: hard + +"array-last@npm:^1.1.1": + version: 1.3.0 + resolution: "array-last@npm:1.3.0" + dependencies: + is-number: "npm:^4.0.0" + checksum: 10c0/bb620e744fab80b104a5eddfa828eb915451ffc23b737e76b2ecfbbef42e1a9557ca85d280cde10c5d12b4627d15857e7312a2f20d9ecc45f1e52d745a591438 + languageName: node + linkType: hard + +"array-timsort@npm:^1.0.3": + version: 1.0.3 + resolution: "array-timsort@npm:1.0.3" + checksum: 10c0/bd3a1707b621947265c89867e67c9102b9b9f4c50f5b3974220112290d8b60d26ce60595edec5deed3325207b759d70b758bed3cd310b5ddadb835657ffb6d12 + languageName: node + linkType: hard + +"array-union@npm:^2.1.0": + version: 2.1.0 + resolution: "array-union@npm:2.1.0" + checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962 + languageName: node + linkType: hard + +"arraybuffer.prototype.slice@npm:^1.0.3": + version: 1.0.3 + resolution: "arraybuffer.prototype.slice@npm:1.0.3" + dependencies: + array-buffer-byte-length: "npm:^1.0.1" + call-bind: "npm:^1.0.5" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.22.3" + es-errors: "npm:^1.2.1" + get-intrinsic: "npm:^1.2.3" + is-array-buffer: "npm:^3.0.4" + is-shared-array-buffer: "npm:^1.0.2" + checksum: 10c0/d32754045bcb2294ade881d45140a5e52bda2321b9e98fa514797b7f0d252c4c5ab0d1edb34112652c62fa6a9398def568da63a4d7544672229afea283358c36 + languageName: node + linkType: hard + +"arrify@npm:^1.0.1": + version: 1.0.1 + resolution: "arrify@npm:1.0.1" + checksum: 10c0/c35c8d1a81bcd5474c0c57fe3f4bad1a4d46a5fa353cedcff7a54da315df60db71829e69104b859dff96c5d68af46bd2be259fe5e50dc6aa9df3b36bea0383ab + languageName: node + linkType: hard + +"asynckit@npm:^0.4.0": + version: 0.4.0 + resolution: "asynckit@npm:0.4.0" + checksum: 10c0/d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d + languageName: node + linkType: hard + +"available-typed-arrays@npm:^1.0.7": + version: 1.0.7 + resolution: "available-typed-arrays@npm:1.0.7" + dependencies: + possible-typed-array-names: "npm:^1.0.0" + checksum: 10c0/d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2 + languageName: node + linkType: hard + +"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/cbd47ce380fe045313364e740bb03b936420b8b5558c7ea36a4563db1258c658f05e40feb5ddd41f6633fdd96d37ac2a76f884dad599c5b0224b4c451b3fa7ae + languageName: node + linkType: hard + +"babel-jest@npm:^29.7.0": + version: 29.7.0 + resolution: "babel-jest@npm:29.7.0" + dependencies: + "@jest/transform": "npm:^29.7.0" + "@types/babel__core": "npm:^7.1.14" + babel-plugin-istanbul: "npm:^6.1.1" + babel-preset-jest: "npm:^29.6.3" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + slash: "npm:^3.0.0" + peerDependencies: + "@babel/core": ^7.8.0 + checksum: 10c0/2eda9c1391e51936ca573dd1aedfee07b14c59b33dbe16ef347873ddd777bcf6e2fc739681e9e9661ab54ef84a3109a03725be2ac32cd2124c07ea4401cbe8c1 + languageName: node + linkType: hard + +"babel-plugin-istanbul@npm:^6.1.1": + version: 6.1.1 + resolution: "babel-plugin-istanbul@npm:6.1.1" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.0.0" + "@istanbuljs/load-nyc-config": "npm:^1.0.0" + "@istanbuljs/schema": "npm:^0.1.2" + istanbul-lib-instrument: "npm:^5.0.4" + test-exclude: "npm:^6.0.0" + checksum: 10c0/1075657feb705e00fd9463b329921856d3775d9867c5054b449317d39153f8fbcebd3e02ebf00432824e647faff3683a9ca0a941325ef1afe9b3c4dd51b24beb + languageName: node + linkType: hard + +"babel-plugin-jest-hoist@npm:^29.6.3": + version: 29.6.3 + resolution: "babel-plugin-jest-hoist@npm:29.6.3" + dependencies: + "@babel/template": "npm:^7.3.3" + "@babel/types": "npm:^7.3.3" + "@types/babel__core": "npm:^7.1.14" + "@types/babel__traverse": "npm:^7.0.6" + checksum: 10c0/7e6451caaf7dce33d010b8aafb970e62f1b0c0b57f4978c37b0d457bbcf0874d75a395a102daf0bae0bd14eafb9f6e9a165ee5e899c0a4f1f3bb2e07b304ed2e + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs2@npm:^0.4.10": + version: 0.4.11 + resolution: "babel-plugin-polyfill-corejs2@npm:0.4.11" + dependencies: + "@babel/compat-data": "npm:^7.22.6" + "@babel/helper-define-polyfill-provider": "npm:^0.6.2" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/b2217bc8d5976cf8142453ed44daabf0b2e0e75518f24eac83b54a8892e87a88f1bd9089daa92fd25df979ecd0acfd29b6bc28c4182c1c46344cee15ef9bce84 + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs3@npm:^0.10.4": + version: 0.10.4 + resolution: "babel-plugin-polyfill-corejs3@npm:0.10.4" + dependencies: + "@babel/helper-define-polyfill-provider": "npm:^0.6.1" + core-js-compat: "npm:^3.36.1" + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/31b92cd3dfb5b417da8dfcf0deaa4b8b032b476d7bb31ca51c66127cf25d41e89260e89d17bc004b2520faa38aa9515fafabf81d89f9d4976e9dc1163e4a7c41 + languageName: node + linkType: hard + +"babel-plugin-polyfill-regenerator@npm:^0.6.1": + version: 0.6.2 + resolution: "babel-plugin-polyfill-regenerator@npm:0.6.2" + dependencies: + "@babel/helper-define-polyfill-provider": "npm:^0.6.2" + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/bc541037cf7620bc84ddb75a1c0ce3288f90e7d2799c070a53f8a495c8c8ae0316447becb06f958dd25dcce2a2fce855d318ecfa48036a1ddb218d55aa38a744 + languageName: node + linkType: hard + +"babel-preset-current-node-syntax@npm:^1.0.0": + version: 1.0.1 + resolution: "babel-preset-current-node-syntax@npm:1.0.1" + dependencies: + "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + "@babel/plugin-syntax-bigint": "npm:^7.8.3" + "@babel/plugin-syntax-class-properties": "npm:^7.8.3" + "@babel/plugin-syntax-import-meta": "npm:^7.8.3" + "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/plugin-syntax-numeric-separator": "npm:^7.8.3" + "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/plugin-syntax-top-level-await": "npm:^7.8.3" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/5ba39a3a0e6c37d25e56a4fb843be632dac98d54706d8a0933f9bcb1a07987a96d55c2b5a6c11788a74063fb2534fe68c1f1dbb6c93626850c785e0938495627 + languageName: node + linkType: hard + +"babel-preset-jest@npm:^29.6.3": + version: 29.6.3 + resolution: "babel-preset-jest@npm:29.6.3" + dependencies: + babel-plugin-jest-hoist: "npm:^29.6.3" + babel-preset-current-node-syntax: "npm:^1.0.0" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/ec5fd0276b5630b05f0c14bb97cc3815c6b31600c683ebb51372e54dcb776cff790bdeeabd5b8d01ede375a040337ccbf6a3ccd68d3a34219125945e167ad943 + languageName: node + linkType: hard + +"babylon@npm:^6.9.1": + version: 6.18.0 + resolution: "babylon@npm:6.18.0" + bin: + babylon: ./bin/babylon.js + checksum: 10c0/9b1bf946e16782deadb1f5414c1269efa6044eb1e97a3de2051f09a3f2a54e97be3542d4242b28d23de0ef67816f519d38ce1ec3ddb7be306131c39a60e5a667 + languageName: node + linkType: hard + +"balanced-match@npm:^1.0.0": + version: 1.0.2 + resolution: "balanced-match@npm:1.0.2" + checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee + languageName: node + linkType: hard + +"bech32@npm:1.1.4": + version: 1.1.4 + resolution: "bech32@npm:1.1.4" + checksum: 10c0/5f62ca47b8df99ace9c0e0d8deb36a919d91bf40066700aaa9920a45f86bb10eb56d537d559416fd8703aa0fb60dddb642e58f049701e7291df678b2033e5ee5 + languageName: node + linkType: hard + +"bn.js@npm:^4.11.9": + version: 4.12.0 + resolution: "bn.js@npm:4.12.0" + checksum: 10c0/9736aaa317421b6b3ed038ff3d4491935a01419ac2d83ddcfebc5717385295fcfcf0c57311d90fe49926d0abbd7a9dbefdd8861e6129939177f7e67ebc645b21 + languageName: node + linkType: hard + +"bn.js@npm:^5.2.1": + version: 5.2.1 + resolution: "bn.js@npm:5.2.1" + checksum: 10c0/bed3d8bd34ec89dbcf9f20f88bd7d4a49c160fda3b561c7bb227501f974d3e435a48fb9b61bc3de304acab9215a3bda0803f7017ffb4d0016a0c3a740a283caa + languageName: node + linkType: hard + +"brace-expansion@npm:^1.1.7": + version: 1.1.11 + resolution: "brace-expansion@npm:1.1.11" + dependencies: + balanced-match: "npm:^1.0.0" + concat-map: "npm:0.0.1" + checksum: 10c0/695a56cd058096a7cb71fb09d9d6a7070113c7be516699ed361317aca2ec169f618e28b8af352e02ab4233fb54eb0168460a40dc320bab0034b36ab59aaad668 + languageName: node + linkType: hard + +"brace-expansion@npm:^2.0.1": + version: 2.0.1 + resolution: "brace-expansion@npm:2.0.1" + dependencies: + balanced-match: "npm:^1.0.0" + checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f + languageName: node + linkType: hard + +"braces@npm:^3.0.3": + version: 3.0.3 + resolution: "braces@npm:3.0.3" + dependencies: + fill-range: "npm:^7.1.1" + checksum: 10c0/7c6dfd30c338d2997ba77500539227b9d1f85e388a5f43220865201e407e076783d0881f2d297b9f80951b4c957fcf0b51c1d2d24227631643c3f7c284b0aa04 + languageName: node + linkType: hard + +"brorand@npm:^1.1.0": + version: 1.1.0 + resolution: "brorand@npm:1.1.0" + checksum: 10c0/6f366d7c4990f82c366e3878492ba9a372a73163c09871e80d82fb4ae0d23f9f8924cb8a662330308206e6b3b76ba1d528b4601c9ef73c2166b440b2ea3b7571 + languageName: node + linkType: hard + +"browserslist@npm:^4.22.2, browserslist@npm:^4.23.0": + version: 4.23.1 + resolution: "browserslist@npm:4.23.1" + dependencies: + 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.16" + bin: + browserslist: cli.js + checksum: 10c0/eb47c7ab9d60db25ce2faca70efeb278faa7282a2f62b7f2fa2f92e5f5251cf65144244566c86559419ff4f6d78f59ea50e39911321ad91f3b27788901f1f5e9 + languageName: node + linkType: hard + +"bs-logger@npm:0.x": + version: 0.2.6 + resolution: "bs-logger@npm:0.2.6" + dependencies: + fast-json-stable-stringify: "npm:2.x" + checksum: 10c0/80e89aaaed4b68e3374ce936f2eb097456a0dddbf11f75238dbd53140b1e39259f0d248a5089ed456f1158984f22191c3658d54a713982f676709fbe1a6fa5a0 + languageName: node + linkType: hard + +"bser@npm:2.1.1": + version: 2.1.1 + resolution: "bser@npm:2.1.1" + dependencies: + node-int64: "npm:^0.4.0" + checksum: 10c0/24d8dfb7b6d457d73f32744e678a60cc553e4ec0e9e1a01cf614b44d85c3c87e188d3cc78ef0442ce5032ee6818de20a0162ba1074725c0d08908f62ea979227 + languageName: node + linkType: hard + +"buffer-from@npm:^1.0.0": + version: 1.1.2 + resolution: "buffer-from@npm:1.1.2" + checksum: 10c0/124fff9d66d691a86d3b062eff4663fe437a9d9ee4b47b1b9e97f5a5d14f6d5399345db80f796827be7c95e70a8e765dd404b7c3ff3b3324f98e9b0c8826cc34 + languageName: node + linkType: hard + +"cacache@npm:^18.0.0": + version: 18.0.3 + resolution: "cacache@npm:18.0.3" + dependencies: + "@npmcli/fs": "npm:^3.1.0" + fs-minipass: "npm:^3.0.0" + glob: "npm:^10.2.2" + lru-cache: "npm:^10.0.1" + minipass: "npm:^7.0.3" + minipass-collect: "npm:^2.0.1" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + p-map: "npm:^4.0.0" + ssri: "npm:^10.0.0" + tar: "npm:^6.1.11" + unique-filename: "npm:^3.0.0" + checksum: 10c0/dfda92840bb371fb66b88c087c61a74544363b37a265023223a99965b16a16bbb87661fe4948718d79df6e0cc04e85e62784fbcf1832b2a5e54ff4c46fbb45b7 + languageName: node + linkType: hard + +"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.6, call-bind@npm:^1.0.7": + version: 1.0.7 + resolution: "call-bind@npm:1.0.7" + dependencies: + es-define-property: "npm:^1.0.0" + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.4" + set-function-length: "npm:^1.2.1" + checksum: 10c0/a3ded2e423b8e2a265983dba81c27e125b48eefb2655e7dfab6be597088da3d47c47976c24bc51b8fd9af1061f8f87b4ab78a314f3c77784b2ae2ba535ad8b8d + languageName: node + linkType: hard + +"callsites@npm:^3.0.0, callsites@npm:^3.1.0": + version: 3.1.0 + resolution: "callsites@npm:3.1.0" + checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301 + languageName: node + linkType: hard + +"camelcase-keys@npm:^6.2.2": + version: 6.2.2 + resolution: "camelcase-keys@npm:6.2.2" + dependencies: + camelcase: "npm:^5.3.1" + map-obj: "npm:^4.0.0" + quick-lru: "npm:^4.0.1" + checksum: 10c0/bf1a28348c0f285c6c6f68fb98a9d088d3c0269fed0cdff3ea680d5a42df8a067b4de374e7a33e619eb9d5266a448fe66c2dd1f8e0c9209ebc348632882a3526 + languageName: node + linkType: hard + +"camelcase@npm:^5.3.1": + version: 5.3.1 + resolution: "camelcase@npm:5.3.1" + checksum: 10c0/92ff9b443bfe8abb15f2b1513ca182d16126359ad4f955ebc83dc4ddcc4ef3fdd2c078bc223f2673dc223488e75c99b16cc4d056624374b799e6a1555cf61b23 + languageName: node + linkType: hard + +"camelcase@npm:^6.2.0": + version: 6.3.0 + resolution: "camelcase@npm:6.3.0" + checksum: 10c0/0d701658219bd3116d12da3eab31acddb3f9440790c0792e0d398f0a520a6a4058018e546862b6fba89d7ae990efaeb97da71e1913e9ebf5a8b5621a3d55c710 + languageName: node + linkType: hard + +"caniuse-lite@npm:^1.0.30001629": + version: 1.0.30001636 + resolution: "caniuse-lite@npm:1.0.30001636" + checksum: 10c0/e5f965b4da7bae1531fd9f93477d015729ff9e3fa12670ead39a9e6cdc4c43e62c272d47857c5cc332e7b02d697cb3f2f965a1030870ac7476da60c2fc81ee94 + languageName: node + linkType: hard + +"chalk-template@npm:^1.1.0": + version: 1.1.0 + resolution: "chalk-template@npm:1.1.0" + dependencies: + chalk: "npm:^5.2.0" + checksum: 10c0/bb6eda6115a33d06828caf8c44f786c26e0d392c74c2bd6bb0f7526588b15664e3e7c0305858531cdd9b266fc54a31fe71fe3844afcd47a3e67445313f149437 + languageName: node + linkType: hard + +"chalk@npm:^2.4.1, chalk@npm:^2.4.2": + version: 2.4.2 + resolution: "chalk@npm:2.4.2" + dependencies: + ansi-styles: "npm:^3.2.1" + escape-string-regexp: "npm:^1.0.5" + supports-color: "npm:^5.3.0" + checksum: 10c0/e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073 + languageName: node + linkType: hard + +"chalk@npm:^4.0.0, chalk@npm:^4.1.0": + version: 4.1.2 + resolution: "chalk@npm:4.1.2" + dependencies: + ansi-styles: "npm:^4.1.0" + supports-color: "npm:^7.1.0" + checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 + 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" + checksum: 10c0/57a09a86371331e0be35d9083ba429e86c4f4648ecbe27455dbfb343037c16ee6fdc7f6b61f433a57cc5ded5561d71c56a150e018f40c2ffb7bc93a26dae341e + languageName: node + linkType: hard + +"chownr@npm:^2.0.0": + version: 2.0.0 + resolution: "chownr@npm:2.0.0" + checksum: 10c0/594754e1303672171cc04e50f6c398ae16128eb134a88f801bf5354fd96f205320f23536a045d9abd8b51024a149696e51231565891d4efdab8846021ecf88e6 + languageName: node + linkType: hard + +"ci-info@npm:^3.2.0": + version: 3.9.0 + resolution: "ci-info@npm:3.9.0" + checksum: 10c0/6f0109e36e111684291d46123d491bc4e7b7a1934c3a20dea28cba89f1d4a03acd892f5f6a81ed3855c38647e285a150e3c9ba062e38943bef57fee6c1554c3a + languageName: node + linkType: hard + +"cjs-module-lexer@npm:^1.0.0": + version: 1.3.1 + resolution: "cjs-module-lexer@npm:1.3.1" + checksum: 10c0/cd98fbf3c7f4272fb0ebf71d08d0c54bc75ce0e30b9d186114e15b4ba791f3d310af65a339eea2a0318599af2818cdd8886d353b43dfab94468f72987397ad16 + languageName: node + linkType: hard + +"clean-stack@npm:^2.0.0": + version: 2.2.0 + resolution: "clean-stack@npm:2.2.0" + checksum: 10c0/1f90262d5f6230a17e27d0c190b09d47ebe7efdd76a03b5a1127863f7b3c9aec4c3e6c8bb3a7bbf81d553d56a1fd35728f5a8ef4c63f867ac8d690109742a8c1 + languageName: node + linkType: hard + +"clear-module@npm:^4.1.2": + version: 4.1.2 + resolution: "clear-module@npm:4.1.2" + dependencies: + parent-module: "npm:^2.0.0" + resolve-from: "npm:^5.0.0" + checksum: 10c0/73207f06af256e3c8901ceaa74f7e4468a777aa68dedc7f745db4116861a7f8e69c558e16dbdf7b3d2295675d5896f916ba55b5dc737dda81792dbeee1488127 + languageName: node + linkType: hard + +"cli-cursor@npm:^4.0.0": + version: 4.0.0 + resolution: "cli-cursor@npm:4.0.0" + dependencies: + restore-cursor: "npm:^4.0.0" + checksum: 10c0/e776e8c3c6727300d0539b0d25160b2bb56aed1a63942753ba1826b012f337a6f4b7ace3548402e4f2f13b5e16bfd751be672c44b203205e7eca8be94afec42c + languageName: node + linkType: hard + +"cli-truncate@npm:^4.0.0": + version: 4.0.0 + resolution: "cli-truncate@npm:4.0.0" + dependencies: + slice-ansi: "npm:^5.0.0" + string-width: "npm:^7.0.0" + checksum: 10c0/d7f0b73e3d9b88cb496e6c086df7410b541b56a43d18ade6a573c9c18bd001b1c3fba1ad578f741a4218fdc794d042385f8ac02c25e1c295a2d8b9f3cb86eb4c + languageName: node + linkType: hard + +"cliui@npm:^8.0.1": + version: 8.0.1 + resolution: "cliui@npm:8.0.1" + dependencies: + string-width: "npm:^4.2.0" + strip-ansi: "npm:^6.0.1" + wrap-ansi: "npm:^7.0.0" + checksum: 10c0/4bda0f09c340cbb6dfdc1ed508b3ca080f12992c18d68c6be4d9cf51756033d5266e61ec57529e610dacbf4da1c634423b0c1b11037709cc6b09045cbd815df5 + languageName: node + linkType: hard + +"clone@npm:^1.0.2": + version: 1.0.4 + resolution: "clone@npm:1.0.4" + checksum: 10c0/2176952b3649293473999a95d7bebfc9dc96410f6cbd3d2595cf12fd401f63a4bf41a7adbfd3ab2ff09ed60cb9870c58c6acdd18b87767366fabfc163700f13b + languageName: node + linkType: hard + +"co@npm:^4.6.0": + version: 4.6.0 + resolution: "co@npm:4.6.0" + checksum: 10c0/c0e85ea0ca8bf0a50cbdca82efc5af0301240ca88ebe3644a6ffb8ffe911f34d40f8fbcf8f1d52c5ddd66706abd4d3bfcd64259f1e8e2371d4f47573b0dc8c28 + languageName: node + linkType: hard + +"collect-v8-coverage@npm:^1.0.0": + version: 1.0.2 + resolution: "collect-v8-coverage@npm:1.0.2" + checksum: 10c0/ed7008e2e8b6852c5483b444a3ae6e976e088d4335a85aa0a9db2861c5f1d31bd2d7ff97a60469b3388deeba661a619753afbe201279fb159b4b9548ab8269a1 + languageName: node + linkType: hard + +"color-convert@npm:^1.9.0": + version: 1.9.3 + resolution: "color-convert@npm:1.9.3" + dependencies: + color-name: "npm:1.1.3" + checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c + languageName: node + linkType: hard + +"color-convert@npm:^2.0.1": + version: 2.0.1 + resolution: "color-convert@npm:2.0.1" + dependencies: + color-name: "npm:~1.1.4" + checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 + languageName: node + linkType: hard + +"color-name@npm:1.1.3": + version: 1.1.3 + resolution: "color-name@npm:1.1.3" + checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6 + languageName: node + linkType: hard + +"color-name@npm:~1.1.4": + version: 1.1.4 + resolution: "color-name@npm:1.1.4" + checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 + languageName: node + linkType: hard + +"colorette@npm:^2.0.20": + version: 2.0.20 + resolution: "colorette@npm:2.0.20" + checksum: 10c0/e94116ff33b0ff56f3b83b9ace895e5bf87c2a7a47b3401b8c3f3226e050d5ef76cf4072fb3325f9dc24d1698f9b730baf4e05eeaf861d74a1883073f4c98a40 + languageName: node + linkType: hard + +"combined-stream@npm:^1.0.8": + version: 1.0.8 + resolution: "combined-stream@npm:1.0.8" + dependencies: + delayed-stream: "npm:~1.0.0" + checksum: 10c0/0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5 + languageName: node + linkType: hard + +"commander@npm:^12.1.0, commander@npm:~12.1.0": + version: 12.1.0 + resolution: "commander@npm:12.1.0" + checksum: 10c0/6e1996680c083b3b897bfc1cfe1c58dfbcd9842fd43e1aaf8a795fbc237f65efcc860a3ef457b318e73f29a4f4a28f6403c3d653d021d960e4632dd45bde54a9 + languageName: node + linkType: hard + +"commander@npm:^4.1.1": + version: 4.1.1 + resolution: "commander@npm:4.1.1" + checksum: 10c0/84a76c08fe6cc08c9c93f62ac573d2907d8e79138999312c92d4155bc2325d487d64d13f669b2000c9f8caf70493c1be2dac74fec3c51d5a04f8bc3ae1830bab + languageName: node + linkType: hard + +"comment-json@npm:^4.2.3": + version: 4.2.3 + resolution: "comment-json@npm:4.2.3" + dependencies: + array-timsort: "npm:^1.0.3" + core-util-is: "npm:^1.0.3" + esprima: "npm:^4.0.1" + has-own-prop: "npm:^2.0.0" + repeat-string: "npm:^1.6.1" + checksum: 10c0/e8a0d3a6d75d92551f9a7e6fefa31f3d831dc33117b0b9432f061f45a571c85c16143e4110693d450f6eca20841db43f5429ac0d801673bcf03e9973ab1c31af + languageName: node + linkType: hard + +"compare-func@npm:^2.0.0": + version: 2.0.0 + resolution: "compare-func@npm:2.0.0" + dependencies: + array-ify: "npm:^1.0.0" + dot-prop: "npm:^5.1.0" + checksum: 10c0/78bd4dd4ed311a79bd264c9e13c36ed564cde657f1390e699e0f04b8eee1fc06ffb8698ce2dfb5fbe7342d509579c82d4e248f08915b708f77f7b72234086cc3 + languageName: node + linkType: hard + +"compose-function@npm:^3.0.3": + version: 3.0.3 + resolution: "compose-function@npm:3.0.3" + dependencies: + arity-n: "npm:^1.0.4" + checksum: 10c0/2b3b8a785e4d5431c0be2ab04e9de29451f3721136bef27ce6973c1971193ed9d7887ec82175b3d3e1fc00c8af6040a5841532c763a63e1ea8aeeeb128ad26fa + languageName: node + linkType: hard + +"concat-map@npm:0.0.1": + version: 0.0.1 + resolution: "concat-map@npm:0.0.1" + checksum: 10c0/c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f + languageName: node + linkType: hard + +"conventional-changelog-angular@npm:^7.0.0": + version: 7.0.0 + resolution: "conventional-changelog-angular@npm:7.0.0" + dependencies: + compare-func: "npm:^2.0.0" + checksum: 10c0/90e73e25e224059b02951b6703b5f8742dc2a82c1fea62163978e6735fd3ab04350897a8fc6f443ec6b672d6b66e28a0820e833e544a0101f38879e5e6289b7e + languageName: node + linkType: hard + +"conventional-changelog-conventionalcommits@npm:^7.0.2": + version: 7.0.2 + resolution: "conventional-changelog-conventionalcommits@npm:7.0.2" + dependencies: + compare-func: "npm:^2.0.0" + checksum: 10c0/3cb1eab35e37fc973cfb3aed0e159f54414e49b222988da1c2aa86cc8a87fe7531491bbb7657fe5fc4dc0e25f5b50e2065ba8ac71cc4c08eed9189102a2b81bd + languageName: node + linkType: hard + +"conventional-commits-parser@npm:^5.0.0": + version: 5.0.0 + resolution: "conventional-commits-parser@npm:5.0.0" + dependencies: + JSONStream: "npm:^1.3.5" + is-text-path: "npm:^2.0.0" + meow: "npm:^12.0.1" + split2: "npm:^4.0.0" + bin: + conventional-commits-parser: cli.mjs + checksum: 10c0/c9e542f4884119a96a6bf3311ff62cdee55762d8547f4c745ae3ebdc50afe4ba7691e165e34827d5cf63283cbd93ab69917afd7922423075b123d5d9a7a82ed2 + languageName: node + linkType: hard + +"convert-source-map@npm:^2.0.0": + version: 2.0.0 + resolution: "convert-source-map@npm:2.0.0" + checksum: 10c0/8f2f7a27a1a011cc6cc88cc4da2d7d0cfa5ee0369508baae3d98c260bb3ac520691464e5bbe4ae7cdf09860c1d69ecc6f70c63c6e7c7f7e3f18ec08484dc7d9b + languageName: node + linkType: hard + +"core-js-compat@npm:^3.31.0, core-js-compat@npm:^3.36.1": + version: 3.37.1 + resolution: "core-js-compat@npm:3.37.1" + dependencies: + browserslist: "npm:^4.23.0" + checksum: 10c0/4e2da9c900f2951a57947af7aeef4d16f2c75d7f7e966c0d0b62953f65225003ade5e84d3ae98847f65b24c109c606821d9dc925db8ca418fb761e7c81963c2a + languageName: node + linkType: hard + +"core-util-is@npm:^1.0.3": + version: 1.0.3 + resolution: "core-util-is@npm:1.0.3" + checksum: 10c0/90a0e40abbddfd7618f8ccd63a74d88deea94e77d0e8dbbea059fa7ebebb8fbb4e2909667fe26f3a467073de1a542ebe6ae4c73a73745ac5833786759cd906c9 + languageName: node + linkType: hard + +"cosmiconfig-typescript-loader@npm:^5.0.0": + version: 5.0.0 + resolution: "cosmiconfig-typescript-loader@npm:5.0.0" + dependencies: + jiti: "npm:^1.19.1" + peerDependencies: + "@types/node": "*" + cosmiconfig: ">=8.2" + typescript: ">=4" + checksum: 10c0/0eb1a767a589cf092e68729e184d5917ae0b167b6f5d908bc58cee221d66b937430fc58df64029795ef98bb8e85c575da6e3819c5f9679c721de7bdbb4bde719 + languageName: node + linkType: hard + +"cosmiconfig@npm:^8.3.6": + version: 8.3.6 + resolution: "cosmiconfig@npm:8.3.6" + dependencies: + import-fresh: "npm:^3.3.0" + js-yaml: "npm:^4.1.0" + parse-json: "npm:^5.2.0" + path-type: "npm:^4.0.0" + peerDependencies: + typescript: ">=4.9.5" + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/0382a9ed13208f8bfc22ca2f62b364855207dffdb73dc26e150ade78c3093f1cf56172df2dd460c8caf2afa91c0ed4ec8a88c62f8f9cd1cf423d26506aa8797a + languageName: node + linkType: hard + +"create-jest@npm:^29.7.0": + version: 29.7.0 + resolution: "create-jest@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + chalk: "npm:^4.0.0" + exit: "npm:^0.1.2" + graceful-fs: "npm:^4.2.9" + jest-config: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + prompts: "npm:^2.0.1" + bin: + create-jest: bin/create-jest.js + checksum: 10c0/e7e54c280692470d3398f62a6238fd396327e01c6a0757002833f06d00afc62dd7bfe04ff2b9cd145264460e6b4d1eb8386f2925b7e567f97939843b7b0e812f + languageName: node + linkType: hard + +"create-require@npm:^1.1.0": + version: 1.1.1 + resolution: "create-require@npm:1.1.1" + checksum: 10c0/157cbc59b2430ae9a90034a5f3a1b398b6738bf510f713edc4d4e45e169bc514d3d99dd34d8d01ca7ae7830b5b8b537e46ae8f3c8f932371b0875c0151d7ec91 + languageName: node + linkType: hard + +"cross-spawn@npm:^6.0.5": + version: 6.0.5 + resolution: "cross-spawn@npm:6.0.5" + dependencies: + nice-try: "npm:^1.0.4" + path-key: "npm:^2.0.1" + semver: "npm:^5.5.0" + shebang-command: "npm:^1.2.0" + which: "npm:^1.2.9" + checksum: 10c0/e05544722e9d7189b4292c66e42b7abeb21db0d07c91b785f4ae5fefceb1f89e626da2703744657b287e86dcd4af57b54567cef75159957ff7a8a761d9055012 + languageName: node + linkType: hard + +"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": + version: 7.0.3 + resolution: "cross-spawn@npm:7.0.3" + dependencies: + path-key: "npm:^3.1.0" + shebang-command: "npm:^2.0.0" + which: "npm:^2.0.1" + checksum: 10c0/5738c312387081c98d69c98e105b6327b069197f864a60593245d64c8089c8a0a744e16349281210d56835bb9274130d825a78b2ad6853ca13cfbeffc0c31750 + languageName: node + linkType: hard + +"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.9.0" + comment-json: "npm:^4.2.3" + yaml: "npm:^2.4.5" + checksum: 10c0/ca9616b50ca0f0097c93758c18d3f5b6930b3d6335b314013af2f5d547282e12591986bb148d44ff469315aded465281c340e12337811b53332adecc11ac04ff + languageName: node + linkType: hard + +"cspell-dictionary@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-dictionary@npm:8.9.0" + dependencies: + "@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/5df05a50e2cde0216eb61cdf9e574c1f98850c9031c657c9b902fe093a3c882a8a71a6048762538a4cf3dc6dc307d536756cb9bcdcd4f73f77e820453361093a + languageName: node + linkType: hard + +"cspell-gitignore@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-gitignore@npm:8.9.0" + dependencies: + cspell-glob: "npm:8.9.0" + find-up-simple: "npm:^1.0.0" + bin: + cspell-gitignore: bin.mjs + checksum: 10c0/0bd674e02f42f977151d69a7841b51a53c405e5cf57953cec79683d83bec578e932c585ede64f82077a7a8f44746339f213c23e3275bf60324e20becb04ca94a + languageName: node + linkType: hard + +"cspell-glob@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-glob@npm:8.9.0" + dependencies: + micromatch: "npm:^4.0.7" + checksum: 10c0/439f2e9f5c8f725ff6cc975b01faf504a32085c567c22e34e65da1bcacc0a6816e2351afc7d0ee63e4e35191c21691d2d170a53dabc35ee21059dfbf185e946c + languageName: node + linkType: hard + +"cspell-grammar@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-grammar@npm:8.9.0" + dependencies: + "@cspell/cspell-pipe": "npm:8.9.0" + "@cspell/cspell-types": "npm:8.9.0" + bin: + cspell-grammar: bin.mjs + checksum: 10c0/e64ebe899f5dea4cb04ddef97f201c734bc55f8bbedd9ba2bffcc61d8edd3cf4b0fe646badd9916fd9b2f98d12a53c86bd5e151bf13cf29b5fd8bd6e815ef3ca + languageName: node + linkType: hard + +"cspell-io@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-io@npm:8.9.0" + dependencies: + "@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.9.0": + version: 8.9.0 + resolution: "cspell-lib@npm:8.9.0" + dependencies: + "@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.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" + import-fresh: "npm:^3.3.0" + resolve-from: "npm:^5.0.0" + vscode-languageserver-textdocument: "npm:^1.0.11" + vscode-uri: "npm:^3.0.8" + xdg-basedir: "npm:^5.1.0" + checksum: 10c0/9a262ec44bf39601bb063a2ec5ddd37d386876027df0cb3df13a0037a374c46a409a2477adab1dce0b7a75d137cc720800e3651b372d1c0d41f84ce4dca73be1 + languageName: node + linkType: hard + +"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.9.0" + "@cspell/cspell-types": "npm:8.9.0" + gensequence: "npm:^7.0.0" + checksum: 10c0/d744069c0656d89c7151915871c4549f58ab279d9c64ad7ce0b7f1e9e8956400c637f0396155768a9c80eeed319efefce12bf26a8c41e6b0c73b3c6695e57666 + languageName: node + linkType: hard + +"cspell@npm:^8.4.0": + version: 8.9.0 + resolution: "cspell@npm:8.9.0" + dependencies: + "@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.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.2" + strip-ansi: "npm:^7.1.0" + vscode-uri: "npm:^3.0.8" + bin: + cspell: bin.mjs + cspell-esm: bin.mjs + checksum: 10c0/e783e0648bbae4cf6dfe6f55a52fa719b5d30107629c0ac6c9e4a56cdb71dd17e31419b31ac04c5ffa86aac49711eeb11310253470a5e25168fdb8049004c464 + languageName: node + linkType: hard + +"dargs@npm:^7.0.0": + version: 7.0.0 + resolution: "dargs@npm:7.0.0" + checksum: 10c0/ec7f6a8315a8fa2f8b12d39207615bdf62b4d01f631b96fbe536c8ad5469ab9ed710d55811e564d0d5c1d548fc8cb6cc70bf0939f2415790159f5a75e0f96c92 + languageName: node + linkType: hard + +"data-uri-to-buffer@npm:^4.0.0": + version: 4.0.1 + resolution: "data-uri-to-buffer@npm:4.0.1" + checksum: 10c0/20a6b93107597530d71d4cb285acee17f66bcdfc03fd81040921a81252f19db27588d87fc8fc69e1950c55cfb0bf8ae40d0e5e21d907230813eb5d5a7f9eb45b + languageName: node + linkType: hard + +"data-view-buffer@npm:^1.0.1": + version: 1.0.1 + resolution: "data-view-buffer@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.6" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.1" + checksum: 10c0/8984119e59dbed906a11fcfb417d7d861936f16697a0e7216fe2c6c810f6b5e8f4a5281e73f2c28e8e9259027190ac4a33e2a65fdd7fa86ac06b76e838918583 + languageName: node + linkType: hard + +"data-view-byte-length@npm:^1.0.1": + version: 1.0.1 + resolution: "data-view-byte-length@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.7" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.1" + checksum: 10c0/b7d9e48a0cf5aefed9ab7d123559917b2d7e0d65531f43b2fd95b9d3a6b46042dd3fca597c42bba384e66b70d7ad66ff23932f8367b241f53d93af42cfe04ec2 + languageName: node + linkType: hard + +"data-view-byte-offset@npm:^1.0.0": + version: 1.0.0 + resolution: "data-view-byte-offset@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.6" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.1" + checksum: 10c0/21b0d2e53fd6e20cc4257c873bf6d36d77bd6185624b84076c0a1ddaa757b49aaf076254006341d35568e89f52eecd1ccb1a502cfb620f2beca04f48a6a62a8f + languageName: node + linkType: hard + +"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/082c375a2bdc4f4469c99f325ff458adad62a3fc2c482d59923c260cb08152f34e2659f72b3767db8bb2f21ca81a60a42d1019605a412132d7b9f59363a005cc + languageName: node + linkType: hard + +"decamelize-keys@npm:^1.1.0": + version: 1.1.1 + resolution: "decamelize-keys@npm:1.1.1" + dependencies: + decamelize: "npm:^1.1.0" + map-obj: "npm:^1.0.0" + checksum: 10c0/4ca385933127437658338c65fb9aead5f21b28d3dd3ccd7956eb29aab0953b5d3c047fbc207111672220c71ecf7a4d34f36c92851b7bbde6fca1a02c541bdd7d + languageName: node + linkType: hard + +"decamelize@npm:^1.1.0": + version: 1.2.0 + resolution: "decamelize@npm:1.2.0" + checksum: 10c0/85c39fe8fbf0482d4a1e224ef0119db5c1897f8503bcef8b826adff7a1b11414972f6fef2d7dec2ee0b4be3863cf64ac1439137ae9e6af23a3d8dcbe26a5b4b2 + languageName: node + linkType: hard + +"dedent@npm:^1.0.0": + version: 1.5.3 + resolution: "dedent@npm:1.5.3" + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + checksum: 10c0/d94bde6e6f780be4da4fd760288fcf755ec368872f4ac5218197200d86430aeb8d90a003a840bff1c20221188e3f23adced0119cb811c6873c70d0ac66d12832 + languageName: node + linkType: hard + +"deep-is@npm:^0.1.3": + version: 0.1.4 + resolution: "deep-is@npm:0.1.4" + checksum: 10c0/7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c + languageName: node + linkType: hard + +"deepmerge@npm:^4.2.2": + version: 4.3.1 + resolution: "deepmerge@npm:4.3.1" + checksum: 10c0/e53481aaf1aa2c4082b5342be6b6d8ad9dfe387bc92ce197a66dea08bd4265904a087e75e464f14d1347cf2ac8afe1e4c16b266e0561cc5df29382d3c5f80044 + languageName: node + linkType: hard + +"defaults@npm:^1.0.3": + version: 1.0.4 + resolution: "defaults@npm:1.0.4" + dependencies: + clone: "npm:^1.0.2" + checksum: 10c0/9cfbe498f5c8ed733775db62dfd585780387d93c17477949e1670bfcfb9346e0281ce8c4bf9f4ac1fc0f9b851113bd6dc9e41182ea1644ccd97de639fa13c35a + languageName: node + linkType: hard + +"define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.4": + version: 1.1.4 + resolution: "define-data-property@npm:1.1.4" + dependencies: + es-define-property: "npm:^1.0.0" + es-errors: "npm:^1.3.0" + gopd: "npm:^1.0.1" + checksum: 10c0/dea0606d1483eb9db8d930d4eac62ca0fa16738b0b3e07046cddfacf7d8c868bbe13fa0cb263eb91c7d0d527960dc3f2f2471a69ed7816210307f6744fe62e37 + languageName: node + linkType: hard + +"define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": + version: 1.2.1 + resolution: "define-properties@npm:1.2.1" + dependencies: + define-data-property: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.0" + object-keys: "npm:^1.1.1" + checksum: 10c0/88a152319ffe1396ccc6ded510a3896e77efac7a1bfbaa174a7b00414a1747377e0bb525d303794a47cf30e805c2ec84e575758512c6e44a993076d29fd4e6c3 + languageName: node + linkType: hard + +"delayed-stream@npm:~1.0.0": + version: 1.0.0 + resolution: "delayed-stream@npm:1.0.0" + checksum: 10c0/d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19 + languageName: node + linkType: hard + +"detect-newline@npm:^3.0.0": + version: 3.1.0 + resolution: "detect-newline@npm:3.1.0" + checksum: 10c0/c38cfc8eeb9fda09febb44bcd85e467c970d4e3bf526095394e5a4f18bc26dd0cf6b22c69c1fa9969261521c593836db335c2795218f6d781a512aea2fb8209d + languageName: node + linkType: hard + +"diff-sequences@npm:^29.6.3": + version: 29.6.3 + resolution: "diff-sequences@npm:29.6.3" + checksum: 10c0/32e27ac7dbffdf2fb0eb5a84efd98a9ad084fbabd5ac9abb8757c6770d5320d2acd172830b28c4add29bb873d59420601dfc805ac4064330ce59b1adfd0593b2 + languageName: node + linkType: hard + +"diff@npm:^4.0.1": + version: 4.0.2 + resolution: "diff@npm:4.0.2" + checksum: 10c0/81b91f9d39c4eaca068eb0c1eb0e4afbdc5bb2941d197f513dd596b820b956fef43485876226d65d497bebc15666aa2aa82c679e84f65d5f2bfbf14ee46e32c1 + languageName: node + linkType: hard + +"dir-glob@npm:^3.0.1": + version: 3.0.1 + resolution: "dir-glob@npm:3.0.1" + dependencies: + path-type: "npm:^4.0.0" + checksum: 10c0/dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c + languageName: node + linkType: hard + +"doctrine@npm:^3.0.0": + version: 3.0.0 + resolution: "doctrine@npm:3.0.0" + dependencies: + esutils: "npm:^2.0.2" + checksum: 10c0/c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 + languageName: node + linkType: hard + +"dot-prop@npm:^5.1.0": + version: 5.3.0 + resolution: "dot-prop@npm:5.3.0" + dependencies: + is-obj: "npm:^2.0.0" + checksum: 10c0/93f0d343ef87fe8869320e62f2459f7e70f49c6098d948cc47e060f4a3f827d0ad61e83cb82f2bd90cd5b9571b8d334289978a43c0f98fea4f0e99ee8faa0599 + languageName: node + linkType: hard + +"eastasianwidth@npm:^0.2.0": + version: 0.2.0 + resolution: "eastasianwidth@npm:0.2.0" + checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 + languageName: node + linkType: hard + +"easy-table@npm:1.2.0": + version: 1.2.0 + resolution: "easy-table@npm:1.2.0" + dependencies: + ansi-regex: "npm:^5.0.1" + wcwidth: "npm:^1.0.1" + dependenciesMeta: + wcwidth: + optional: true + checksum: 10c0/2d37937cd608586ba02e1ec479f90ccec581d366b3b0d1bb26b99ee6005f8d724e32a07a873759893461ca45b99e2d08c30326529d967ce9eedc1e9b68d4aa63 + languageName: node + linkType: hard + +"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 + +"elliptic@npm:6.5.4": + version: 6.5.4 + resolution: "elliptic@npm:6.5.4" + dependencies: + bn.js: "npm:^4.11.9" + brorand: "npm:^1.1.0" + hash.js: "npm:^1.0.0" + hmac-drbg: "npm:^1.0.1" + inherits: "npm:^2.0.4" + minimalistic-assert: "npm:^1.0.1" + minimalistic-crypto-utils: "npm:^1.0.1" + checksum: 10c0/5f361270292c3b27cf0843e84526d11dec31652f03c2763c6c2b8178548175ff5eba95341dd62baff92b2265d1af076526915d8af6cc9cb7559c44a62f8ca6e2 + languageName: node + linkType: hard + +"emittery@npm:^0.13.1": + version: 0.13.1 + resolution: "emittery@npm:0.13.1" + checksum: 10c0/1573d0ae29ab34661b6c63251ff8f5facd24ccf6a823f19417ae8ba8c88ea450325788c67f16c99edec8de4b52ce93a10fe441ece389fd156e88ee7dab9bfa35 + languageName: node + linkType: hard + +"emoji-regex@npm:^10.3.0": + version: 10.3.0 + resolution: "emoji-regex@npm:10.3.0" + checksum: 10c0/b4838e8dcdceb44cf47f59abe352c25ff4fe7857acaf5fb51097c427f6f75b44d052eb907a7a3b86f86bc4eae3a93f5c2b7460abe79c407307e6212d65c91163 + languageName: node + linkType: hard + +"emoji-regex@npm:^8.0.0": + version: 8.0.0 + resolution: "emoji-regex@npm:8.0.0" + checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 + languageName: node + linkType: hard + +"emoji-regex@npm:^9.2.2": + version: 9.2.2 + resolution: "emoji-regex@npm:9.2.2" + checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 + languageName: node + linkType: hard + +"encoding@npm:^0.1.13": + version: 0.1.13 + resolution: "encoding@npm:0.1.13" + dependencies: + iconv-lite: "npm:^0.6.2" + checksum: 10c0/36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039 + languageName: node + linkType: hard + +"env-paths@npm:^2.2.0": + version: 2.2.1 + resolution: "env-paths@npm:2.2.1" + checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 + languageName: node + linkType: hard + +"env-paths@npm:^3.0.0": + version: 3.0.0 + resolution: "env-paths@npm:3.0.0" + checksum: 10c0/76dec878cee47f841103bacd7fae03283af16f0702dad65102ef0a556f310b98a377885e0f32943831eb08b5ab37842a323d02529f3dfd5d0a40ca71b01b435f + languageName: node + linkType: hard + +"err-code@npm:^2.0.2": + version: 2.0.3 + resolution: "err-code@npm:2.0.3" + checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66 + languageName: node + linkType: hard + +"error-ex@npm:^1.3.1": + version: 1.3.2 + resolution: "error-ex@npm:1.3.2" + dependencies: + is-arrayish: "npm:^0.2.1" + checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce + languageName: node + linkType: hard + +"es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.2": + version: 1.23.3 + resolution: "es-abstract@npm:1.23.3" + dependencies: + array-buffer-byte-length: "npm:^1.0.1" + arraybuffer.prototype.slice: "npm:^1.0.3" + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.7" + data-view-buffer: "npm:^1.0.1" + data-view-byte-length: "npm:^1.0.1" + data-view-byte-offset: "npm:^1.0.0" + es-define-property: "npm:^1.0.0" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + es-set-tostringtag: "npm:^2.0.3" + es-to-primitive: "npm:^1.2.1" + function.prototype.name: "npm:^1.1.6" + get-intrinsic: "npm:^1.2.4" + get-symbol-description: "npm:^1.0.2" + globalthis: "npm:^1.0.3" + gopd: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.2" + has-proto: "npm:^1.0.3" + has-symbols: "npm:^1.0.3" + hasown: "npm:^2.0.2" + internal-slot: "npm:^1.0.7" + is-array-buffer: "npm:^3.0.4" + is-callable: "npm:^1.2.7" + is-data-view: "npm:^1.0.1" + is-negative-zero: "npm:^2.0.3" + is-regex: "npm:^1.1.4" + is-shared-array-buffer: "npm:^1.0.3" + is-string: "npm:^1.0.7" + is-typed-array: "npm:^1.1.13" + is-weakref: "npm:^1.0.2" + object-inspect: "npm:^1.13.1" + object-keys: "npm:^1.1.1" + object.assign: "npm:^4.1.5" + regexp.prototype.flags: "npm:^1.5.2" + safe-array-concat: "npm:^1.1.2" + safe-regex-test: "npm:^1.0.3" + string.prototype.trim: "npm:^1.2.9" + string.prototype.trimend: "npm:^1.0.8" + string.prototype.trimstart: "npm:^1.0.8" + typed-array-buffer: "npm:^1.0.2" + typed-array-byte-length: "npm:^1.0.1" + typed-array-byte-offset: "npm:^1.0.2" + typed-array-length: "npm:^1.0.6" + unbox-primitive: "npm:^1.0.2" + which-typed-array: "npm:^1.1.15" + checksum: 10c0/d27e9afafb225c6924bee9971a7f25f20c314f2d6cb93a63cada4ac11dcf42040896a6c22e5fb8f2a10767055ed4ddf400be3b1eb12297d281726de470b75666 + languageName: node + linkType: hard + +"es-define-property@npm:^1.0.0": + version: 1.0.0 + resolution: "es-define-property@npm:1.0.0" + dependencies: + get-intrinsic: "npm:^1.2.4" + checksum: 10c0/6bf3191feb7ea2ebda48b577f69bdfac7a2b3c9bcf97307f55fd6ef1bbca0b49f0c219a935aca506c993d8c5d8bddd937766cb760cd5e5a1071351f2df9f9aa4 + languageName: node + linkType: hard + +"es-errors@npm:^1.2.1, es-errors@npm:^1.3.0": + version: 1.3.0 + resolution: "es-errors@npm:1.3.0" + checksum: 10c0/0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85 + languageName: node + linkType: hard + +"es-object-atoms@npm:^1.0.0": + version: 1.0.0 + resolution: "es-object-atoms@npm:1.0.0" + dependencies: + es-errors: "npm:^1.3.0" + checksum: 10c0/1fed3d102eb27ab8d983337bb7c8b159dd2a1e63ff833ec54eea1311c96d5b08223b433060ba240541ca8adba9eee6b0a60cdbf2f80634b784febc9cc8b687b4 + languageName: node + linkType: hard + +"es-set-tostringtag@npm:^2.0.3": + version: 2.0.3 + resolution: "es-set-tostringtag@npm:2.0.3" + dependencies: + get-intrinsic: "npm:^1.2.4" + has-tostringtag: "npm:^1.0.2" + hasown: "npm:^2.0.1" + checksum: 10c0/f22aff1585eb33569c326323f0b0d175844a1f11618b86e193b386f8be0ea9474cfbe46df39c45d959f7aa8f6c06985dc51dd6bce5401645ec5a74c4ceaa836a + languageName: node + linkType: hard + +"es-to-primitive@npm:^1.2.1": + version: 1.2.1 + resolution: "es-to-primitive@npm:1.2.1" + dependencies: + is-callable: "npm:^1.1.4" + is-date-object: "npm:^1.0.1" + is-symbol: "npm:^1.0.2" + checksum: 10c0/0886572b8dc075cb10e50c0af62a03d03a68e1e69c388bd4f10c0649ee41b1fbb24840a1b7e590b393011b5cdbe0144b776da316762653685432df37d6de60f1 + languageName: node + linkType: hard + +"esbuild@npm:^0.20.1": + version: 0.20.2 + resolution: "esbuild@npm:0.20.2" + dependencies: + "@esbuild/aix-ppc64": "npm:0.20.2" + "@esbuild/android-arm": "npm:0.20.2" + "@esbuild/android-arm64": "npm:0.20.2" + "@esbuild/android-x64": "npm:0.20.2" + "@esbuild/darwin-arm64": "npm:0.20.2" + "@esbuild/darwin-x64": "npm:0.20.2" + "@esbuild/freebsd-arm64": "npm:0.20.2" + "@esbuild/freebsd-x64": "npm:0.20.2" + "@esbuild/linux-arm": "npm:0.20.2" + "@esbuild/linux-arm64": "npm:0.20.2" + "@esbuild/linux-ia32": "npm:0.20.2" + "@esbuild/linux-loong64": "npm:0.20.2" + "@esbuild/linux-mips64el": "npm:0.20.2" + "@esbuild/linux-ppc64": "npm:0.20.2" + "@esbuild/linux-riscv64": "npm:0.20.2" + "@esbuild/linux-s390x": "npm:0.20.2" + "@esbuild/linux-x64": "npm:0.20.2" + "@esbuild/netbsd-x64": "npm:0.20.2" + "@esbuild/openbsd-x64": "npm:0.20.2" + "@esbuild/sunos-x64": "npm:0.20.2" + "@esbuild/win32-arm64": "npm:0.20.2" + "@esbuild/win32-ia32": "npm:0.20.2" + "@esbuild/win32-x64": "npm:0.20.2" + 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/66398f9fb2c65e456a3e649747b39af8a001e47963b25e86d9c09d2a48d61aa641b27da0ce5cad63df95ad246105e1d83e7fee0e1e22a0663def73b1c5101112 + 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" + checksum: 10c0/6b4adafecd0682f3aa1cd1106b8fff30e492c7015b178bc81b2d2f75106dabea6c6d6e8508fc491bd58e597c74abb0e8e2368f943ecb9393d4162e3c2f3cf287 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^1.0.5": + version: 1.0.5 + resolution: "escape-string-regexp@npm:1.0.5" + checksum: 10c0/a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^2.0.0": + version: 2.0.0 + resolution: "escape-string-regexp@npm:2.0.0" + checksum: 10c0/2530479fe8db57eace5e8646c9c2a9c80fa279614986d16dcc6bcaceb63ae77f05a851ba6c43756d816c61d7f4534baf56e3c705e3e0d884818a46808811c507 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-string-regexp@npm:4.0.0" + checksum: 10c0/9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9 + languageName: node + linkType: hard + +"eslint-config-prettier@npm:^9.1.0": + version: 9.1.0 + resolution: "eslint-config-prettier@npm:9.1.0" + peerDependencies: + eslint: ">=7.0.0" + bin: + eslint-config-prettier: bin/cli.js + checksum: 10c0/6d332694b36bc9ac6fdb18d3ca2f6ac42afa2ad61f0493e89226950a7091e38981b66bac2b47ba39d15b73fff2cd32c78b850a9cf9eed9ca9a96bfb2f3a2f10d + languageName: node + linkType: hard + +"eslint-plugin-prettier@npm:^5.1.3": + version: 5.1.3 + resolution: "eslint-plugin-prettier@npm:5.1.3" + dependencies: + prettier-linter-helpers: "npm:^1.0.0" + synckit: "npm:^0.8.6" + peerDependencies: + "@types/eslint": ">=8.0.0" + eslint: ">=8.0.0" + eslint-config-prettier: "*" + prettier: ">=3.0.0" + peerDependenciesMeta: + "@types/eslint": + optional: true + eslint-config-prettier: + optional: true + checksum: 10c0/f45d5fc1fcfec6b0cf038a7a65ddd10a25df4fe3f9e1f6b7f0d5100e66f046a26a2492e69ee765dddf461b93c114cf2e1eb18d4970aafa6f385448985c136e09 + languageName: node + linkType: hard + +"eslint-plugin-sonarjs@npm:^0.24.0": + version: 0.24.0 + resolution: "eslint-plugin-sonarjs@npm:0.24.0" + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: 10c0/b27f45ec33af8e3962309106e5564eaae45ea83873fbf2796175dd85b675b8042bef0c35535efb5778f598d8ca91a1d5683ca22b36599481e3b827c621ba8a50 + languageName: node + linkType: hard + +"eslint-scope@npm:^7.2.2": + version: 7.2.2 + resolution: "eslint-scope@npm:7.2.2" + dependencies: + esrecurse: "npm:^4.3.0" + estraverse: "npm:^5.2.0" + checksum: 10c0/613c267aea34b5a6d6c00514e8545ef1f1433108097e857225fed40d397dd6b1809dffd11c2fde23b37ca53d7bf935fe04d2a18e6fc932b31837b6ad67e1c116 + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": + version: 3.4.3 + resolution: "eslint-visitor-keys@npm:3.4.3" + checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 + languageName: node + linkType: hard + +"eslint@npm:^8.56.0": + version: 8.57.0 + resolution: "eslint@npm:8.57.0" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.2.0" + "@eslint-community/regexpp": "npm:^4.6.1" + "@eslint/eslintrc": "npm:^2.1.4" + "@eslint/js": "npm:8.57.0" + "@humanwhocodes/config-array": "npm:^0.11.14" + "@humanwhocodes/module-importer": "npm:^1.0.1" + "@nodelib/fs.walk": "npm:^1.2.8" + "@ungap/structured-clone": "npm:^1.2.0" + ajv: "npm:^6.12.4" + chalk: "npm:^4.0.0" + cross-spawn: "npm:^7.0.2" + debug: "npm:^4.3.2" + doctrine: "npm:^3.0.0" + escape-string-regexp: "npm:^4.0.0" + eslint-scope: "npm:^7.2.2" + eslint-visitor-keys: "npm:^3.4.3" + espree: "npm:^9.6.1" + esquery: "npm:^1.4.2" + esutils: "npm:^2.0.2" + fast-deep-equal: "npm:^3.1.3" + file-entry-cache: "npm:^6.0.1" + find-up: "npm:^5.0.0" + glob-parent: "npm:^6.0.2" + globals: "npm:^13.19.0" + graphemer: "npm:^1.4.0" + ignore: "npm:^5.2.0" + imurmurhash: "npm:^0.1.4" + is-glob: "npm:^4.0.0" + is-path-inside: "npm:^3.0.3" + js-yaml: "npm:^4.1.0" + json-stable-stringify-without-jsonify: "npm:^1.0.1" + levn: "npm:^0.4.1" + lodash.merge: "npm:^4.6.2" + minimatch: "npm:^3.1.2" + natural-compare: "npm:^1.4.0" + optionator: "npm:^0.9.3" + strip-ansi: "npm:^6.0.1" + text-table: "npm:^0.2.0" + bin: + eslint: bin/eslint.js + checksum: 10c0/00bb96fd2471039a312435a6776fe1fd557c056755eaa2b96093ef3a8508c92c8775d5f754768be6b1dddd09fdd3379ddb231eeb9b6c579ee17ea7d68000a529 + languageName: node + linkType: hard + +"espree@npm:^9.6.0, espree@npm:^9.6.1": + version: 9.6.1 + resolution: "espree@npm:9.6.1" + dependencies: + acorn: "npm:^8.9.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^3.4.1" + checksum: 10c0/1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460 + languageName: node + linkType: hard + +"esprima@npm:^4.0.0, esprima@npm:^4.0.1": + version: 4.0.1 + resolution: "esprima@npm:4.0.1" + bin: + esparse: ./bin/esparse.js + esvalidate: ./bin/esvalidate.js + checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3 + languageName: node + linkType: hard + +"esquery@npm:^1.4.2": + version: 1.5.0 + resolution: "esquery@npm:1.5.0" + dependencies: + estraverse: "npm:^5.1.0" + checksum: 10c0/a084bd049d954cc88ac69df30534043fb2aee5555b56246493f42f27d1e168f00d9e5d4192e46f10290d312dc30dc7d58994d61a609c579c1219d636996f9213 + languageName: node + linkType: hard + +"esrecurse@npm:^4.3.0": + version: 4.3.0 + resolution: "esrecurse@npm:4.3.0" + dependencies: + estraverse: "npm:^5.2.0" + checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 + languageName: node + linkType: hard + +"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0": + version: 5.3.0 + resolution: "estraverse@npm:5.3.0" + checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 + languageName: node + linkType: hard + +"esutils@npm:^2.0.2": + version: 2.0.3 + resolution: "esutils@npm:2.0.3" + checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 + languageName: node + linkType: hard + +"eventemitter3@npm:^5.0.1": + version: 5.0.1 + resolution: "eventemitter3@npm:5.0.1" + checksum: 10c0/4ba5c00c506e6c786b4d6262cfbce90ddc14c10d4667e5c83ae993c9de88aa856033994dd2b35b83e8dc1170e224e66a319fa80adc4c32adcd2379bbc75da814 + languageName: node + linkType: hard + +"execa@npm:^5.0.0": + version: 5.1.1 + resolution: "execa@npm:5.1.1" + dependencies: + cross-spawn: "npm:^7.0.3" + get-stream: "npm:^6.0.0" + human-signals: "npm:^2.1.0" + is-stream: "npm:^2.0.0" + merge-stream: "npm:^2.0.0" + npm-run-path: "npm:^4.0.1" + onetime: "npm:^5.1.2" + signal-exit: "npm:^3.0.3" + strip-final-newline: "npm:^2.0.0" + checksum: 10c0/c8e615235e8de4c5addf2fa4c3da3e3aa59ce975a3e83533b4f6a71750fb816a2e79610dc5f1799b6e28976c9ae86747a36a606655bf8cb414a74d8d507b304f + 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" + checksum: 10c0/71d2ad9b36bc25bb8b104b17e830b40a08989be7f7d100b13269aaae7c3784c3e6e1e88a797e9e87523993a25ba27c8958959a554535370672cfb4d824af8989 + languageName: node + linkType: hard + +"expect@npm:^29.0.0, expect@npm:^29.7.0": + version: 29.7.0 + resolution: "expect@npm:29.7.0" + dependencies: + "@jest/expect-utils": "npm:^29.7.0" + jest-get-type: "npm:^29.6.3" + jest-matcher-utils: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + checksum: 10c0/2eddeace66e68b8d8ee5f7be57f3014b19770caaf6815c7a08d131821da527fb8c8cb7b3dcd7c883d2d3d8d184206a4268984618032d1e4b16dc8d6596475d41 + languageName: node + linkType: hard + +"exponential-backoff@npm:^3.1.1": + version: 3.1.1 + resolution: "exponential-backoff@npm:3.1.1" + checksum: 10c0/160456d2d647e6019640bd07111634d8c353038d9fa40176afb7cd49b0548bdae83b56d05e907c2cce2300b81cae35d800ef92fefb9d0208e190fa3b7d6bb579 + languageName: node + linkType: hard + +"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": + version: 3.1.3 + resolution: "fast-deep-equal@npm:3.1.3" + checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 + languageName: node + linkType: hard + +"fast-diff@npm:^1.1.2": + version: 1.3.0 + resolution: "fast-diff@npm:1.3.0" + checksum: 10c0/5c19af237edb5d5effda008c891a18a585f74bf12953be57923f17a3a4d0979565fc64dbc73b9e20926b9d895f5b690c618cbb969af0cf022e3222471220ad29 + languageName: node + linkType: hard + +"fast-equals@npm:^5.0.1": + version: 5.0.1 + resolution: "fast-equals@npm:5.0.1" + checksum: 10c0/d7077b8b681036c2840ed9860a3048e44fc268fad2b525b8f25b43458be0c8ad976152eb4b475de9617170423c5b802121ebb61ed6641c3ac035fadaf805c8c0 + languageName: node + linkType: hard + +"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": + version: 3.3.2 + resolution: "fast-glob@npm:3.3.2" + dependencies: + "@nodelib/fs.stat": "npm:^2.0.2" + "@nodelib/fs.walk": "npm:^1.2.3" + glob-parent: "npm:^5.1.2" + merge2: "npm:^1.3.0" + micromatch: "npm:^4.0.4" + checksum: 10c0/42baad7b9cd40b63e42039132bde27ca2cb3a4950d0a0f9abe4639ea1aa9d3e3b40f98b1fe31cbc0cc17b664c9ea7447d911a152fa34ec5b72977b125a6fc845 + languageName: node + linkType: hard + +"fast-json-stable-stringify@npm:2.x, fast-json-stable-stringify@npm:^2.0.0, fast-json-stable-stringify@npm:^2.1.0": + version: 2.1.0 + resolution: "fast-json-stable-stringify@npm:2.1.0" + checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b + languageName: node + linkType: hard + +"fast-levenshtein@npm:^2.0.6": + version: 2.0.6 + resolution: "fast-levenshtein@npm:2.0.6" + checksum: 10c0/111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4 + languageName: node + linkType: hard + +"fastq@npm:^1.15.0, fastq@npm:^1.6.0": + version: 1.17.1 + resolution: "fastq@npm:1.17.1" + dependencies: + reusify: "npm:^1.0.4" + checksum: 10c0/1095f16cea45fb3beff558bb3afa74ca7a9250f5a670b65db7ed585f92b4b48381445cd328b3d87323da81e43232b5d5978a8201bde84e0cd514310f1ea6da34 + languageName: node + linkType: hard + +"fb-watchman@npm:^2.0.0": + version: 2.0.2 + resolution: "fb-watchman@npm:2.0.2" + dependencies: + bser: "npm:2.1.1" + checksum: 10c0/feae89ac148adb8f6ae8ccd87632e62b13563e6fb114cacb5265c51f585b17e2e268084519fb2edd133872f1d47a18e6bfd7e5e08625c0d41b93149694187581 + languageName: node + linkType: hard + +"fetch-blob@npm:^3.1.2, fetch-blob@npm:^3.1.4": + version: 3.2.0 + resolution: "fetch-blob@npm:3.2.0" + dependencies: + node-domexception: "npm:^1.0.0" + web-streams-polyfill: "npm:^3.0.3" + checksum: 10c0/60054bf47bfa10fb0ba6cb7742acec2f37c1f56344f79a70bb8b1c48d77675927c720ff3191fa546410a0442c998d27ab05e9144c32d530d8a52fbe68f843b69 + languageName: node + linkType: hard + +"file-entry-cache@npm:8.0.0, file-entry-cache@npm:^8.0.0": + version: 8.0.0 + resolution: "file-entry-cache@npm:8.0.0" + dependencies: + flat-cache: "npm:^4.0.0" + checksum: 10c0/9e2b5938b1cd9b6d7e3612bdc533afd4ac17b2fc646569e9a8abbf2eb48e5eb8e316bc38815a3ef6a1b456f4107f0d0f055a614ca613e75db6bf9ff4d72c1638 + languageName: node + linkType: hard + +"file-entry-cache@npm:^6.0.1": + version: 6.0.1 + resolution: "file-entry-cache@npm:6.0.1" + dependencies: + flat-cache: "npm:^3.0.4" + checksum: 10c0/58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd + languageName: node + linkType: hard + +"fill-range@npm:^7.1.1": + version: 7.1.1 + resolution: "fill-range@npm:7.1.1" + dependencies: + to-regex-range: "npm:^5.0.1" + checksum: 10c0/b75b691bbe065472f38824f694c2f7449d7f5004aa950426a2c28f0306c60db9b880c0b0e4ed819997ffb882d1da02cfcfc819bddc94d71627f5269682edf018 + languageName: node + linkType: hard + +"filter-obj@npm:^1.1.0": + version: 1.1.0 + resolution: "filter-obj@npm:1.1.0" + checksum: 10c0/071e0886b2b50238ca5026c5bbf58c26a7c1a1f720773b8c7813d16ba93d0200de977af14ac143c5ac18f666b2cfc83073f3a5fe6a4e996c49e0863d5500fccf + languageName: node + linkType: hard + +"find-up-simple@npm:^1.0.0": + version: 1.0.0 + resolution: "find-up-simple@npm:1.0.0" + checksum: 10c0/de1ad5e55c8c162f5600fe3297bb55a3da5cd9cb8c6755e463ec1d52c4c15a84e312a68397fb5962d13263b3dbd4ea294668c465ccacc41291d7cc97588769f9 + languageName: node + linkType: hard + +"find-up@npm:^4.0.0, find-up@npm:^4.1.0": + version: 4.1.0 + resolution: "find-up@npm:4.1.0" + dependencies: + locate-path: "npm:^5.0.0" + path-exists: "npm:^4.0.0" + checksum: 10c0/0406ee89ebeefa2d507feb07ec366bebd8a6167ae74aa4e34fb4c4abd06cf782a3ce26ae4194d70706f72182841733f00551c209fe575cb00bd92104056e78c1 + languageName: node + linkType: hard + +"find-up@npm:^5.0.0": + version: 5.0.0 + resolution: "find-up@npm:5.0.0" + dependencies: + locate-path: "npm:^6.0.0" + path-exists: "npm:^4.0.0" + checksum: 10c0/062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a + languageName: node + linkType: hard + +"flat-cache@npm:^3.0.4": + version: 3.2.0 + resolution: "flat-cache@npm:3.2.0" + dependencies: + flatted: "npm:^3.2.9" + keyv: "npm:^4.5.3" + rimraf: "npm:^3.0.2" + checksum: 10c0/b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75 + languageName: node + linkType: hard + +"flat-cache@npm:^4.0.0": + version: 4.0.1 + resolution: "flat-cache@npm:4.0.1" + dependencies: + flatted: "npm:^3.2.9" + keyv: "npm:^4.5.4" + checksum: 10c0/2c59d93e9faa2523e4fda6b4ada749bed432cfa28c8e251f33b25795e426a1c6dbada777afb1f74fcfff33934fdbdea921ee738fcc33e71adc9d6eca984a1cfc + languageName: node + linkType: hard + +"flatted@npm:^3.2.9": + version: 3.3.1 + resolution: "flatted@npm:3.3.1" + checksum: 10c0/324166b125ee07d4ca9bcf3a5f98d915d5db4f39d711fba640a3178b959919aae1f7cfd8aabcfef5826ed8aa8a2aa14cc85b2d7d18ff638ddf4ae3df39573eaf + languageName: node + linkType: hard + +"follow-redirects@npm:^1.15.6": + version: 1.15.6 + resolution: "follow-redirects@npm:1.15.6" + peerDependenciesMeta: + debug: + optional: true + checksum: 10c0/9ff767f0d7be6aa6870c82ac79cf0368cd73e01bbc00e9eb1c2a16fbb198ec105e3c9b6628bb98e9f3ac66fe29a957b9645bcb9a490bb7aa0d35f908b6b85071 + languageName: node + linkType: hard + +"for-each@npm:^0.3.3": + version: 0.3.3 + resolution: "for-each@npm:0.3.3" + dependencies: + is-callable: "npm:^1.1.3" + checksum: 10c0/22330d8a2db728dbf003ec9182c2d421fbcd2969b02b4f97ec288721cda63eb28f2c08585ddccd0f77cb2930af8d958005c9e72f47141dc51816127a118f39aa + languageName: node + linkType: hard + +"foreground-child@npm:^3.1.0": + 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/9a53a33dbd87090e9576bef65fb4a71de60f6863a8062a7b11bc1cbe3cc86d428677d7c0b9ef61cdac11007ac580006f78bd5638618d564cfd5e6fd713d6878f + languageName: node + linkType: hard + +"form-data@npm:^4.0.0": + version: 4.0.0 + resolution: "form-data@npm:4.0.0" + dependencies: + asynckit: "npm:^0.4.0" + combined-stream: "npm:^1.0.8" + mime-types: "npm:^2.1.12" + checksum: 10c0/cb6f3ac49180be03ff07ba3ff125f9eba2ff0b277fb33c7fc47569fc5e616882c5b1c69b9904c4c4187e97dd0419dd03b134174756f296dec62041e6527e2c6e + languageName: node + linkType: hard + +"formdata-polyfill@npm:^4.0.10": + version: 4.0.10 + resolution: "formdata-polyfill@npm:4.0.10" + dependencies: + fetch-blob: "npm:^3.1.2" + checksum: 10c0/5392ec484f9ce0d5e0d52fb5a78e7486637d516179b0eb84d81389d7eccf9ca2f663079da56f761355c0a65792810e3b345dc24db9a8bbbcf24ef3c8c88570c6 + languageName: node + linkType: hard + +"fs-minipass@npm:^2.0.0": + version: 2.1.0 + resolution: "fs-minipass@npm:2.1.0" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/703d16522b8282d7299337539c3ed6edddd1afe82435e4f5b76e34a79cd74e488a8a0e26a636afc2440e1a23b03878e2122e3a2cfe375a5cf63c37d92b86a004 + languageName: node + linkType: hard + +"fs-minipass@npm:^3.0.0": + version: 3.0.3 + resolution: "fs-minipass@npm:3.0.3" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 + languageName: node + linkType: hard + +"fs.realpath@npm:^1.0.0": + version: 1.0.0 + resolution: "fs.realpath@npm:1.0.0" + checksum: 10c0/444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948 + languageName: node + linkType: hard + +"fsevents@npm:^2.3.2, fsevents@npm:~2.3.3": + version: 2.3.3 + resolution: "fsevents@npm:2.3.3" + dependencies: + node-gyp: "npm:latest" + checksum: 10c0/a1f0c44595123ed717febbc478aa952e47adfc28e2092be66b8ab1635147254ca6cfe1df792a8997f22716d4cbafc73309899ff7bfac2ac3ad8cf2e4ecc3ec60 + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin": + version: 2.3.3 + resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1" + dependencies: + node-gyp: "npm:latest" + conditions: os=darwin + languageName: node + linkType: hard + +"function-bind@npm:^1.1.2": + version: 1.1.2 + resolution: "function-bind@npm:1.1.2" + checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 + languageName: node + linkType: hard + +"function.prototype.name@npm:^1.1.6": + version: 1.1.6 + resolution: "function.prototype.name@npm:1.1.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.2.0" + es-abstract: "npm:^1.22.1" + functions-have-names: "npm:^1.2.3" + checksum: 10c0/9eae11294905b62cb16874adb4fc687927cda3162285e0ad9612e6a1d04934005d46907362ea9cdb7428edce05a2f2c3dabc3b2d21e9fd343e9bb278230ad94b + languageName: node + linkType: hard + +"functions-have-names@npm:^1.2.3": + version: 1.2.3 + resolution: "functions-have-names@npm:1.2.3" + checksum: 10c0/33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca + languageName: node + linkType: hard + +"gensequence@npm:^7.0.0": + version: 7.0.0 + resolution: "gensequence@npm:7.0.0" + checksum: 10c0/d446772a795d8a50d70d87e87b827591ccd599c267acce9c2e1f17e4df6c04e6d47661b2ddf5d0144d026c1e3ac71eca917c171e594c3daf6a87aeabbe1d7a3d + languageName: node + linkType: hard + +"gensync@npm:^1.0.0-beta.2": + version: 1.0.0-beta.2 + resolution: "gensync@npm:1.0.0-beta.2" + checksum: 10c0/782aba6cba65b1bb5af3b095d96249d20edbe8df32dbf4696fd49be2583faf676173bf4809386588828e4dd76a3354fcbeb577bab1c833ccd9fc4577f26103f8 + languageName: node + linkType: hard + +"get-caller-file@npm:^2.0.5": + version: 2.0.5 + resolution: "get-caller-file@npm:2.0.5" + checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde + languageName: node + linkType: hard + +"get-east-asian-width@npm:^1.0.0": + version: 1.2.0 + resolution: "get-east-asian-width@npm:1.2.0" + checksum: 10c0/914b1e217cf38436c24b4c60b4c45289e39a45bf9e65ef9fd343c2815a1a02b8a0215aeec8bf9c07c516089004b6e3826332481f40a09529fcadbf6e579f286b + languageName: node + linkType: hard + +"get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4": + version: 1.2.4 + resolution: "get-intrinsic@npm:1.2.4" + dependencies: + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + has-proto: "npm:^1.0.1" + has-symbols: "npm:^1.0.3" + hasown: "npm:^2.0.0" + checksum: 10c0/0a9b82c16696ed6da5e39b1267104475c47e3a9bdbe8b509dfe1710946e38a87be70d759f4bb3cda042d76a41ef47fe769660f3b7c0d1f68750299344ffb15b7 + languageName: node + linkType: hard + +"get-package-type@npm:^0.1.0": + version: 0.1.0 + resolution: "get-package-type@npm:0.1.0" + checksum: 10c0/e34cdf447fdf1902a1f6d5af737eaadf606d2ee3518287abde8910e04159368c268568174b2e71102b87b26c2020486f126bfca9c4fb1ceb986ff99b52ecd1be + languageName: node + linkType: hard + +"get-stdin@npm:^9.0.0": + version: 9.0.0 + resolution: "get-stdin@npm:9.0.0" + checksum: 10c0/7ef2edc0c81a0644ca9f051aad8a96ae9373d901485abafaabe59fd347a1c378689d8a3d8825fb3067415d1d09dfcaa43cb9b9516ecac6b74b3138b65a8ccc6b + languageName: node + linkType: hard + +"get-stream@npm:^6.0.0": + version: 6.0.1 + resolution: "get-stream@npm:6.0.1" + checksum: 10c0/49825d57d3fd6964228e6200a58169464b8e8970489b3acdc24906c782fb7f01f9f56f8e6653c4a50713771d6658f7cfe051e5eb8c12e334138c9c918b296341 + languageName: node + linkType: hard + +"get-stream@npm:^8.0.1": + version: 8.0.1 + resolution: "get-stream@npm:8.0.1" + checksum: 10c0/5c2181e98202b9dae0bb4a849979291043e5892eb40312b47f0c22b9414fc9b28a3b6063d2375705eb24abc41ecf97894d9a51f64ff021511b504477b27b4290 + languageName: node + linkType: hard + +"get-symbol-description@npm:^1.0.2": + version: 1.0.2 + resolution: "get-symbol-description@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.5" + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.4" + checksum: 10c0/867be6d63f5e0eb026cb3b0ef695ec9ecf9310febb041072d2e142f260bd91ced9eeb426b3af98791d1064e324e653424afa6fd1af17dee373bea48ae03162bc + languageName: node + linkType: hard + +"get-tsconfig@npm:^4.7.5": + version: 4.7.5 + resolution: "get-tsconfig@npm:4.7.5" + dependencies: + resolve-pkg-maps: "npm:^1.0.0" + checksum: 10c0/a917dff2ba9ee187c41945736bf9bbab65de31ce5bc1effd76267be483a7340915cff232199406379f26517d2d0a4edcdbcda8cca599c2480a0f2cf1e1de3efa + languageName: node + linkType: hard + +"git-raw-commits@npm:^2.0.11": + version: 2.0.11 + resolution: "git-raw-commits@npm:2.0.11" + dependencies: + dargs: "npm:^7.0.0" + lodash: "npm:^4.17.15" + meow: "npm:^8.0.0" + split2: "npm:^3.0.0" + through2: "npm:^4.0.0" + bin: + git-raw-commits: cli.js + checksum: 10c0/c9cee7ce11a6703098f028d7e47986d5d3e4147d66640086734d6ee2472296b8711f91b40ad458e95acac1bc33cf2898059f1dc890f91220ff89c5fcc609ab64 + languageName: node + linkType: hard + +"glob-parent@npm:^5.1.2": + version: 5.1.2 + resolution: "glob-parent@npm:5.1.2" + dependencies: + is-glob: "npm:^4.0.1" + checksum: 10c0/cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee + languageName: node + linkType: hard + +"glob-parent@npm:^6.0.2": + version: 6.0.2 + resolution: "glob-parent@npm:6.0.2" + dependencies: + is-glob: "npm:^4.0.3" + checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8 + languageName: node + linkType: hard + +"glob@npm:^10.2.2, glob@npm:^10.3.10": + version: 10.4.2 + resolution: "glob@npm:10.4.2" + dependencies: + foreground-child: "npm:^3.1.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/2c7296695fa75a935f3ad17dc62e4e170a8bb8752cf64d328be8992dd6ad40777939003754e10e9741ff8fbe43aa52fba32d6930d0ffa0e3b74bc3fb5eebaa2f + languageName: node + linkType: hard + +"glob@npm:^7.1.3, glob@npm:^7.1.4": + version: 7.2.3 + resolution: "glob@npm:7.2.3" + dependencies: + fs.realpath: "npm:^1.0.0" + inflight: "npm:^1.0.4" + inherits: "npm:2" + minimatch: "npm:^3.1.1" + once: "npm:^1.3.0" + path-is-absolute: "npm:^1.0.0" + checksum: 10c0/65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe + languageName: node + linkType: hard + +"global-directory@npm:^4.0.1": + version: 4.0.1 + resolution: "global-directory@npm:4.0.1" + dependencies: + ini: "npm:4.1.1" + checksum: 10c0/f9cbeef41db4876f94dd0bac1c1b4282a7de9c16350ecaaf83e7b2dd777b32704cc25beeb1170b5a63c42a2c9abfade74d46357fe0133e933218bc89e613d4b2 + languageName: node + linkType: hard + +"global-dirs@npm:^0.1.1": + version: 0.1.1 + resolution: "global-dirs@npm:0.1.1" + dependencies: + ini: "npm:^1.3.4" + checksum: 10c0/3608072e58962396c124ad5a1cfb3f99ee76c998654a3432d82977b3c3eeb09dc8a5a2a9849b2b8113906c8d0aad89ce362c22e97cec5fe34405bbf4f3cdbe7a + languageName: node + linkType: hard + +"globals@npm:^11.1.0": + version: 11.12.0 + resolution: "globals@npm:11.12.0" + checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 + languageName: node + linkType: hard + +"globals@npm:^13.19.0": + version: 13.24.0 + resolution: "globals@npm:13.24.0" + dependencies: + type-fest: "npm:^0.20.2" + checksum: 10c0/d3c11aeea898eb83d5ec7a99508600fbe8f83d2cf00cbb77f873dbf2bcb39428eff1b538e4915c993d8a3b3473fa71eeebfe22c9bb3a3003d1e26b1f2c8a42cd + languageName: node + linkType: hard + +"globalthis@npm:^1.0.3": + version: 1.0.4 + resolution: "globalthis@npm:1.0.4" + dependencies: + define-properties: "npm:^1.2.1" + gopd: "npm:^1.0.1" + checksum: 10c0/9d156f313af79d80b1566b93e19285f481c591ad6d0d319b4be5e03750d004dde40a39a0f26f7e635f9007a3600802f53ecd85a759b86f109e80a5f705e01846 + languageName: node + linkType: hard + +"globby@npm:^11.1.0": + version: 11.1.0 + resolution: "globby@npm:11.1.0" + dependencies: + array-union: "npm:^2.1.0" + dir-glob: "npm:^3.0.1" + fast-glob: "npm:^3.2.9" + ignore: "npm:^5.2.0" + merge2: "npm:^1.4.1" + slash: "npm:^3.0.0" + checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189 + languageName: node + linkType: hard + +"gopd@npm:^1.0.1": + version: 1.0.1 + resolution: "gopd@npm:1.0.1" + dependencies: + get-intrinsic: "npm:^1.1.3" + checksum: 10c0/505c05487f7944c552cee72087bf1567debb470d4355b1335f2c262d218ebbff805cd3715448fe29b4b380bae6912561d0467233e4165830efd28da241418c63 + languageName: node + linkType: hard + +"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 + languageName: node + linkType: hard + +"graphemer@npm:^1.4.0": + version: 1.4.0 + resolution: "graphemer@npm:1.4.0" + checksum: 10c0/e951259d8cd2e0d196c72ec711add7115d42eb9a8146c8eeda5b8d3ac91e5dd816b9cd68920726d9fd4490368e7ed86e9c423f40db87e2d8dfafa00fa17c3a31 + languageName: node + linkType: hard + +"hard-rejection@npm:^2.1.0": + version: 2.1.0 + resolution: "hard-rejection@npm:2.1.0" + checksum: 10c0/febc3343a1ad575aedcc112580835b44a89a89e01f400b4eda6e8110869edfdab0b00cd1bd4c3bfec9475a57e79e0b355aecd5be46454b6a62b9a359af60e564 + languageName: node + linkType: hard + +"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": + version: 1.0.2 + resolution: "has-bigints@npm:1.0.2" + checksum: 10c0/724eb1485bfa3cdff6f18d95130aa190561f00b3fcf9f19dc640baf8176b5917c143b81ec2123f8cddb6c05164a198c94b13e1377c497705ccc8e1a80306e83b + languageName: node + linkType: hard + +"has-flag@npm:^3.0.0": + version: 3.0.0 + resolution: "has-flag@npm:3.0.0" + checksum: 10c0/1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473 + languageName: node + linkType: hard + +"has-flag@npm:^4.0.0": + version: 4.0.0 + resolution: "has-flag@npm:4.0.0" + checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 + languageName: node + linkType: hard + +"has-own-prop@npm:^2.0.0": + version: 2.0.0 + resolution: "has-own-prop@npm:2.0.0" + checksum: 10c0/2745497283d80228b5c5fbb8c63ab1029e604bce7db8d4b36255e427b3695b2153dc978b176674d0dd2a23f132809e04d7ef41fefc0ab85870a5caa918c5c0d9 + languageName: node + linkType: hard + +"has-own-property@npm:^0.1.0": + version: 0.1.0 + resolution: "has-own-property@npm:0.1.0" + checksum: 10c0/413ad4aea605c08baa6e1012dbae1bad0d8f52ea14412921270649e17852f143a0a79f77ae8890e1ca68406409e860ca41b5b3a35a8e5b0ca7d6d6c89fbb3e0b + languageName: node + linkType: hard + +"has-property-descriptors@npm:^1.0.0, has-property-descriptors@npm:^1.0.2": + version: 1.0.2 + resolution: "has-property-descriptors@npm:1.0.2" + dependencies: + es-define-property: "npm:^1.0.0" + checksum: 10c0/253c1f59e80bb476cf0dde8ff5284505d90c3bdb762983c3514d36414290475fe3fd6f574929d84de2a8eec00d35cf07cb6776205ff32efd7c50719125f00236 + languageName: node + linkType: hard + +"has-proto@npm:^1.0.1, has-proto@npm:^1.0.3": + version: 1.0.3 + resolution: "has-proto@npm:1.0.3" + checksum: 10c0/35a6989f81e9f8022c2f4027f8b48a552de714938765d019dbea6bb547bd49ce5010a3c7c32ec6ddac6e48fc546166a3583b128f5a7add8b058a6d8b4afec205 + languageName: node + linkType: hard + +"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": + version: 1.0.3 + resolution: "has-symbols@npm:1.0.3" + checksum: 10c0/e6922b4345a3f37069cdfe8600febbca791c94988c01af3394d86ca3360b4b93928bbf395859158f88099cb10b19d98e3bbab7c9ff2c1bd09cf665ee90afa2c3 + languageName: node + linkType: hard + +"has-tostringtag@npm:^1.0.0, has-tostringtag@npm:^1.0.2": + version: 1.0.2 + resolution: "has-tostringtag@npm:1.0.2" + dependencies: + has-symbols: "npm:^1.0.3" + checksum: 10c0/a8b166462192bafe3d9b6e420a1d581d93dd867adb61be223a17a8d6dad147aa77a8be32c961bb2f27b3ef893cae8d36f564ab651f5e9b7938ae86f74027c48c + languageName: node + linkType: hard + +"hash.js@npm:1.1.7, hash.js@npm:^1.0.0, hash.js@npm:^1.0.3": + version: 1.1.7 + resolution: "hash.js@npm:1.1.7" + dependencies: + inherits: "npm:^2.0.3" + minimalistic-assert: "npm:^1.0.1" + checksum: 10c0/41ada59494eac5332cfc1ce6b7ebdd7b88a3864a6d6b08a3ea8ef261332ed60f37f10877e0c825aaa4bddebf164fbffa618286aeeec5296675e2671cbfa746c4 + languageName: node + linkType: hard + +"hasown@npm:^2.0.0, hasown@npm:^2.0.1, hasown@npm:^2.0.2": + version: 2.0.2 + resolution: "hasown@npm:2.0.2" + dependencies: + function-bind: "npm:^1.1.2" + checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 + languageName: node + linkType: hard + +"hmac-drbg@npm:^1.0.1": + version: 1.0.1 + resolution: "hmac-drbg@npm:1.0.1" + dependencies: + hash.js: "npm:^1.0.3" + minimalistic-assert: "npm:^1.0.0" + minimalistic-crypto-utils: "npm:^1.0.1" + checksum: 10c0/f3d9ba31b40257a573f162176ac5930109816036c59a09f901eb2ffd7e5e705c6832bedfff507957125f2086a0ab8f853c0df225642a88bf1fcaea945f20600d + languageName: node + linkType: hard + +"hosted-git-info@npm:^2.1.4": + version: 2.8.9 + resolution: "hosted-git-info@npm:2.8.9" + checksum: 10c0/317cbc6b1bbbe23c2a40ae23f3dafe9fa349ce42a89a36f930e3f9c0530c179a3882d2ef1e4141a4c3674d6faaea862138ec55b43ad6f75e387fda2483a13c70 + languageName: node + linkType: hard + +"hosted-git-info@npm:^4.0.1": + version: 4.1.0 + resolution: "hosted-git-info@npm:4.1.0" + dependencies: + lru-cache: "npm:^6.0.0" + checksum: 10c0/150fbcb001600336d17fdbae803264abed013548eea7946c2264c49ebe2ebd8c4441ba71dd23dd8e18c65de79d637f98b22d4760ba5fb2e0b15d62543d0fff07 + languageName: node + linkType: hard + +"html-escaper@npm:^2.0.0": + version: 2.0.2 + resolution: "html-escaper@npm:2.0.2" + checksum: 10c0/208e8a12de1a6569edbb14544f4567e6ce8ecc30b9394fcaa4e7bb1e60c12a7c9a1ed27e31290817157e8626f3a4f29e76c8747030822eb84a6abb15c255f0a0 + languageName: node + linkType: hard + +"http-cache-semantics@npm:^4.1.1": + version: 4.1.1 + resolution: "http-cache-semantics@npm:4.1.1" + checksum: 10c0/ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc + languageName: node + linkType: hard + +"http-proxy-agent@npm:^7.0.0": + version: 7.0.2 + resolution: "http-proxy-agent@npm:7.0.2" + dependencies: + agent-base: "npm:^7.1.0" + debug: "npm:^4.3.4" + checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 + languageName: node + linkType: hard + +"https-proxy-agent@npm:^7.0.1": + version: 7.0.4 + resolution: "https-proxy-agent@npm:7.0.4" + dependencies: + agent-base: "npm:^7.0.2" + debug: "npm:4" + checksum: 10c0/bc4f7c38da32a5fc622450b6cb49a24ff596f9bd48dcedb52d2da3fa1c1a80e100fb506bd59b326c012f21c863c69b275c23de1a01d0b84db396822fdf25e52b + languageName: node + linkType: hard + +"human-signals@npm:^2.1.0": + version: 2.1.0 + resolution: "human-signals@npm:2.1.0" + checksum: 10c0/695edb3edfcfe9c8b52a76926cd31b36978782062c0ed9b1192b36bebc75c4c87c82e178dfcb0ed0fc27ca59d434198aac0bd0be18f5781ded775604db22304a + languageName: node + linkType: hard + +"human-signals@npm:^5.0.0": + version: 5.0.0 + resolution: "human-signals@npm:5.0.0" + checksum: 10c0/5a9359073fe17a8b58e5a085e9a39a950366d9f00217c4ff5878bd312e09d80f460536ea6a3f260b5943a01fe55c158d1cea3fc7bee3d0520aeef04f6d915c82 + languageName: node + linkType: hard + +"husky@npm:^9.0.11": + version: 9.0.11 + resolution: "husky@npm:9.0.11" + bin: + husky: bin.mjs + checksum: 10c0/2c787dcf74a837fc9a4fea7da907509d4bd9a289f4ea10ecc9d86279e4d4542b0f5f6443a619bccae19e265f2677172cc2b86aae5c932a35a330cc227d914605 + languageName: node + linkType: hard + +"iconv-lite@npm:^0.6.2": + version: 0.6.3 + resolution: "iconv-lite@npm:0.6.3" + dependencies: + safer-buffer: "npm:>= 2.1.2 < 3.0.0" + checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 + languageName: node + linkType: hard + +"identity-function@npm:^1.0.0": + version: 1.0.0 + resolution: "identity-function@npm:1.0.0" + checksum: 10c0/fdd102a8eef90e5fc453198bcb85705ff058c1baba7d4ab4a053f6e8e6814de4318f6c3d7605bbe9fa9e92800d323494be0294d7d370fb5ecb99cfbd729d0132 + languageName: node + linkType: hard + +"ignore@npm:^5.1.8, ignore@npm:^5.2.0, ignore@npm:^5.3.1": + version: 5.3.1 + resolution: "ignore@npm:5.3.1" + checksum: 10c0/703f7f45ffb2a27fb2c5a8db0c32e7dee66b33a225d28e8db4e1be6474795f606686a6e3bcc50e1aa12f2042db4c9d4a7d60af3250511de74620fbed052ea4cd + languageName: node + linkType: hard + +"import-fresh@npm:^3.0.0, import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0": + version: 3.3.0 + resolution: "import-fresh@npm:3.3.0" + dependencies: + parent-module: "npm:^1.0.0" + resolve-from: "npm:^4.0.0" + checksum: 10c0/7f882953aa6b740d1f0e384d0547158bc86efbf2eea0f1483b8900a6f65c5a5123c2cf09b0d542cc419d0b98a759ecaeb394237e97ea427f2da221dc3cd80cc3 + languageName: node + linkType: hard + +"import-local@npm:^3.0.2": + version: 3.1.0 + resolution: "import-local@npm:3.1.0" + dependencies: + pkg-dir: "npm:^4.2.0" + resolve-cwd: "npm:^3.0.0" + bin: + import-local-fixture: fixtures/cli.js + checksum: 10c0/c67ecea72f775fe8684ca3d057e54bdb2ae28c14bf261d2607c269c18ea0da7b730924c06262eca9aed4b8ab31e31d65bc60b50e7296c85908a56e2f7d41ecd2 + languageName: node + linkType: hard + +"import-meta-resolve@npm:^4.1.0": + version: 4.1.0 + resolution: "import-meta-resolve@npm:4.1.0" + checksum: 10c0/42f3284b0460635ddf105c4ad99c6716099c3ce76702602290ad5cbbcd295700cbc04e4bdf47bacf9e3f1a4cec2e1ff887dabc20458bef398f9de22ddff45ef5 + languageName: node + linkType: hard + +"imurmurhash@npm:^0.1.4": + version: 0.1.4 + resolution: "imurmurhash@npm:0.1.4" + checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 + languageName: node + linkType: hard + +"indent-string@npm:^4.0.0": + version: 4.0.0 + resolution: "indent-string@npm:4.0.0" + checksum: 10c0/1e1904ddb0cb3d6cce7cd09e27a90184908b7a5d5c21b92e232c93579d314f0b83c246ffb035493d0504b1e9147ba2c9b21df0030f48673fba0496ecd698161f + languageName: node + linkType: hard + +"inflight@npm:^1.0.4": + version: 1.0.6 + resolution: "inflight@npm:1.0.6" + dependencies: + once: "npm:^1.3.0" + wrappy: "npm:1" + checksum: 10c0/7faca22584600a9dc5b9fca2cd5feb7135ac8c935449837b315676b4c90aa4f391ec4f42240178244b5a34e8bede1948627fda392ca3191522fc46b34e985ab2 + languageName: node + linkType: hard + +"inherits@npm:2, inherits@npm:^2.0.3, inherits@npm:^2.0.4": + version: 2.0.4 + resolution: "inherits@npm:2.0.4" + checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 + languageName: node + linkType: hard + +"ini@npm:4.1.1": + version: 4.1.1 + resolution: "ini@npm:4.1.1" + checksum: 10c0/7fddc8dfd3e63567d4fdd5d999d1bf8a8487f1479d0b34a1d01f28d391a9228d261e19abc38e1a6a1ceb3400c727204fce05725d5eb598dfcf2077a1e3afe211 + languageName: node + linkType: hard + +"ini@npm:^1.3.4": + version: 1.3.8 + resolution: "ini@npm:1.3.8" + checksum: 10c0/ec93838d2328b619532e4f1ff05df7909760b6f66d9c9e2ded11e5c1897d6f2f9980c54dd638f88654b00919ce31e827040631eab0a3969e4d1abefa0719516a + languageName: node + linkType: hard + +"internal-slot@npm:^1.0.7": + version: 1.0.7 + resolution: "internal-slot@npm:1.0.7" + dependencies: + es-errors: "npm:^1.3.0" + hasown: "npm:^2.0.0" + side-channel: "npm:^1.0.4" + checksum: 10c0/f8b294a4e6ea3855fc59551bbf35f2b832cf01fd5e6e2a97f5c201a071cc09b49048f856e484b67a6c721da5e55736c5b6ddafaf19e2dbeb4a3ff1821680de6c + languageName: node + linkType: hard + +"ip-address@npm:^9.0.5": + version: 9.0.5 + resolution: "ip-address@npm:9.0.5" + dependencies: + jsbn: "npm:1.1.0" + sprintf-js: "npm:^1.1.3" + checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc + languageName: node + linkType: hard + +"is-array-buffer@npm:^3.0.4": + version: 3.0.4 + resolution: "is-array-buffer@npm:3.0.4" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.1" + checksum: 10c0/42a49d006cc6130bc5424eae113e948c146f31f9d24460fc0958f855d9d810e6fd2e4519bf19aab75179af9c298ea6092459d8cafdec523cd19e529b26eab860 + languageName: node + linkType: hard + +"is-arrayish@npm:^0.2.1": + version: 0.2.1 + resolution: "is-arrayish@npm:0.2.1" + checksum: 10c0/e7fb686a739068bb70f860b39b67afc62acc62e36bb61c5f965768abce1873b379c563e61dd2adad96ebb7edf6651111b385e490cf508378959b0ed4cac4e729 + languageName: node + linkType: hard + +"is-bigint@npm:^1.0.1": + version: 1.0.4 + resolution: "is-bigint@npm:1.0.4" + dependencies: + has-bigints: "npm:^1.0.1" + checksum: 10c0/eb9c88e418a0d195ca545aff2b715c9903d9b0a5033bc5922fec600eb0c3d7b1ee7f882dbf2e0d5a6e694e42391be3683e4368737bd3c4a77f8ac293e7773696 + languageName: node + linkType: hard + +"is-boolean-object@npm:^1.1.0": + version: 1.1.2 + resolution: "is-boolean-object@npm:1.1.2" + dependencies: + call-bind: "npm:^1.0.2" + has-tostringtag: "npm:^1.0.0" + checksum: 10c0/6090587f8a8a8534c0f816da868bc94f32810f08807aa72fa7e79f7e11c466d281486ffe7a788178809c2aa71fe3e700b167fe80dd96dad68026bfff8ebf39f7 + languageName: node + linkType: hard + +"is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": + version: 1.2.7 + resolution: "is-callable@npm:1.2.7" + checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f + languageName: node + linkType: hard + +"is-core-module@npm:^2.13.0, is-core-module@npm:^2.5.0": + version: 2.13.1 + resolution: "is-core-module@npm:2.13.1" + dependencies: + hasown: "npm:^2.0.0" + checksum: 10c0/2cba9903aaa52718f11c4896dabc189bab980870aae86a62dc0d5cedb546896770ee946fb14c84b7adf0735f5eaea4277243f1b95f5cefa90054f92fbcac2518 + languageName: node + linkType: hard + +"is-data-view@npm:^1.0.1": + version: 1.0.1 + resolution: "is-data-view@npm:1.0.1" + dependencies: + is-typed-array: "npm:^1.1.13" + checksum: 10c0/a3e6ec84efe303da859107aed9b970e018e2bee7ffcb48e2f8096921a493608134240e672a2072577e5f23a729846241d9634806e8a0e51d9129c56d5f65442d + languageName: node + linkType: hard + +"is-date-object@npm:^1.0.1": + version: 1.0.5 + resolution: "is-date-object@npm:1.0.5" + dependencies: + has-tostringtag: "npm:^1.0.0" + checksum: 10c0/eed21e5dcc619c48ccef804dfc83a739dbb2abee6ca202838ee1bd5f760fe8d8a93444f0d49012ad19bb7c006186e2884a1b92f6e1c056da7fd23d0a9ad5992e + languageName: node + linkType: hard + +"is-extglob@npm:^2.1.1": + version: 2.1.1 + resolution: "is-extglob@npm:2.1.1" + checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^3.0.0": + version: 3.0.0 + resolution: "is-fullwidth-code-point@npm:3.0.0" + checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^4.0.0": + version: 4.0.0 + resolution: "is-fullwidth-code-point@npm:4.0.0" + checksum: 10c0/df2a717e813567db0f659c306d61f2f804d480752526886954a2a3e2246c7745fd07a52b5fecf2b68caf0a6c79dcdace6166fdf29cc76ed9975cc334f0a018b8 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^5.0.0": + version: 5.0.0 + resolution: "is-fullwidth-code-point@npm:5.0.0" + dependencies: + get-east-asian-width: "npm:^1.0.0" + checksum: 10c0/cd591b27d43d76b05fa65ed03eddce57a16e1eca0b7797ff7255de97019bcaf0219acfc0c4f7af13319e13541f2a53c0ace476f442b13267b9a6a7568f2b65c8 + languageName: node + linkType: hard + +"is-generator-fn@npm:^2.0.0": + version: 2.1.0 + resolution: "is-generator-fn@npm:2.1.0" + checksum: 10c0/2957cab387997a466cd0bf5c1b6047bd21ecb32bdcfd8996b15747aa01002c1c88731802f1b3d34ac99f4f6874b626418bd118658cf39380fe5fff32a3af9c4d + languageName: node + linkType: hard + +"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3": + version: 4.0.3 + resolution: "is-glob@npm:4.0.3" + dependencies: + is-extglob: "npm:^2.1.1" + checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a + languageName: node + linkType: hard + +"is-iterable@npm:^1.1.0": + version: 1.1.1 + resolution: "is-iterable@npm:1.1.1" + checksum: 10c0/8c919e9f608e5940b1d27dee9ef6e5de75e891665ab8dbcbfc740a65dbdaf070209950329f524573c52b1c584620d82ead13e662ce61c531152ddac70592c953 + languageName: node + linkType: hard + +"is-lambda@npm:^1.0.1": + version: 1.0.1 + resolution: "is-lambda@npm:1.0.1" + checksum: 10c0/85fee098ae62ba6f1e24cf22678805473c7afd0fb3978a3aa260e354cb7bcb3a5806cf0a98403188465efedec41ab4348e8e4e79305d409601323855b3839d4d + languageName: node + linkType: hard + +"is-negative-zero@npm:^2.0.3": + version: 2.0.3 + resolution: "is-negative-zero@npm:2.0.3" + checksum: 10c0/bcdcf6b8b9714063ffcfa9929c575ac69bfdabb8f4574ff557dfc086df2836cf07e3906f5bbc4f2a5c12f8f3ba56af640c843cdfc74da8caed86c7c7d66fd08e + languageName: node + linkType: hard + +"is-number-object@npm:^1.0.4": + version: 1.0.7 + resolution: "is-number-object@npm:1.0.7" + dependencies: + has-tostringtag: "npm:^1.0.0" + checksum: 10c0/aad266da1e530f1804a2b7bd2e874b4869f71c98590b3964f9d06cc9869b18f8d1f4778f838ecd2a11011bce20aeecb53cb269ba916209b79c24580416b74b1b + languageName: node + linkType: hard + +"is-number@npm:^4.0.0": + version: 4.0.0 + resolution: "is-number@npm:4.0.0" + checksum: 10c0/bb17a331f357eb59a7f8db848086c41886715b2ea1db03f284a99d14001cda094083a5b6a7b343b5bcf410ccef668a70bc626d07bc2032cc4ab46dd264cea244 + languageName: node + linkType: hard + +"is-number@npm:^7.0.0": + version: 7.0.0 + resolution: "is-number@npm:7.0.0" + checksum: 10c0/b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811 + languageName: node + linkType: hard + +"is-obj@npm:^2.0.0": + version: 2.0.0 + resolution: "is-obj@npm:2.0.0" + checksum: 10c0/85044ed7ba8bd169e2c2af3a178cacb92a97aa75de9569d02efef7f443a824b5e153eba72b9ae3aca6f8ce81955271aa2dc7da67a8b720575d3e38104208cb4e + languageName: node + linkType: hard + +"is-path-inside@npm:^3.0.3": + version: 3.0.3 + resolution: "is-path-inside@npm:3.0.3" + checksum: 10c0/cf7d4ac35fb96bab6a1d2c3598fe5ebb29aafb52c0aaa482b5a3ed9d8ba3edc11631e3ec2637660c44b3ce0e61a08d54946e8af30dec0b60a7c27296c68ffd05 + languageName: node + linkType: hard + +"is-plain-obj@npm:^1.1.0": + version: 1.1.0 + resolution: "is-plain-obj@npm:1.1.0" + checksum: 10c0/daaee1805add26f781b413fdf192fc91d52409583be30ace35c82607d440da63cc4cac0ac55136716688d6c0a2c6ef3edb2254fecbd1fe06056d6bd15975ee8c + languageName: node + linkType: hard + +"is-regex@npm:^1.1.4": + version: 1.1.4 + resolution: "is-regex@npm:1.1.4" + dependencies: + call-bind: "npm:^1.0.2" + has-tostringtag: "npm:^1.0.0" + checksum: 10c0/bb72aae604a69eafd4a82a93002058c416ace8cde95873589a97fc5dac96a6c6c78a9977d487b7b95426a8f5073969124dd228f043f9f604f041f32fcc465fc1 + languageName: node + linkType: hard + +"is-shared-array-buffer@npm:^1.0.2, is-shared-array-buffer@npm:^1.0.3": + version: 1.0.3 + resolution: "is-shared-array-buffer@npm:1.0.3" + dependencies: + call-bind: "npm:^1.0.7" + checksum: 10c0/adc11ab0acbc934a7b9e5e9d6c588d4ec6682f6fea8cda5180721704fa32927582ede5b123349e32517fdadd07958973d24716c80e7ab198970c47acc09e59c7 + languageName: node + linkType: hard + +"is-stream@npm:^2.0.0": + version: 2.0.1 + resolution: "is-stream@npm:2.0.1" + checksum: 10c0/7c284241313fc6efc329b8d7f08e16c0efeb6baab1b4cd0ba579eb78e5af1aa5da11e68559896a2067cd6c526bd29241dda4eb1225e627d5aa1a89a76d4635a5 + languageName: node + linkType: hard + +"is-stream@npm:^3.0.0": + version: 3.0.0 + resolution: "is-stream@npm:3.0.0" + checksum: 10c0/eb2f7127af02ee9aa2a0237b730e47ac2de0d4e76a4a905a50a11557f2339df5765eaea4ceb8029f1efa978586abe776908720bfcb1900c20c6ec5145f6f29d8 + languageName: node + linkType: hard + +"is-string@npm:^1.0.5, is-string@npm:^1.0.7": + version: 1.0.7 + resolution: "is-string@npm:1.0.7" + dependencies: + has-tostringtag: "npm:^1.0.0" + checksum: 10c0/905f805cbc6eedfa678aaa103ab7f626aac9ebbdc8737abb5243acaa61d9820f8edc5819106b8fcd1839e33db21de9f0116ae20de380c8382d16dc2a601921f6 + languageName: node + linkType: hard + +"is-symbol@npm:^1.0.2, is-symbol@npm:^1.0.3": + version: 1.0.4 + resolution: "is-symbol@npm:1.0.4" + dependencies: + has-symbols: "npm:^1.0.2" + checksum: 10c0/9381dd015f7c8906154dbcbf93fad769de16b4b961edc94f88d26eb8c555935caa23af88bda0c93a18e65560f6d7cca0fd5a3f8a8e1df6f1abbb9bead4502ef7 + languageName: node + linkType: hard + +"is-text-path@npm:^2.0.0": + version: 2.0.0 + resolution: "is-text-path@npm:2.0.0" + dependencies: + text-extensions: "npm:^2.0.0" + checksum: 10c0/e3c470e1262a3a54aa0fca1c0300b2659a7aed155714be6b643f88822c03bcfa6659b491f7a05c5acd3c1a3d6d42bab47e1bdd35bcc3a25973c4f26b2928bc1a + languageName: node + linkType: hard + +"is-typed-array@npm:^1.1.13": + version: 1.1.13 + resolution: "is-typed-array@npm:1.1.13" + dependencies: + which-typed-array: "npm:^1.1.14" + checksum: 10c0/fa5cb97d4a80e52c2cc8ed3778e39f175a1a2ae4ddf3adae3187d69586a1fd57cfa0b095db31f66aa90331e9e3da79184cea9c6abdcd1abc722dc3c3edd51cca + languageName: node + linkType: hard + +"is-weakref@npm:^1.0.2": + version: 1.0.2 + resolution: "is-weakref@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.2" + checksum: 10c0/1545c5d172cb690c392f2136c23eec07d8d78a7f57d0e41f10078aa4f5daf5d7f57b6513a67514ab4f073275ad00c9822fc8935e00229d0a2089e1c02685d4b1 + languageName: node + linkType: hard + +"isarray@npm:^2.0.5": + version: 2.0.5 + resolution: "isarray@npm:2.0.5" + checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd + languageName: node + linkType: hard + +"isexe@npm:^2.0.0": + version: 2.0.0 + resolution: "isexe@npm:2.0.0" + checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d + languageName: node + linkType: hard + +"isexe@npm:^3.1.1": + version: 3.1.1 + resolution: "isexe@npm:3.1.1" + checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 + languageName: node + linkType: hard + +"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0": + version: 3.2.2 + resolution: "istanbul-lib-coverage@npm:3.2.2" + checksum: 10c0/6c7ff2106769e5f592ded1fb418f9f73b4411fd5a084387a5410538332b6567cd1763ff6b6cadca9b9eb2c443cce2f7ea7d7f1b8d315f9ce58539793b1e0922b + languageName: node + linkType: hard + +"istanbul-lib-instrument@npm:^5.0.4": + version: 5.2.1 + resolution: "istanbul-lib-instrument@npm:5.2.1" + dependencies: + "@babel/core": "npm:^7.12.3" + "@babel/parser": "npm:^7.14.7" + "@istanbuljs/schema": "npm:^0.1.2" + istanbul-lib-coverage: "npm:^3.2.0" + semver: "npm:^6.3.0" + checksum: 10c0/8a1bdf3e377dcc0d33ec32fe2b6ecacdb1e4358fd0eb923d4326bb11c67622c0ceb99600a680f3dad5d29c66fc1991306081e339b4d43d0b8a2ab2e1d910a6ee + languageName: node + linkType: hard + +"istanbul-lib-instrument@npm:^6.0.0": + version: 6.0.2 + resolution: "istanbul-lib-instrument@npm:6.0.2" + dependencies: + "@babel/core": "npm:^7.23.9" + "@babel/parser": "npm:^7.23.9" + "@istanbuljs/schema": "npm:^0.1.3" + istanbul-lib-coverage: "npm:^3.2.0" + semver: "npm:^7.5.4" + checksum: 10c0/405c6ac037bf8c7ee7495980b0cd5544b2c53078c10534d0c9ceeb92a9ea7dcf8510f58ccfce31336458a8fa6ccef27b570bbb602abaa8c1650f5496a807477c + languageName: node + linkType: hard + +"istanbul-lib-report@npm:^3.0.0": + version: 3.0.1 + resolution: "istanbul-lib-report@npm:3.0.1" + dependencies: + istanbul-lib-coverage: "npm:^3.0.0" + make-dir: "npm:^4.0.0" + supports-color: "npm:^7.1.0" + checksum: 10c0/84323afb14392de8b6a5714bd7e9af845cfbd56cfe71ed276cda2f5f1201aea673c7111901227ee33e68e4364e288d73861eb2ed48f6679d1e69a43b6d9b3ba7 + languageName: node + linkType: hard + +"istanbul-lib-source-maps@npm:^4.0.0": + version: 4.0.1 + resolution: "istanbul-lib-source-maps@npm:4.0.1" + dependencies: + debug: "npm:^4.1.1" + istanbul-lib-coverage: "npm:^3.0.0" + source-map: "npm:^0.6.1" + checksum: 10c0/19e4cc405016f2c906dff271a76715b3e881fa9faeb3f09a86cb99b8512b3a5ed19cadfe0b54c17ca0e54c1142c9c6de9330d65506e35873994e06634eebeb66 + languageName: node + linkType: hard + +"istanbul-reports@npm:^3.1.3": + version: 3.1.7 + resolution: "istanbul-reports@npm:3.1.7" + dependencies: + html-escaper: "npm:^2.0.0" + istanbul-lib-report: "npm:^3.0.0" + checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51 + languageName: node + linkType: hard + +"iterable-lookahead@npm:^1.0.0": + version: 1.0.0 + resolution: "iterable-lookahead@npm:1.0.0" + checksum: 10c0/f320a513d5ecfe0ce3c681f1dc6f7e6d81a8bfd2d35911e92347c3d2115acedaf17f877b4aac4360125774b11b20f175d417a5ca8952bb84071d79a755d8768e + languageName: node + linkType: hard + +"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/7e42d1ea411b4d57d43ea8a6afbca9224382804359cb72626d0fc45bb8db1de5ad0248283c3db45fe73e77210750d4fcc7c2b4fe5d24fda94aaa24d658295c5f + languageName: node + linkType: hard + +"jest-changed-files@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-changed-files@npm:29.7.0" + dependencies: + execa: "npm:^5.0.0" + jest-util: "npm:^29.7.0" + p-limit: "npm:^3.1.0" + checksum: 10c0/e071384d9e2f6bb462231ac53f29bff86f0e12394c1b49ccafbad225ce2ab7da226279a8a94f421949920bef9be7ef574fd86aee22e8adfa149be73554ab828b + languageName: node + linkType: hard + +"jest-circus@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-circus@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/expect": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + co: "npm:^4.6.0" + dedent: "npm:^1.0.0" + is-generator-fn: "npm:^2.0.0" + jest-each: "npm:^29.7.0" + jest-matcher-utils: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-runtime: "npm:^29.7.0" + jest-snapshot: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + p-limit: "npm:^3.1.0" + pretty-format: "npm:^29.7.0" + pure-rand: "npm:^6.0.0" + slash: "npm:^3.0.0" + stack-utils: "npm:^2.0.3" + checksum: 10c0/8d15344cf7a9f14e926f0deed64ed190c7a4fa1ed1acfcd81e4cc094d3cc5bf7902ebb7b874edc98ada4185688f90c91e1747e0dfd7ac12463b097968ae74b5e + languageName: node + linkType: hard + +"jest-cli@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-cli@npm:29.7.0" + dependencies: + "@jest/core": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + chalk: "npm:^4.0.0" + create-jest: "npm:^29.7.0" + exit: "npm:^0.1.2" + import-local: "npm:^3.0.2" + jest-config: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-validate: "npm:^29.7.0" + yargs: "npm:^17.3.1" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + bin: + jest: bin/jest.js + checksum: 10c0/a658fd55050d4075d65c1066364595962ead7661711495cfa1dfeecf3d6d0a8ffec532f3dbd8afbb3e172dd5fd2fb2e813c5e10256e7cf2fea766314942fb43a + languageName: node + linkType: hard + +"jest-config@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-config@npm:29.7.0" + dependencies: + "@babel/core": "npm:^7.11.6" + "@jest/test-sequencer": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + babel-jest: "npm:^29.7.0" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + deepmerge: "npm:^4.2.2" + glob: "npm:^7.1.3" + graceful-fs: "npm:^4.2.9" + jest-circus: "npm:^29.7.0" + jest-environment-node: "npm:^29.7.0" + jest-get-type: "npm:^29.6.3" + jest-regex-util: "npm:^29.6.3" + jest-resolve: "npm:^29.7.0" + jest-runner: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-validate: "npm:^29.7.0" + micromatch: "npm:^4.0.4" + parse-json: "npm:^5.2.0" + pretty-format: "npm:^29.7.0" + slash: "npm:^3.0.0" + strip-json-comments: "npm:^3.1.1" + peerDependencies: + "@types/node": "*" + ts-node: ">=9.0.0" + peerDependenciesMeta: + "@types/node": + optional: true + ts-node: + optional: true + checksum: 10c0/bab23c2eda1fff06e0d104b00d6adfb1d1aabb7128441899c9bff2247bd26710b050a5364281ce8d52b46b499153bf7e3ee88b19831a8f3451f1477a0246a0f1 + languageName: node + linkType: hard + +"jest-diff@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-diff@npm:29.7.0" + dependencies: + chalk: "npm:^4.0.0" + diff-sequences: "npm:^29.6.3" + jest-get-type: "npm:^29.6.3" + pretty-format: "npm:^29.7.0" + checksum: 10c0/89a4a7f182590f56f526443dde69acefb1f2f0c9e59253c61d319569856c4931eae66b8a3790c443f529267a0ddba5ba80431c585deed81827032b2b2a1fc999 + languageName: node + linkType: hard + +"jest-docblock@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-docblock@npm:29.7.0" + dependencies: + detect-newline: "npm:^3.0.0" + checksum: 10c0/d932a8272345cf6b6142bb70a2bb63e0856cc0093f082821577ea5bdf4643916a98744dfc992189d2b1417c38a11fa42466f6111526bc1fb81366f56410f3be9 + languageName: node + linkType: hard + +"jest-each@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-each@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + chalk: "npm:^4.0.0" + jest-get-type: "npm:^29.6.3" + jest-util: "npm:^29.7.0" + pretty-format: "npm:^29.7.0" + checksum: 10c0/f7f9a90ebee80cc688e825feceb2613627826ac41ea76a366fa58e669c3b2403d364c7c0a74d862d469b103c843154f8456d3b1c02b487509a12afa8b59edbb4 + languageName: node + linkType: hard + +"jest-environment-node@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-environment-node@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/fake-timers": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + jest-mock: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + checksum: 10c0/61f04fec077f8b1b5c1a633e3612fc0c9aa79a0ab7b05600683428f1e01a4d35346c474bde6f439f9fcc1a4aa9a2861ff852d079a43ab64b02105d1004b2592b + languageName: node + linkType: hard + +"jest-get-type@npm:^29.6.3": + version: 29.6.3 + resolution: "jest-get-type@npm:29.6.3" + checksum: 10c0/552e7a97a983d3c2d4e412a44eb7de0430ff773dd99f7500962c268d6dfbfa431d7d08f919c9d960530e5f7f78eb47f267ad9b318265e5092b3ff9ede0db7c2b + languageName: node + linkType: hard + +"jest-haste-map@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-haste-map@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@types/graceful-fs": "npm:^4.1.3" + "@types/node": "npm:*" + anymatch: "npm:^3.0.3" + fb-watchman: "npm:^2.0.0" + fsevents: "npm:^2.3.2" + graceful-fs: "npm:^4.2.9" + jest-regex-util: "npm:^29.6.3" + jest-util: "npm:^29.7.0" + jest-worker: "npm:^29.7.0" + micromatch: "npm:^4.0.4" + walker: "npm:^1.0.8" + dependenciesMeta: + fsevents: + optional: true + checksum: 10c0/2683a8f29793c75a4728787662972fedd9267704c8f7ef9d84f2beed9a977f1cf5e998c07b6f36ba5603f53cb010c911fe8cd0ac9886e073fe28ca66beefd30c + languageName: node + linkType: hard + +"jest-junit@npm:16.0.0": + version: 16.0.0 + resolution: "jest-junit@npm:16.0.0" + dependencies: + mkdirp: "npm:^1.0.4" + strip-ansi: "npm:^6.0.1" + uuid: "npm:^8.3.2" + xml: "npm:^1.0.1" + checksum: 10c0/d813d4d142341c2b51b634db7ad6ceb9849514cb58f96ec5e7e4cf4031a557133490452710c2d9dec9b1dd546334d9ca663e042d3070c3e8f102ce6217bd8e2e + languageName: node + linkType: hard + +"jest-leak-detector@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-leak-detector@npm:29.7.0" + dependencies: + jest-get-type: "npm:^29.6.3" + pretty-format: "npm:^29.7.0" + checksum: 10c0/71bb9f77fc489acb842a5c7be030f2b9acb18574dc9fb98b3100fc57d422b1abc55f08040884bd6e6dbf455047a62f7eaff12aa4058f7cbdc11558718ca6a395 + languageName: node + linkType: hard + +"jest-matcher-utils@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-matcher-utils@npm:29.7.0" + dependencies: + chalk: "npm:^4.0.0" + jest-diff: "npm:^29.7.0" + jest-get-type: "npm:^29.6.3" + pretty-format: "npm:^29.7.0" + checksum: 10c0/0d0e70b28fa5c7d4dce701dc1f46ae0922102aadc24ed45d594dd9b7ae0a8a6ef8b216718d1ab79e451291217e05d4d49a82666e1a3cc2b428b75cd9c933244e + languageName: node + linkType: hard + +"jest-message-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-message-util@npm:29.7.0" + dependencies: + "@babel/code-frame": "npm:^7.12.13" + "@jest/types": "npm:^29.6.3" + "@types/stack-utils": "npm:^2.0.0" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + micromatch: "npm:^4.0.4" + pretty-format: "npm:^29.7.0" + slash: "npm:^3.0.0" + stack-utils: "npm:^2.0.3" + checksum: 10c0/850ae35477f59f3e6f27efac5215f706296e2104af39232bb14e5403e067992afb5c015e87a9243ec4d9df38525ef1ca663af9f2f4766aa116f127247008bd22 + languageName: node + linkType: hard + +"jest-mock@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-mock@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + jest-util: "npm:^29.7.0" + checksum: 10c0/7b9f8349ee87695a309fe15c46a74ab04c853369e5c40952d68061d9dc3159a0f0ed73e215f81b07ee97a9faaf10aebe5877a9d6255068a0977eae6a9ff1d5ac + languageName: node + linkType: hard + +"jest-pnp-resolver@npm:^1.2.2": + version: 1.2.3 + resolution: "jest-pnp-resolver@npm:1.2.3" + peerDependencies: + jest-resolve: "*" + peerDependenciesMeta: + jest-resolve: + optional: true + checksum: 10c0/86eec0c78449a2de733a6d3e316d49461af6a858070e113c97f75fb742a48c2396ea94150cbca44159ffd4a959f743a47a8b37a792ef6fdad2cf0a5cba973fac + languageName: node + linkType: hard + +"jest-regex-util@npm:^29.6.3": + version: 29.6.3 + resolution: "jest-regex-util@npm:29.6.3" + checksum: 10c0/4e33fb16c4f42111159cafe26397118dcfc4cf08bc178a67149fb05f45546a91928b820894572679d62559839d0992e21080a1527faad65daaae8743a5705a3b + languageName: node + linkType: hard + +"jest-resolve-dependencies@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-resolve-dependencies@npm:29.7.0" + dependencies: + jest-regex-util: "npm:^29.6.3" + jest-snapshot: "npm:^29.7.0" + checksum: 10c0/b6e9ad8ae5b6049474118ea6441dfddd385b6d1fc471db0136f7c8fbcfe97137a9665e4f837a9f49f15a29a1deb95a14439b7aec812f3f99d08f228464930f0d + languageName: node + linkType: hard + +"jest-resolve@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-resolve@npm:29.7.0" + dependencies: + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^29.7.0" + jest-pnp-resolver: "npm:^1.2.2" + jest-util: "npm:^29.7.0" + jest-validate: "npm:^29.7.0" + resolve: "npm:^1.20.0" + resolve.exports: "npm:^2.0.0" + slash: "npm:^3.0.0" + checksum: 10c0/59da5c9c5b50563e959a45e09e2eace783d7f9ac0b5dcc6375dea4c0db938d2ebda97124c8161310082760e8ebbeff9f6b177c15ca2f57fb424f637a5d2adb47 + languageName: node + linkType: hard + +"jest-runner@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-runner@npm:29.7.0" + dependencies: + "@jest/console": "npm:^29.7.0" + "@jest/environment": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + emittery: "npm:^0.13.1" + graceful-fs: "npm:^4.2.9" + jest-docblock: "npm:^29.7.0" + jest-environment-node: "npm:^29.7.0" + jest-haste-map: "npm:^29.7.0" + jest-leak-detector: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-resolve: "npm:^29.7.0" + jest-runtime: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-watcher: "npm:^29.7.0" + jest-worker: "npm:^29.7.0" + p-limit: "npm:^3.1.0" + source-map-support: "npm:0.5.13" + checksum: 10c0/2194b4531068d939f14c8d3274fe5938b77fa73126aedf9c09ec9dec57d13f22c72a3b5af01ac04f5c1cf2e28d0ac0b4a54212a61b05f10b5d6b47f2a1097bb4 + languageName: node + linkType: hard + +"jest-runtime@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-runtime@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/fake-timers": "npm:^29.7.0" + "@jest/globals": "npm:^29.7.0" + "@jest/source-map": "npm:^29.6.3" + "@jest/test-result": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + cjs-module-lexer: "npm:^1.0.0" + collect-v8-coverage: "npm:^1.0.0" + glob: "npm:^7.1.3" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-mock: "npm:^29.7.0" + jest-regex-util: "npm:^29.6.3" + jest-resolve: "npm:^29.7.0" + jest-snapshot: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + slash: "npm:^3.0.0" + strip-bom: "npm:^4.0.0" + checksum: 10c0/7cd89a1deda0bda7d0941835434e44f9d6b7bd50b5c5d9b0fc9a6c990b2d4d2cab59685ab3cb2850ed4cc37059f6de903af5a50565d7f7f1192a77d3fd6dd2a6 + languageName: node + linkType: hard + +"jest-snapshot@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-snapshot@npm:29.7.0" + dependencies: + "@babel/core": "npm:^7.11.6" + "@babel/generator": "npm:^7.7.2" + "@babel/plugin-syntax-jsx": "npm:^7.7.2" + "@babel/plugin-syntax-typescript": "npm:^7.7.2" + "@babel/types": "npm:^7.3.3" + "@jest/expect-utils": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + babel-preset-current-node-syntax: "npm:^1.0.0" + chalk: "npm:^4.0.0" + expect: "npm:^29.7.0" + graceful-fs: "npm:^4.2.9" + jest-diff: "npm:^29.7.0" + jest-get-type: "npm:^29.6.3" + jest-matcher-utils: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + natural-compare: "npm:^1.4.0" + pretty-format: "npm:^29.7.0" + semver: "npm:^7.5.3" + checksum: 10c0/6e9003c94ec58172b4a62864a91c0146513207bedf4e0a06e1e2ac70a4484088a2683e3a0538d8ea913bcfd53dc54a9b98a98cdfa562e7fe1d1339aeae1da570 + languageName: node + linkType: hard + +"jest-util@npm:^29.0.0, jest-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-util@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + graceful-fs: "npm:^4.2.9" + picomatch: "npm:^2.2.3" + checksum: 10c0/bc55a8f49fdbb8f51baf31d2a4f312fb66c9db1483b82f602c9c990e659cdd7ec529c8e916d5a89452ecbcfae4949b21b40a7a59d4ffc0cd813a973ab08c8150 + languageName: node + linkType: hard + +"jest-validate@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-validate@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + camelcase: "npm:^6.2.0" + chalk: "npm:^4.0.0" + jest-get-type: "npm:^29.6.3" + leven: "npm:^3.1.0" + pretty-format: "npm:^29.7.0" + checksum: 10c0/a20b930480c1ed68778c739f4739dce39423131bc070cd2505ddede762a5570a256212e9c2401b7ae9ba4d7b7c0803f03c5b8f1561c62348213aba18d9dbece2 + languageName: node + linkType: hard + +"jest-watcher@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-watcher@npm:29.7.0" + dependencies: + "@jest/test-result": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + ansi-escapes: "npm:^4.2.1" + chalk: "npm:^4.0.0" + emittery: "npm:^0.13.1" + jest-util: "npm:^29.7.0" + string-length: "npm:^4.0.1" + checksum: 10c0/ec6c75030562fc8f8c727cb8f3b94e75d831fc718785abfc196e1f2a2ebc9a2e38744a15147170039628a853d77a3b695561ce850375ede3a4ee6037a2574567 + languageName: node + linkType: hard + +"jest-worker@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-worker@npm:29.7.0" + dependencies: + "@types/node": "npm:*" + jest-util: "npm:^29.7.0" + merge-stream: "npm:^2.0.0" + supports-color: "npm:^8.0.0" + checksum: 10c0/5570a3a005b16f46c131968b8a5b56d291f9bbb85ff4217e31c80bd8a02e7de799e59a54b95ca28d5c302f248b54cbffde2d177c2f0f52ffcee7504c6eabf660 + languageName: node + linkType: hard + +"jest@npm:^29.7.0": + version: 29.7.0 + resolution: "jest@npm:29.7.0" + dependencies: + "@jest/core": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + import-local: "npm:^3.0.2" + jest-cli: "npm:^29.7.0" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + bin: + jest: bin/jest.js + checksum: 10c0/f40eb8171cf147c617cc6ada49d062fbb03b4da666cb8d39cdbfb739a7d75eea4c3ca150fb072d0d273dce0c753db4d0467d54906ad0293f59c54f9db4a09d8b + languageName: node + linkType: hard + +"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/05b9ed58cd30d0c3ccd3c98209339e74f50abd9a17e716f65db46b6a35812103f6bde6e134be7124d01745586bca8cc5dae1d0d952267c3ebe55171949c32e56 + languageName: node + linkType: hard + +"js-sha3@npm:0.8.0": + version: 0.8.0 + resolution: "js-sha3@npm:0.8.0" + checksum: 10c0/43a21dc7967c871bd2c46cb1c2ae97441a97169f324e509f382d43330d8f75cf2c96dba7c806ab08a425765a9c847efdd4bffbac2d99c3a4f3de6c0218f40533 + languageName: node + linkType: hard + +"js-tokens@npm:^4.0.0": + version: 4.0.0 + resolution: "js-tokens@npm:4.0.0" + checksum: 10c0/e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed + languageName: node + linkType: hard + +"js-yaml@npm:^3.13.1": + version: 3.14.1 + resolution: "js-yaml@npm:3.14.1" + dependencies: + argparse: "npm:^1.0.7" + esprima: "npm:^4.0.0" + bin: + js-yaml: bin/js-yaml.js + checksum: 10c0/6746baaaeac312c4db8e75fa22331d9a04cccb7792d126ed8ce6a0bbcfef0cedaddd0c5098fade53db067c09fe00aa1c957674b4765610a8b06a5a189e46433b + 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" + checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96 + languageName: node + linkType: hard + +"jsesc@npm:^2.5.1": + version: 2.5.2 + resolution: "jsesc@npm:2.5.2" + bin: + jsesc: bin/jsesc + checksum: 10c0/dbf59312e0ebf2b4405ef413ec2b25abb5f8f4d9bc5fb8d9f90381622ebca5f2af6a6aa9a8578f65903f9e33990a6dc798edd0ce5586894bf0e9e31803a1de88 + languageName: node + linkType: hard + +"jsesc@npm:~0.5.0": + version: 0.5.0 + resolution: "jsesc@npm:0.5.0" + bin: + jsesc: bin/jsesc + checksum: 10c0/f93792440ae1d80f091b65f8ceddf8e55c4bb7f1a09dee5dcbdb0db5612c55c0f6045625aa6b7e8edb2e0a4feabd80ee48616dbe2d37055573a84db3d24f96d9 + languageName: node + linkType: hard + +"json-buffer@npm:3.0.1": + version: 3.0.1 + resolution: "json-buffer@npm:3.0.1" + checksum: 10c0/0d1c91569d9588e7eef2b49b59851f297f3ab93c7b35c7c221e288099322be6b562767d11e4821da500f3219542b9afd2e54c5dc573107c1126ed1080f8e96d7 + languageName: node + linkType: hard + +"json-parse-better-errors@npm:^1.0.1": + version: 1.0.2 + resolution: "json-parse-better-errors@npm:1.0.2" + checksum: 10c0/2f1287a7c833e397c9ddd361a78638e828fc523038bb3441fd4fc144cfd2c6cd4963ffb9e207e648cf7b692600f1e1e524e965c32df5152120910e4903a47dcb + languageName: node + linkType: hard + +"json-parse-even-better-errors@npm:^2.3.0": + version: 2.3.1 + resolution: "json-parse-even-better-errors@npm:2.3.1" + checksum: 10c0/140932564c8f0b88455432e0f33c4cb4086b8868e37524e07e723f4eaedb9425bdc2bafd71bd1d9765bd15fd1e2d126972bc83990f55c467168c228c24d665f3 + languageName: node + linkType: hard + +"json-schema-traverse@npm:^0.4.1": + version: 0.4.1 + resolution: "json-schema-traverse@npm:0.4.1" + checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce + languageName: node + linkType: hard + +"json-schema-traverse@npm:^1.0.0": + version: 1.0.0 + resolution: "json-schema-traverse@npm:1.0.0" + checksum: 10c0/71e30015d7f3d6dc1c316d6298047c8ef98a06d31ad064919976583eb61e1018a60a0067338f0f79cabc00d84af3fcc489bd48ce8a46ea165d9541ba17fb30c6 + languageName: node + linkType: hard + +"json-stable-stringify-without-jsonify@npm:^1.0.1": + version: 1.0.1 + resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" + checksum: 10c0/cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5 + languageName: node + linkType: hard + +"json5@npm:^2.2.2, json5@npm:^2.2.3": + version: 2.2.3 + resolution: "json5@npm:2.2.3" + bin: + json5: lib/cli.js + checksum: 10c0/5a04eed94810fa55c5ea138b2f7a5c12b97c3750bc63d11e511dcecbfef758003861522a070c2272764ee0f4e3e323862f386945aeb5b85b87ee43f084ba586c + languageName: node + linkType: hard + +"jsonparse@npm:^1.2.0": + version: 1.3.1 + resolution: "jsonparse@npm:1.3.1" + checksum: 10c0/89bc68080cd0a0e276d4b5ab1b79cacd68f562467008d176dc23e16e97d4efec9e21741d92ba5087a8433526a45a7e6a9d5ef25408696c402ca1cfbc01a90bf0 + languageName: node + linkType: hard + +"keyv@npm:^4.5.3, keyv@npm:^4.5.4": + version: 4.5.4 + resolution: "keyv@npm:4.5.4" + dependencies: + json-buffer: "npm:3.0.1" + checksum: 10c0/aa52f3c5e18e16bb6324876bb8b59dd02acf782a4b789c7b2ae21107fab95fab3890ed448d4f8dba80ce05391eeac4bfabb4f02a20221342982f806fa2cf271e + languageName: node + linkType: hard + +"kind-of@npm:^6.0.3": + version: 6.0.3 + resolution: "kind-of@npm:6.0.3" + checksum: 10c0/61cdff9623dabf3568b6445e93e31376bee1cdb93f8ba7033d86022c2a9b1791a1d9510e026e6465ebd701a6dd2f7b0808483ad8838341ac52f003f512e0b4c4 + languageName: node + linkType: hard + +"kleur@npm:^3.0.3": + version: 3.0.3 + resolution: "kleur@npm:3.0.3" + checksum: 10c0/cd3a0b8878e7d6d3799e54340efe3591ca787d9f95f109f28129bdd2915e37807bf8918bb295ab86afb8c82196beec5a1adcaf29042ce3f2bd932b038fe3aa4b + languageName: node + linkType: hard + +"knip@npm:^5.0.1": + version: 5.21.2 + resolution: "knip@npm:5.21.2" + dependencies: + "@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" + 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" + picomatch: "npm:^4.0.1" + 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: + "@types/node": ">=18" + typescript: ">=5.0.4" + bin: + knip: bin/knip.js + knip-bun: bin/knip-bun.js + checksum: 10c0/b28dfc530b5b9f9ace974ea3418c08f5adfb3278d0bc64533fe5e32cf8ba4159ae89a45af27bee6db116e7a66a3e9bdab5364a0546e45f8673c51b2e536c3e29 + languageName: node + linkType: hard + +"leven@npm:^3.1.0": + version: 3.1.0 + resolution: "leven@npm:3.1.0" + checksum: 10c0/cd778ba3fbab0f4d0500b7e87d1f6e1f041507c56fdcd47e8256a3012c98aaee371d4c15e0a76e0386107af2d42e2b7466160a2d80688aaa03e66e49949f42df + languageName: node + linkType: hard + +"levn@npm:^0.4.1": + version: 0.4.1 + resolution: "levn@npm:0.4.1" + dependencies: + prelude-ls: "npm:^1.2.1" + type-check: "npm:~0.4.0" + checksum: 10c0/effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e + languageName: node + linkType: hard + +"lilconfig@npm:~3.1.1": + version: 3.1.2 + resolution: "lilconfig@npm:3.1.2" + checksum: 10c0/f059630b1a9bddaeba83059db00c672b64dc14074e9f232adce32b38ca1b5686ab737eb665c5ba3c32f147f0002b4bee7311ad0386a9b98547b5623e87071fbe + languageName: node + linkType: hard + +"lines-and-columns@npm:^1.1.6": + version: 1.2.4 + resolution: "lines-and-columns@npm:1.2.4" + checksum: 10c0/3da6ee62d4cd9f03f5dc90b4df2540fb85b352081bee77fe4bbcd12c9000ead7f35e0a38b8d09a9bb99b13223446dd8689ff3c4959807620726d788701a83d2d + languageName: node + linkType: hard + +"lint-staged@npm:^15.2.2": + 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/c14399f9782ae222a1748144254f24b5b9afc816dc8840bd02d50f523c6582796ff18410767eb1a73cf1a83bc6e492dea7b1c4f0912bf3e434c068221f13c878 + languageName: node + linkType: hard + +"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.1" + wrap-ansi: "npm:^9.0.0" + checksum: 10c0/ac32cba8e5c79bcf0dbbb43c2fcc73e47902320c1fa1891074fefb3aa3dfaeef9c76348da22909f65334ba9bee1140bfc903e2f0c64427dd08ef4ba8f6b1dbd0 + languageName: node + linkType: hard + +"load-json-file@npm:^4.0.0": + version: 4.0.0 + resolution: "load-json-file@npm:4.0.0" + dependencies: + graceful-fs: "npm:^4.1.2" + parse-json: "npm:^4.0.0" + pify: "npm:^3.0.0" + strip-bom: "npm:^3.0.0" + checksum: 10c0/6b48f6a0256bdfcc8970be2c57f68f10acb2ee7e63709b386b2febb6ad3c86198f840889cdbe71d28f741cbaa2f23a7771206b138cd1bdd159564511ca37c1d5 + languageName: node + linkType: hard + +"locate-path@npm:^5.0.0": + version: 5.0.0 + resolution: "locate-path@npm:5.0.0" + dependencies: + p-locate: "npm:^4.1.0" + checksum: 10c0/33a1c5247e87e022f9713e6213a744557a3e9ec32c5d0b5efb10aa3a38177615bf90221a5592674857039c1a0fd2063b82f285702d37b792d973e9e72ace6c59 + languageName: node + linkType: hard + +"locate-path@npm:^6.0.0": + version: 6.0.0 + resolution: "locate-path@npm:6.0.0" + dependencies: + p-locate: "npm:^5.0.0" + checksum: 10c0/d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3 + languageName: node + linkType: hard + +"lodash.camelcase@npm:^4.3.0": + version: 4.3.0 + resolution: "lodash.camelcase@npm:4.3.0" + checksum: 10c0/fcba15d21a458076dd309fce6b1b4bf611d84a0ec252cb92447c948c533ac250b95d2e00955801ebc367e5af5ed288b996d75d37d2035260a937008e14eaf432 + languageName: node + linkType: hard + +"lodash.curry@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.curry@npm:4.1.1" + checksum: 10c0/f0431947dc9236df879fc13eb40c31a2839c958bd0eaa39170a5758c25a7d85d461716a851ab45a175371950b283480615cdd4b07fb0dd1afff7a2914a90696f + languageName: node + linkType: hard + +"lodash.debounce@npm:^4.0.8": + version: 4.0.8 + resolution: "lodash.debounce@npm:4.0.8" + checksum: 10c0/762998a63e095412b6099b8290903e0a8ddcb353ac6e2e0f2d7e7d03abd4275fe3c689d88960eb90b0dde4f177554d51a690f22a343932ecbc50a5d111849987 + languageName: node + linkType: hard + +"lodash.isfunction@npm:^3.0.9": + version: 3.0.9 + resolution: "lodash.isfunction@npm:3.0.9" + checksum: 10c0/e88620922f5f104819496884779ca85bfc542efb2946df661ab3e2cd38da5c8375434c6adbedfc76dd3c2b04075d2ba8ec215cfdedf08ddd2e3c3467e8a26ccd + languageName: node + linkType: hard + +"lodash.isplainobject@npm:^4.0.6": + version: 4.0.6 + resolution: "lodash.isplainobject@npm:4.0.6" + checksum: 10c0/afd70b5c450d1e09f32a737bed06ff85b873ecd3d3d3400458725283e3f2e0bb6bf48e67dbe7a309eb371a822b16a26cca4a63c8c52db3fc7dc9d5f9dd324cbb + languageName: node + linkType: hard + +"lodash.kebabcase@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.kebabcase@npm:4.1.1" + checksum: 10c0/da5d8f41dbb5bc723d4bf9203d5096ca8da804d6aec3d2b56457156ba6c8d999ff448d347ebd97490da853cb36696ea4da09a431499f1ee8deb17b094ecf4e33 + languageName: node + linkType: hard + +"lodash.memoize@npm:4.x": + version: 4.1.2 + resolution: "lodash.memoize@npm:4.1.2" + checksum: 10c0/c8713e51eccc650422716a14cece1809cfe34bc5ab5e242b7f8b4e2241c2483697b971a604252807689b9dd69bfe3a98852e19a5b89d506b000b4187a1285df8 + languageName: node + linkType: hard + +"lodash.merge@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.merge@npm:4.6.2" + checksum: 10c0/402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506 + languageName: node + linkType: hard + +"lodash.mergewith@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.mergewith@npm:4.6.2" + checksum: 10c0/4adbed65ff96fd65b0b3861f6899f98304f90fd71e7f1eb36c1270e05d500ee7f5ec44c02ef979b5ddbf75c0a0b9b99c35f0ad58f4011934c4d4e99e5200b3b5 + languageName: node + linkType: hard + +"lodash.snakecase@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.snakecase@npm:4.1.1" + checksum: 10c0/f0b3f2497eb20eea1a1cfc22d645ecaeb78ac14593eb0a40057977606d2f35f7aaff0913a06553c783b535aafc55b718f523f9eb78f8d5293f492af41002eaf9 + languageName: node + linkType: hard + +"lodash.startcase@npm:^4.4.0": + version: 4.4.0 + resolution: "lodash.startcase@npm:4.4.0" + checksum: 10c0/bd82aa87a45de8080e1c5ee61128c7aee77bf7f1d86f4ff94f4a6d7438fc9e15e5f03374b947be577a93804c8ad6241f0251beaf1452bf716064eeb657b3a9f0 + languageName: node + linkType: hard + +"lodash.uniq@npm:^4.5.0": + version: 4.5.0 + resolution: "lodash.uniq@npm:4.5.0" + checksum: 10c0/262d400bb0952f112162a320cc4a75dea4f66078b9e7e3075ffbc9c6aa30b3e9df3cf20e7da7d566105e1ccf7804e4fbd7d804eee0b53de05d83f16ffbf41c5e + languageName: node + linkType: hard + +"lodash.upperfirst@npm:^4.3.1": + version: 4.3.1 + resolution: "lodash.upperfirst@npm:4.3.1" + checksum: 10c0/435625da4b3ee74e7a1367a780d9107ab0b13ef4359fc074b2a1a40458eb8d91b655af62f6795b7138d493303a98c0285340160341561d6896e4947e077fa975 + languageName: node + linkType: hard + +"lodash@npm:^4.17.15": + version: 4.17.21 + resolution: "lodash@npm:4.17.21" + checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c + languageName: node + linkType: hard + +"log-update@npm:^6.0.0": + version: 6.0.0 + resolution: "log-update@npm:6.0.0" + dependencies: + ansi-escapes: "npm:^6.2.0" + cli-cursor: "npm:^4.0.0" + slice-ansi: "npm:^7.0.0" + strip-ansi: "npm:^7.1.0" + wrap-ansi: "npm:^9.0.0" + checksum: 10c0/e0b3c3401ef49ce3eb17e2f83d644765e4f7988498fc1344eaa4f31ab30e510dcc469a7fb64dc01bd1c8d9237d917598fa677a9818705fb3774c10f6e9d4b27c + languageName: node + linkType: hard + +"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": + version: 10.2.2 + resolution: "lru-cache@npm:10.2.2" + checksum: 10c0/402d31094335851220d0b00985084288136136992979d0e015f0f1697e15d1c86052d7d53ae86b614e5b058425606efffc6969a31a091085d7a2b80a8a1e26d6 + languageName: node + linkType: hard + +"lru-cache@npm:^5.1.1": + version: 5.1.1 + resolution: "lru-cache@npm:5.1.1" + dependencies: + yallist: "npm:^3.0.2" + checksum: 10c0/89b2ef2ef45f543011e38737b8a8622a2f8998cddf0e5437174ef8f1f70a8b9d14a918ab3e232cb3ba343b7abddffa667f0b59075b2b80e6b4d63c3de6127482 + languageName: node + linkType: hard + +"lru-cache@npm:^6.0.0": + version: 6.0.0 + resolution: "lru-cache@npm:6.0.0" + dependencies: + yallist: "npm:^4.0.0" + checksum: 10c0/cb53e582785c48187d7a188d3379c181b5ca2a9c78d2bce3e7dee36f32761d1c42983da3fe12b55cb74e1779fa94cdc2e5367c028a9b35317184ede0c07a30a9 + languageName: node + linkType: hard + +"magic-string@npm:^0.16.0": + version: 0.16.0 + resolution: "magic-string@npm:0.16.0" + dependencies: + vlq: "npm:^0.2.1" + checksum: 10c0/127e147c229c8c8ea25844fe1015c529698d18622b1609e89ef97fd250378f8ab40f4395227b5c6b99444459d85f4683c175bd48d2cee69fdf8a83b6a735de5a + languageName: node + linkType: hard + +"make-dir@npm:^4.0.0": + version: 4.0.0 + resolution: "make-dir@npm:4.0.0" + dependencies: + semver: "npm:^7.5.3" + checksum: 10c0/69b98a6c0b8e5c4fe9acb61608a9fbcfca1756d910f51e5dbe7a9e5cfb74fca9b8a0c8a0ffdf1294a740826c1ab4871d5bf3f62f72a3049e5eac6541ddffed68 + languageName: node + linkType: hard + +"make-error@npm:1.x, make-error@npm:^1.1.1": + version: 1.3.6 + resolution: "make-error@npm:1.3.6" + checksum: 10c0/171e458d86854c6b3fc46610cfacf0b45149ba043782558c6875d9f42f222124384ad0b468c92e996d815a8a2003817a710c0a160e49c1c394626f76fa45396f + languageName: node + linkType: hard + +"make-fetch-happen@npm:^13.0.0": + version: 13.0.1 + resolution: "make-fetch-happen@npm:13.0.1" + dependencies: + "@npmcli/agent": "npm:^2.0.0" + cacache: "npm:^18.0.0" + http-cache-semantics: "npm:^4.1.1" + is-lambda: "npm:^1.0.1" + minipass: "npm:^7.0.2" + minipass-fetch: "npm:^3.0.0" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + negotiator: "npm:^0.6.3" + proc-log: "npm:^4.2.0" + promise-retry: "npm:^2.0.1" + ssri: "npm:^10.0.0" + checksum: 10c0/df5f4dbb6d98153b751bccf4dc4cc500de85a96a9331db9805596c46aa9f99d9555983954e6c1266d9f981ae37a9e4647f42b9a4bb5466f867f4012e582c9e7e + languageName: node + linkType: hard + +"makeerror@npm:1.0.12": + version: 1.0.12 + resolution: "makeerror@npm:1.0.12" + dependencies: + tmpl: "npm:1.0.5" + checksum: 10c0/b0e6e599780ce6bab49cc413eba822f7d1f0dfebd1c103eaa3785c59e43e22c59018323cf9e1708f0ef5329e94a745d163fcbb6bff8e4c6742f9be9e86f3500c + languageName: node + linkType: hard + +"map-obj@npm:^1.0.0": + version: 1.0.1 + resolution: "map-obj@npm:1.0.1" + checksum: 10c0/ccca88395e7d38671ed9f5652ecf471ecd546924be2fb900836b9da35e068a96687d96a5f93dcdfa94d9a27d649d2f10a84595590f89a347fb4dda47629dcc52 + languageName: node + linkType: hard + +"map-obj@npm:^2.0.0": + version: 2.0.0 + resolution: "map-obj@npm:2.0.0" + checksum: 10c0/e8e0f786fb944614475dab3d5d727a24c4e6f000e35e6b35ebd4c62fc3e336a773db1ae317bc658cc9563ce17225c658049206e6fe650ccd1232329c58b4436d + languageName: node + linkType: hard + +"map-obj@npm:^4.0.0": + version: 4.3.0 + resolution: "map-obj@npm:4.3.0" + checksum: 10c0/1c19e1c88513c8abdab25c316367154c6a0a6a0f77e3e8c391bb7c0e093aefed293f539d026dc013d86219e5e4c25f23b0003ea588be2101ccd757bacc12d43b + languageName: node + linkType: hard + +"memorystream@npm:^0.3.1": + version: 0.3.1 + resolution: "memorystream@npm:0.3.1" + checksum: 10c0/4bd164657711d9747ff5edb0508b2944414da3464b7fe21ac5c67cf35bba975c4b446a0124bd0f9a8be54cfc18faf92e92bd77563a20328b1ccf2ff04e9f39b9 + languageName: node + linkType: hard + +"meow@npm:^12.0.1": + version: 12.1.1 + resolution: "meow@npm:12.1.1" + checksum: 10c0/a125ca99a32e2306e2f4cbe651a0d27f6eb67918d43a075f6e80b35e9bf372ebf0fc3a9fbc201cbbc9516444b6265fb3c9f80c5b7ebd32f548aa93eb7c28e088 + languageName: node + linkType: hard + +"meow@npm:^8.0.0": + version: 8.1.2 + resolution: "meow@npm:8.1.2" + dependencies: + "@types/minimist": "npm:^1.2.0" + camelcase-keys: "npm:^6.2.2" + decamelize-keys: "npm:^1.1.0" + hard-rejection: "npm:^2.1.0" + minimist-options: "npm:4.1.0" + normalize-package-data: "npm:^3.0.0" + read-pkg-up: "npm:^7.0.1" + redent: "npm:^3.0.0" + trim-newlines: "npm:^3.0.0" + type-fest: "npm:^0.18.0" + yargs-parser: "npm:^20.2.3" + checksum: 10c0/9a8d90e616f783650728a90f4ea1e5f763c1c5260369e6596b52430f877f4af8ecbaa8c9d952c93bbefd6d5bda4caed6a96a20ba7d27b511d2971909b01922a2 + languageName: node + linkType: hard + +"merge-stream@npm:^2.0.0": + version: 2.0.0 + resolution: "merge-stream@npm:2.0.0" + checksum: 10c0/867fdbb30a6d58b011449b8885601ec1690c3e41c759ecd5a9d609094f7aed0096c37823ff4a7190ef0b8f22cc86beb7049196ff68c016e3b3c671d0dac91ce5 + languageName: node + linkType: hard + +"merge2@npm:^1.3.0, merge2@npm:^1.4.1": + version: 1.4.1 + resolution: "merge2@npm:1.4.1" + checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb + languageName: node + linkType: hard + +"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:^2.3.1" + checksum: 10c0/58fa99bc5265edec206e9163a1d2cec5fabc46a5b473c45f4a700adce88c2520456ae35f2b301e4410fb3afb27e9521fb2813f6fc96be0a48a89430e0916a772 + languageName: node + linkType: hard + +"mime-db@npm:1.52.0": + version: 1.52.0 + resolution: "mime-db@npm:1.52.0" + checksum: 10c0/0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa + languageName: node + linkType: hard + +"mime-types@npm:^2.1.12": + version: 2.1.35 + resolution: "mime-types@npm:2.1.35" + dependencies: + mime-db: "npm:1.52.0" + checksum: 10c0/82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2 + languageName: node + linkType: hard + +"mimic-fn@npm:^2.1.0": + version: 2.1.0 + resolution: "mimic-fn@npm:2.1.0" + checksum: 10c0/b26f5479d7ec6cc2bce275a08f146cf78f5e7b661b18114e2506dd91ec7ec47e7a25bf4360e5438094db0560bcc868079fb3b1fb3892b833c1ecbf63f80c95a4 + languageName: node + linkType: hard + +"mimic-fn@npm:^4.0.0": + version: 4.0.0 + resolution: "mimic-fn@npm:4.0.0" + checksum: 10c0/de9cc32be9996fd941e512248338e43407f63f6d497abe8441fa33447d922e927de54d4cc3c1a3c6d652857acd770389d5a3823f311a744132760ce2be15ccbf + languageName: node + linkType: hard + +"min-indent@npm:^1.0.0": + version: 1.0.1 + resolution: "min-indent@npm:1.0.1" + checksum: 10c0/7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c + languageName: node + linkType: hard + +"minimalistic-assert@npm:^1.0.0, minimalistic-assert@npm:^1.0.1": + version: 1.0.1 + resolution: "minimalistic-assert@npm:1.0.1" + checksum: 10c0/96730e5601cd31457f81a296f521eb56036e6f69133c0b18c13fe941109d53ad23a4204d946a0d638d7f3099482a0cec8c9bb6d642604612ce43ee536be3dddd + languageName: node + linkType: hard + +"minimalistic-crypto-utils@npm:^1.0.1": + version: 1.0.1 + resolution: "minimalistic-crypto-utils@npm:1.0.1" + checksum: 10c0/790ecec8c5c73973a4fbf2c663d911033e8494d5fb0960a4500634766ab05d6107d20af896ca2132e7031741f19888154d44b2408ada0852446705441383e9f8 + languageName: node + linkType: hard + +"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": + version: 3.1.2 + resolution: "minimatch@npm:3.1.2" + dependencies: + brace-expansion: "npm:^1.1.7" + checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 + languageName: node + linkType: hard + +"minimatch@npm:^9.0.4": + version: 9.0.4 + resolution: "minimatch@npm:9.0.4" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 10c0/2c16f21f50e64922864e560ff97c587d15fd491f65d92a677a344e970fe62aafdbeafe648965fa96d33c061b4d0eabfe0213466203dd793367e7f28658cf6414 + languageName: node + linkType: hard + +"minimist-options@npm:4.1.0": + version: 4.1.0 + resolution: "minimist-options@npm:4.1.0" + dependencies: + arrify: "npm:^1.0.1" + is-plain-obj: "npm:^1.1.0" + kind-of: "npm:^6.0.3" + checksum: 10c0/7871f9cdd15d1e7374e5b013e2ceda3d327a06a8c7b38ae16d9ef941e07d985e952c589e57213f7aa90a8744c60aed9524c0d85e501f5478382d9181f2763f54 + languageName: node + linkType: hard + +"minimist@npm:^1.2.6, minimist@npm:^1.2.8": + version: 1.2.8 + resolution: "minimist@npm:1.2.8" + checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 + languageName: node + linkType: hard + +"minipass-collect@npm:^2.0.1": + version: 2.0.1 + resolution: "minipass-collect@npm:2.0.1" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e + languageName: node + linkType: hard + +"minipass-fetch@npm:^3.0.0": + version: 3.0.5 + resolution: "minipass-fetch@npm:3.0.5" + dependencies: + encoding: "npm:^0.1.13" + minipass: "npm:^7.0.3" + minipass-sized: "npm:^1.0.3" + minizlib: "npm:^2.1.2" + dependenciesMeta: + encoding: + optional: true + checksum: 10c0/9d702d57f556274286fdd97e406fc38a2f5c8d15e158b498d7393b1105974b21249289ec571fa2b51e038a4872bfc82710111cf75fae98c662f3d6f95e72152b + languageName: node + linkType: hard + +"minipass-flush@npm:^1.0.5": + version: 1.0.5 + resolution: "minipass-flush@npm:1.0.5" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd + languageName: node + linkType: hard + +"minipass-pipeline@npm:^1.2.4": + version: 1.2.4 + resolution: "minipass-pipeline@npm:1.2.4" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 + languageName: node + linkType: hard + +"minipass-sized@npm:^1.0.3": + version: 1.0.3 + resolution: "minipass-sized@npm:1.0.3" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb + languageName: node + linkType: hard + +"minipass@npm:^3.0.0": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" + dependencies: + yallist: "npm:^4.0.0" + checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c + languageName: node + linkType: hard + +"minipass@npm:^5.0.0": + version: 5.0.0 + resolution: "minipass@npm:5.0.0" + checksum: 10c0/a91d8043f691796a8ac88df039da19933ef0f633e3d7f0d35dcd5373af49131cf2399bfc355f41515dc495e3990369c3858cd319e5c2722b4753c90bf3152462 + 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.1.2": + version: 7.1.2 + resolution: "minipass@npm:7.1.2" + checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 + languageName: node + linkType: hard + +"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": + version: 2.1.2 + resolution: "minizlib@npm:2.1.2" + dependencies: + minipass: "npm:^3.0.0" + yallist: "npm:^4.0.0" + checksum: 10c0/64fae024e1a7d0346a1102bb670085b17b7f95bf6cfdf5b128772ec8faf9ea211464ea4add406a3a6384a7d87a0cd1a96263692134323477b4fb43659a6cab78 + languageName: node + linkType: hard + +"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": + version: 1.0.4 + resolution: "mkdirp@npm:1.0.4" + bin: + mkdirp: bin/cmd.js + checksum: 10c0/46ea0f3ffa8bc6a5bc0c7081ffc3907777f0ed6516888d40a518c5111f8366d97d2678911ad1a6882bf592fa9de6c784fea32e1687bb94e1f4944170af48a5cf + languageName: node + linkType: hard + +"ms@npm:2.1.2": + version: 2.1.2 + resolution: "ms@npm:2.1.2" + checksum: 10c0/a437714e2f90dbf881b5191d35a6db792efbca5badf112f87b9e1c712aace4b4b9b742dd6537f3edf90fd6f684de897cec230abde57e87883766712ddda297cc + languageName: node + linkType: hard + +"natural-compare@npm:^1.4.0": + version: 1.4.0 + resolution: "natural-compare@npm:1.4.0" + checksum: 10c0/f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447 + languageName: node + linkType: hard + +"negotiator@npm:^0.6.3": + version: 0.6.3 + resolution: "negotiator@npm:0.6.3" + checksum: 10c0/3ec9fd413e7bf071c937ae60d572bc67155262068ed522cf4b3be5edbe6ddf67d095ec03a3a14ebf8fc8e95f8e1d61be4869db0dbb0de696f6b837358bd43fc2 + languageName: node + linkType: hard + +"nice-try@npm:^1.0.4": + version: 1.0.5 + resolution: "nice-try@npm:1.0.5" + checksum: 10c0/95568c1b73e1d0d4069a3e3061a2102d854513d37bcfda73300015b7ba4868d3b27c198d1dbbd8ebdef4112fc2ed9e895d4a0f2e1cce0bd334f2a1346dc9205f + languageName: node + linkType: hard + +"node-domexception@npm:^1.0.0": + version: 1.0.0 + resolution: "node-domexception@npm:1.0.0" + checksum: 10c0/5e5d63cda29856402df9472335af4bb13875e1927ad3be861dc5ebde38917aecbf9ae337923777af52a48c426b70148815e890a5d72760f1b4d758cc671b1a2b + languageName: node + linkType: hard + +"node-fetch@npm:^3.3.2": + version: 3.3.2 + resolution: "node-fetch@npm:3.3.2" + dependencies: + data-uri-to-buffer: "npm:^4.0.0" + fetch-blob: "npm:^3.1.4" + formdata-polyfill: "npm:^4.0.10" + checksum: 10c0/f3d5e56190562221398c9f5750198b34cf6113aa304e34ee97c94fd300ec578b25b2c2906edba922050fce983338fde0d5d34fcb0fc3336ade5bd0e429ad7538 + languageName: node + linkType: hard + +"node-gyp@npm:latest": + version: 10.1.0 + resolution: "node-gyp@npm:10.1.0" + dependencies: + env-paths: "npm:^2.2.0" + exponential-backoff: "npm:^3.1.1" + glob: "npm:^10.3.10" + graceful-fs: "npm:^4.2.6" + make-fetch-happen: "npm:^13.0.0" + nopt: "npm:^7.0.0" + proc-log: "npm:^3.0.0" + semver: "npm:^7.3.5" + tar: "npm:^6.1.2" + which: "npm:^4.0.0" + bin: + node-gyp: bin/node-gyp.js + checksum: 10c0/9cc821111ca244a01fb7f054db7523ab0a0cd837f665267eb962eb87695d71fb1e681f9e21464cc2fd7c05530dc4c81b810bca1a88f7d7186909b74477491a3c + languageName: node + linkType: hard + +"node-int64@npm:^0.4.0": + version: 0.4.0 + resolution: "node-int64@npm:0.4.0" + checksum: 10c0/a6a4d8369e2f2720e9c645255ffde909c0fbd41c92ea92a5607fc17055955daac99c1ff589d421eee12a0d24e99f7bfc2aabfeb1a4c14742f6c099a51863f31a + languageName: node + linkType: hard + +"node-releases@npm:^2.0.14": + version: 2.0.14 + resolution: "node-releases@npm:2.0.14" + checksum: 10c0/199fc93773ae70ec9969bc6d5ac5b2bbd6eb986ed1907d751f411fef3ede0e4bfdb45ceb43711f8078bea237b6036db8b1bf208f6ff2b70c7d615afd157f3ab9 + languageName: node + linkType: hard + +"nopt@npm:^7.0.0": + version: 7.2.1 + resolution: "nopt@npm:7.2.1" + dependencies: + abbrev: "npm:^2.0.0" + bin: + nopt: bin/nopt.js + checksum: 10c0/a069c7c736767121242037a22a788863accfa932ab285a1eb569eb8cd534b09d17206f68c37f096ae785647435e0c5a5a0a67b42ec743e481a455e5ae6a6df81 + languageName: node + linkType: hard + +"normalize-package-data@npm:^2.3.2, normalize-package-data@npm:^2.5.0": + version: 2.5.0 + resolution: "normalize-package-data@npm:2.5.0" + dependencies: + hosted-git-info: "npm:^2.1.4" + resolve: "npm:^1.10.0" + semver: "npm:2 || 3 || 4 || 5" + validate-npm-package-license: "npm:^3.0.1" + checksum: 10c0/357cb1646deb42f8eb4c7d42c4edf0eec312f3628c2ef98501963cc4bbe7277021b2b1d977f982b2edce78f5a1014613ce9cf38085c3df2d76730481357ca504 + languageName: node + linkType: hard + +"normalize-package-data@npm:^3.0.0": + version: 3.0.3 + resolution: "normalize-package-data@npm:3.0.3" + dependencies: + hosted-git-info: "npm:^4.0.1" + is-core-module: "npm:^2.5.0" + semver: "npm:^7.3.4" + validate-npm-package-license: "npm:^3.0.1" + checksum: 10c0/e5d0f739ba2c465d41f77c9d950e291ea4af78f8816ddb91c5da62257c40b76d8c83278b0d08ffbcd0f187636ebddad20e181e924873916d03e6e5ea2ef026be + languageName: node + linkType: hard + +"normalize-path@npm:^3.0.0": + version: 3.0.0 + resolution: "normalize-path@npm:3.0.0" + checksum: 10c0/e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046 + languageName: node + linkType: hard + +"npm-run-all@npm:^4.1.5": + version: 4.1.5 + resolution: "npm-run-all@npm:4.1.5" + dependencies: + ansi-styles: "npm:^3.2.1" + chalk: "npm:^2.4.1" + cross-spawn: "npm:^6.0.5" + memorystream: "npm:^0.3.1" + minimatch: "npm:^3.0.4" + pidtree: "npm:^0.3.0" + read-pkg: "npm:^3.0.0" + shell-quote: "npm:^1.6.1" + string.prototype.padend: "npm:^3.0.0" + bin: + npm-run-all: bin/npm-run-all/index.js + run-p: bin/run-p/index.js + run-s: bin/run-s/index.js + checksum: 10c0/736ee39bd35454d3efaa4a2e53eba6c523e2e17fba21a18edcce6b221f5cab62000bef16bb6ae8aff9e615831e6b0eb25ab51d52d60e6fa6f4ea880e4c6d31f4 + languageName: node + linkType: hard + +"npm-run-path@npm:^4.0.1": + version: 4.0.1 + resolution: "npm-run-path@npm:4.0.1" + dependencies: + path-key: "npm:^3.0.0" + checksum: 10c0/6f9353a95288f8455cf64cbeb707b28826a7f29690244c1e4bb61ec573256e021b6ad6651b394eb1ccfd00d6ec50147253aba2c5fe58a57ceb111fad62c519ac + languageName: node + linkType: hard + +"npm-run-path@npm:^5.1.0": + version: 5.3.0 + resolution: "npm-run-path@npm:5.3.0" + dependencies: + path-key: "npm:^4.0.0" + checksum: 10c0/124df74820c40c2eb9a8612a254ea1d557ddfab1581c3e751f825e3e366d9f00b0d76a3c94ecd8398e7f3eee193018622677e95816e8491f0797b21e30b2deba + languageName: node + linkType: hard + +"object-inspect@npm:^1.13.1": + version: 1.13.1 + resolution: "object-inspect@npm:1.13.1" + checksum: 10c0/fad603f408e345c82e946abdf4bfd774260a5ed3e5997a0b057c44153ac32c7271ff19e3a5ae39c858da683ba045ccac2f65245c12763ce4e8594f818f4a648d + languageName: node + linkType: hard + +"object-keys@npm:^1.1.1": + version: 1.1.1 + resolution: "object-keys@npm:1.1.1" + checksum: 10c0/b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d + languageName: node + linkType: hard + +"object-pairs@npm:^0.1.0": + version: 0.1.0 + resolution: "object-pairs@npm:0.1.0" + checksum: 10c0/2fe5ca74bcaf30d5209df3bac82e0917f481afc7df7ad37b74a575d43bc026d50f9a6433277ceb959d8c4ad7c312f8bcd04132b74a90195eb6845f085e4db2ab + languageName: node + linkType: hard + +"object-values@npm:^1.0.0": + version: 1.0.0 + resolution: "object-values@npm:1.0.0" + checksum: 10c0/ec0b80bdd29b4ed5319f91f87d0897f85573de13fa8aa5771172f42a6a91a7fea3a01e5e8b345e2996794b42e2d19715c000561757a299084961f6b7fb80d84d + languageName: node + linkType: hard + +"object.assign@npm:^4.1.5": + version: 4.1.5 + resolution: "object.assign@npm:4.1.5" + dependencies: + call-bind: "npm:^1.0.5" + define-properties: "npm:^1.2.1" + has-symbols: "npm:^1.0.3" + object-keys: "npm:^1.1.1" + checksum: 10c0/60108e1fa2706f22554a4648299b0955236c62b3685c52abf4988d14fffb0e7731e00aa8c6448397e3eb63d087dcc124a9f21e1980f36d0b2667f3c18bacd469 + languageName: node + linkType: hard + +"once@npm:^1.3.0": + version: 1.4.0 + resolution: "once@npm:1.4.0" + dependencies: + wrappy: "npm:1" + checksum: 10c0/5d48aca287dfefabd756621c5dfce5c91a549a93e9fdb7b8246bc4c4790aa2ec17b34a260530474635147aeb631a2dcc8b32c613df0675f96041cbb8244517d0 + languageName: node + linkType: hard + +"onetime@npm:^5.1.0, onetime@npm:^5.1.2": + version: 5.1.2 + resolution: "onetime@npm:5.1.2" + dependencies: + mimic-fn: "npm:^2.1.0" + checksum: 10c0/ffcef6fbb2692c3c40749f31ea2e22677a876daea92959b8a80b521d95cca7a668c884d8b2045d1d8ee7d56796aa405c405462af112a1477594cc63531baeb8f + languageName: node + linkType: hard + +"onetime@npm:^6.0.0": + version: 6.0.0 + resolution: "onetime@npm:6.0.0" + dependencies: + mimic-fn: "npm:^4.0.0" + checksum: 10c0/4eef7c6abfef697dd4479345a4100c382d73c149d2d56170a54a07418c50816937ad09500e1ed1e79d235989d073a9bade8557122aee24f0576ecde0f392bb6c + languageName: node + linkType: hard + +"optionator@npm:^0.9.3": + version: 0.9.4 + resolution: "optionator@npm:0.9.4" + dependencies: + deep-is: "npm:^0.1.3" + fast-levenshtein: "npm:^2.0.6" + levn: "npm:^0.4.1" + prelude-ls: "npm:^1.2.1" + type-check: "npm:^0.4.0" + word-wrap: "npm:^1.2.5" + checksum: 10c0/4afb687a059ee65b61df74dfe87d8d6815cd6883cb8b3d5883a910df72d0f5d029821f37025e4bccf4048873dbdb09acc6d303d27b8f76b1a80dd5a7d5334675 + languageName: node + linkType: hard + +"p-limit@npm:^2.2.0": + version: 2.3.0 + resolution: "p-limit@npm:2.3.0" + dependencies: + p-try: "npm:^2.0.0" + checksum: 10c0/8da01ac53efe6a627080fafc127c873da40c18d87b3f5d5492d465bb85ec7207e153948df6b9cbaeb130be70152f874229b8242ee2be84c0794082510af97f12 + languageName: node + linkType: hard + +"p-limit@npm:^3.0.2, p-limit@npm:^3.1.0": + version: 3.1.0 + resolution: "p-limit@npm:3.1.0" + dependencies: + yocto-queue: "npm:^0.1.0" + checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a + languageName: node + linkType: hard + +"p-locate@npm:^4.1.0": + version: 4.1.0 + resolution: "p-locate@npm:4.1.0" + dependencies: + p-limit: "npm:^2.2.0" + checksum: 10c0/1b476ad69ad7f6059744f343b26d51ce091508935c1dbb80c4e0a2f397ffce0ca3a1f9f5cd3c7ce19d7929a09719d5c65fe70d8ee289c3f267cd36f2881813e9 + languageName: node + linkType: hard + +"p-locate@npm:^5.0.0": + version: 5.0.0 + resolution: "p-locate@npm:5.0.0" + dependencies: + p-limit: "npm:^3.0.2" + checksum: 10c0/2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a + languageName: node + linkType: hard + +"p-map@npm:^4.0.0": + version: 4.0.0 + resolution: "p-map@npm:4.0.0" + dependencies: + aggregate-error: "npm:^3.0.0" + checksum: 10c0/592c05bd6262c466ce269ff172bb8de7c6975afca9b50c975135b974e9bdaafbfe80e61aaaf5be6d1200ba08b30ead04b88cfa7e25ff1e3b93ab28c9f62a2c75 + languageName: node + linkType: hard + +"p-try@npm:^2.0.0": + version: 2.2.0 + resolution: "p-try@npm:2.2.0" + checksum: 10c0/c36c19907734c904b16994e6535b02c36c2224d433e01a2f1ab777237f4d86e6289fd5fd464850491e940379d4606ed850c03e0f9ab600b0ebddb511312e177f + 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" + dependencies: + callsites: "npm:^3.0.0" + checksum: 10c0/c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556 + languageName: node + linkType: hard + +"parent-module@npm:^2.0.0": + version: 2.0.0 + resolution: "parent-module@npm:2.0.0" + dependencies: + callsites: "npm:^3.1.0" + checksum: 10c0/e4c5e34102c709df1932e1065dee53764fbd869f5a673beb8c3b4bcbbd4a7be16e3595f8846b24f52a77b9e96d8d499e68736ec690b108e55d95a5315f41e073 + languageName: node + linkType: hard + +"parse-json@npm:^4.0.0": + version: 4.0.0 + resolution: "parse-json@npm:4.0.0" + dependencies: + error-ex: "npm:^1.3.1" + json-parse-better-errors: "npm:^1.0.1" + checksum: 10c0/8d80790b772ccb1bcea4e09e2697555e519d83d04a77c2b4237389b813f82898943a93ffff7d0d2406203bdd0c30dcf95b1661e3a53f83d0e417f053957bef32 + languageName: node + linkType: hard + +"parse-json@npm:^5.0.0, parse-json@npm:^5.2.0": + version: 5.2.0 + resolution: "parse-json@npm:5.2.0" + dependencies: + "@babel/code-frame": "npm:^7.0.0" + error-ex: "npm:^1.3.1" + json-parse-even-better-errors: "npm:^2.3.0" + lines-and-columns: "npm:^1.1.6" + checksum: 10c0/77947f2253005be7a12d858aedbafa09c9ae39eb4863adf330f7b416ca4f4a08132e453e08de2db46459256fb66afaac5ee758b44fe6541b7cdaf9d252e59585 + languageName: node + linkType: hard + +"parse-ms@npm:^4.0.0": + version: 4.0.0 + resolution: "parse-ms@npm:4.0.0" + checksum: 10c0/a7900f4f1ebac24cbf5e9708c16fb2fd482517fad353aecd7aefb8c2ba2f85ce017913ccb8925d231770404780df46244ea6fec598b3bde6490882358b4d2d16 + languageName: node + linkType: hard + +"path-exists@npm:^4.0.0": + version: 4.0.0 + resolution: "path-exists@npm:4.0.0" + checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b + languageName: node + linkType: hard + +"path-is-absolute@npm:^1.0.0": + version: 1.0.1 + resolution: "path-is-absolute@npm:1.0.1" + checksum: 10c0/127da03c82172a2a50099cddbf02510c1791fc2cc5f7713ddb613a56838db1e8168b121a920079d052e0936c23005562059756d653b7c544c53185efe53be078 + languageName: node + linkType: hard + +"path-key@npm:^2.0.1": + version: 2.0.1 + resolution: "path-key@npm:2.0.1" + checksum: 10c0/dd2044f029a8e58ac31d2bf34c34b93c3095c1481942960e84dd2faa95bbb71b9b762a106aead0646695330936414b31ca0bd862bf488a937ad17c8c5d73b32b + languageName: node + linkType: hard + +"path-key@npm:^3.0.0, path-key@npm:^3.1.0": + version: 3.1.1 + resolution: "path-key@npm:3.1.1" + checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c + languageName: node + linkType: hard + +"path-key@npm:^4.0.0": + version: 4.0.0 + resolution: "path-key@npm:4.0.0" + checksum: 10c0/794efeef32863a65ac312f3c0b0a99f921f3e827ff63afa5cb09a377e202c262b671f7b3832a4e64731003fa94af0263713962d317b9887bd1e0c48a342efba3 + languageName: node + linkType: hard + +"path-parse@npm:^1.0.7": + version: 1.0.7 + resolution: "path-parse@npm:1.0.7" + checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 + languageName: node + linkType: hard + +"path-scurry@npm:^1.11.1": + version: 1.11.1 + resolution: "path-scurry@npm:1.11.1" + dependencies: + lru-cache: "npm:^10.2.0" + minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" + checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d + languageName: node + linkType: hard + +"path-type@npm:^3.0.0": + version: 3.0.0 + resolution: "path-type@npm:3.0.0" + dependencies: + pify: "npm:^3.0.0" + checksum: 10c0/1332c632f1cac15790ebab8dd729b67ba04fc96f81647496feb1c2975d862d046f41e4b975dbd893048999b2cc90721f72924ad820acc58c78507ba7141a8e56 + languageName: node + linkType: hard + +"path-type@npm:^4.0.0": + version: 4.0.0 + resolution: "path-type@npm:4.0.0" + checksum: 10c0/666f6973f332f27581371efaf303fd6c272cc43c2057b37aa99e3643158c7e4b2626549555d88626e99ea9e046f82f32e41bbde5f1508547e9a11b149b52387c + languageName: node + linkType: hard + +"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1": + version: 1.0.1 + resolution: "picocolors@npm:1.0.1" + checksum: 10c0/c63cdad2bf812ef0d66c8db29583802355d4ca67b9285d846f390cc15c2f6ccb94e8cb7eb6a6e97fc5990a6d3ad4ae42d86c84d3146e667c739a4234ed50d400 + languageName: node + linkType: hard + +"picomatch@npm:^2.0.4, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1": + version: 2.3.1 + resolution: "picomatch@npm:2.3.1" + checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be + languageName: node + linkType: hard + +"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.3.0": + version: 0.3.1 + resolution: "pidtree@npm:0.3.1" + bin: + pidtree: bin/pidtree.js + checksum: 10c0/cd69b0182f749f45ab48584e3442c48c5dc4512502c18d5b0147a33b042c41a4db4269b9ce2f7c48f11833ee5e79d81f5ebc6f7bf8372d4ea55726f60dc505a1 + languageName: node + linkType: hard + +"pidtree@npm:~0.6.0": + version: 0.6.0 + resolution: "pidtree@npm:0.6.0" + bin: + pidtree: bin/pidtree.js + checksum: 10c0/0829ec4e9209e230f74ebf4265f5ccc9ebfb488334b525cb13f86ff801dca44b362c41252cd43ae4d7653a10a5c6ab3be39d2c79064d6895e0d78dc50a5ed6e9 + languageName: node + linkType: hard + +"pify@npm:^3.0.0": + version: 3.0.0 + resolution: "pify@npm:3.0.0" + checksum: 10c0/fead19ed9d801f1b1fcd0638a1ac53eabbb0945bf615f2f8806a8b646565a04a1b0e7ef115c951d225f042cca388fdc1cd3add46d10d1ed6951c20bd2998af10 + languageName: node + linkType: hard + +"pirates@npm:^4.0.4": + version: 4.0.6 + resolution: "pirates@npm:4.0.6" + checksum: 10c0/00d5fa51f8dded94d7429700fb91a0c1ead00ae2c7fd27089f0c5b63e6eca36197fe46384631872690a66f390c5e27198e99006ab77ae472692ab9c2ca903f36 + languageName: node + linkType: hard + +"pkg-dir@npm:^4.2.0": + version: 4.2.0 + resolution: "pkg-dir@npm:4.2.0" + dependencies: + find-up: "npm:^4.0.0" + checksum: 10c0/c56bda7769e04907a88423feb320babaed0711af8c436ce3e56763ab1021ba107c7b0cafb11cde7529f669cfc22bffcaebffb573645cbd63842ea9fb17cd7728 + languageName: node + linkType: hard + +"possible-typed-array-names@npm:^1.0.0": + version: 1.0.0 + resolution: "possible-typed-array-names@npm:1.0.0" + checksum: 10c0/d9aa22d31f4f7680e20269db76791b41c3a32c01a373e25f8a4813b4d45f7456bfc2b6d68f752dc4aab0e0bb0721cb3d76fb678c9101cb7a16316664bc2c73fd + languageName: node + linkType: hard + +"prelude-ls@npm:^1.2.1": + version: 1.2.1 + resolution: "prelude-ls@npm:1.2.1" + checksum: 10c0/b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd + languageName: node + linkType: hard + +"prettier-linter-helpers@npm:^1.0.0": + version: 1.0.0 + resolution: "prettier-linter-helpers@npm:1.0.0" + dependencies: + fast-diff: "npm:^1.1.2" + checksum: 10c0/81e0027d731b7b3697ccd2129470ed9913ecb111e4ec175a12f0fcfab0096516373bf0af2fef132af50cafb0a905b74ff57996d615f59512bb9ac7378fcc64ab + languageName: node + linkType: hard + +"prettier@npm:^3.2.5": + version: 3.3.2 + resolution: "prettier@npm:3.3.2" + bin: + prettier: bin/prettier.cjs + checksum: 10c0/39ed27d17f0238da6dd6571d63026566bd790d3d0edac57c285fbab525982060c8f1e01955fe38134ab10f0951a6076da37f015db8173c02f14bc7f0803a384c + languageName: node + linkType: hard + +"pretty-format@npm:^29.0.0, pretty-format@npm:^29.7.0": + version: 29.7.0 + resolution: "pretty-format@npm:29.7.0" + dependencies: + "@jest/schemas": "npm:^29.6.3" + ansi-styles: "npm:^5.0.0" + react-is: "npm:^18.0.0" + checksum: 10c0/edc5ff89f51916f036c62ed433506b55446ff739358de77207e63e88a28ca2894caac6e73dcb68166a606e51c8087d32d400473e6a9fdd2dbe743f46c9c0276f + languageName: node + linkType: hard + +"pretty-ms@npm:^9.0.0": + version: 9.0.0 + resolution: "pretty-ms@npm:9.0.0" + dependencies: + parse-ms: "npm:^4.0.0" + checksum: 10c0/ba4a2acd1fe92a1c629e5cdeb555d7fa344ae9920e20fa00e8ac1db61b8d3dff8638ffc70c7569f681e375df68c9f31291c2c1912cefd02ef1b1bdd0861a4aed + languageName: node + linkType: hard + +"proc-log@npm:^3.0.0": + version: 3.0.0 + resolution: "proc-log@npm:3.0.0" + checksum: 10c0/f66430e4ff947dbb996058f6fd22de2c66612ae1a89b097744e17fb18a4e8e7a86db99eda52ccf15e53f00b63f4ec0b0911581ff2aac0355b625c8eac509b0dc + languageName: node + linkType: hard + +"proc-log@npm:^4.2.0": + version: 4.2.0 + resolution: "proc-log@npm:4.2.0" + checksum: 10c0/17db4757c2a5c44c1e545170e6c70a26f7de58feb985091fb1763f5081cab3d01b181fb2dd240c9f4a4255a1d9227d163d5771b7e69c9e49a561692db865efb9 + languageName: node + linkType: hard + +"promise-retry@npm:^2.0.1": + version: 2.0.1 + resolution: "promise-retry@npm:2.0.1" + dependencies: + err-code: "npm:^2.0.2" + retry: "npm:^0.12.0" + checksum: 10c0/9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96 + languageName: node + linkType: hard + +"prompts@npm:^2.0.1": + version: 2.4.2 + resolution: "prompts@npm:2.4.2" + dependencies: + kleur: "npm:^3.0.3" + sisteransi: "npm:^1.0.5" + checksum: 10c0/16f1ac2977b19fe2cf53f8411cc98db7a3c8b115c479b2ca5c82b5527cd937aa405fa04f9a5960abeb9daef53191b53b4d13e35c1f5d50e8718c76917c5f1ea4 + languageName: node + linkType: hard + +"proxy-from-env@npm:^1.1.0": + version: 1.1.0 + resolution: "proxy-from-env@npm:1.1.0" + checksum: 10c0/fe7dd8b1bdbbbea18d1459107729c3e4a2243ca870d26d34c2c1bcd3e4425b7bcc5112362df2d93cc7fb9746f6142b5e272fd1cc5c86ddf8580175186f6ad42b + languageName: node + linkType: hard + +"punycode@npm:^2.1.0": + version: 2.3.1 + resolution: "punycode@npm:2.3.1" + checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9 + languageName: node + linkType: hard + +"pure-rand@npm:^6.0.0": + version: 6.1.0 + resolution: "pure-rand@npm:6.1.0" + checksum: 10c0/1abe217897bf74dcb3a0c9aba3555fe975023147b48db540aa2faf507aee91c03bf54f6aef0eb2bf59cc259a16d06b28eca37f0dc426d94f4692aeff02fb0e65 + languageName: node + linkType: hard + +"queue-microtask@npm:^1.2.2": + version: 1.2.3 + resolution: "queue-microtask@npm:1.2.3" + checksum: 10c0/900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102 + languageName: node + linkType: hard + +"quick-lru@npm:^4.0.1": + version: 4.0.1 + resolution: "quick-lru@npm:4.0.1" + checksum: 10c0/f9b1596fa7595a35c2f9d913ac312fede13d37dc8a747a51557ab36e11ce113bbe88ef4c0154968845559a7709cb6a7e7cbe75f7972182451cd45e7f057a334d + languageName: node + linkType: hard + +"react-is@npm:^18.0.0": + version: 18.3.1 + resolution: "react-is@npm:18.3.1" + checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072 + languageName: node + linkType: hard + +"read-pkg-up@npm:^7.0.1": + version: 7.0.1 + resolution: "read-pkg-up@npm:7.0.1" + dependencies: + find-up: "npm:^4.1.0" + read-pkg: "npm:^5.2.0" + type-fest: "npm:^0.8.1" + checksum: 10c0/82b3ac9fd7c6ca1bdc1d7253eb1091a98ff3d195ee0a45386582ce3e69f90266163c34121e6a0a02f1630073a6c0585f7880b3865efcae9c452fa667f02ca385 + languageName: node + linkType: hard + +"read-pkg@npm:^3.0.0": + version: 3.0.0 + resolution: "read-pkg@npm:3.0.0" + dependencies: + load-json-file: "npm:^4.0.0" + normalize-package-data: "npm:^2.3.2" + path-type: "npm:^3.0.0" + checksum: 10c0/65acf2df89fbcd506b48b7ced56a255ba00adf7ecaa2db759c86cc58212f6fd80f1f0b7a85c848551a5d0685232e9b64f45c1fd5b48d85df2761a160767eeb93 + languageName: node + linkType: hard + +"read-pkg@npm:^5.2.0": + version: 5.2.0 + resolution: "read-pkg@npm:5.2.0" + dependencies: + "@types/normalize-package-data": "npm:^2.4.0" + normalize-package-data: "npm:^2.5.0" + parse-json: "npm:^5.0.0" + type-fest: "npm:^0.6.0" + checksum: 10c0/b51a17d4b51418e777029e3a7694c9bd6c578a5ab99db544764a0b0f2c7c0f58f8a6bc101f86a6fceb8ba6d237d67c89acf6170f6b98695d0420ddc86cf109fb + languageName: node + linkType: hard + +"readable-stream@npm:3, readable-stream@npm:^3.0.0": + version: 3.6.2 + resolution: "readable-stream@npm:3.6.2" + dependencies: + inherits: "npm:^2.0.3" + string_decoder: "npm:^1.1.1" + util-deprecate: "npm:^1.0.1" + checksum: 10c0/e37be5c79c376fdd088a45fa31ea2e423e5d48854be7a22a58869b4e84d25047b193f6acb54f1012331e1bcd667ffb569c01b99d36b0bd59658fb33f513511b7 + languageName: node + linkType: hard + +"redent@npm:^3.0.0": + version: 3.0.0 + resolution: "redent@npm:3.0.0" + dependencies: + indent-string: "npm:^4.0.0" + strip-indent: "npm:^3.0.0" + checksum: 10c0/d64a6b5c0b50eb3ddce3ab770f866658a2b9998c678f797919ceb1b586bab9259b311407280bd80b804e2a7c7539b19238ae6a2a20c843f1a7fcff21d48c2eae + languageName: node + linkType: hard + +"regenerate-unicode-properties@npm:^10.1.0": + version: 10.1.1 + resolution: "regenerate-unicode-properties@npm:10.1.1" + dependencies: + regenerate: "npm:^1.4.2" + checksum: 10c0/89adb5ee5ba081380c78f9057c02e156a8181969f6fcca72451efc45612e0c3df767b4333f8d8479c274d9c6fe52ec4854f0d8a22ef95dccbe87da8e5f2ac77d + languageName: node + linkType: hard + +"regenerate@npm:^1.4.2": + version: 1.4.2 + resolution: "regenerate@npm:1.4.2" + checksum: 10c0/f73c9eba5d398c818edc71d1c6979eaa05af7a808682749dd079f8df2a6d91a9b913db216c2c9b03e0a8ba2bba8701244a93f45211afbff691c32c7b275db1b8 + languageName: node + linkType: hard + +"regenerator-runtime@npm:^0.14.0": + version: 0.14.1 + resolution: "regenerator-runtime@npm:0.14.1" + checksum: 10c0/1b16eb2c4bceb1665c89de70dcb64126a22bc8eb958feef3cd68fe11ac6d2a4899b5cd1b80b0774c7c03591dc57d16631a7f69d2daa2ec98100e2f29f7ec4cc4 + languageName: node + linkType: hard + +"regenerator-transform@npm:^0.15.2": + version: 0.15.2 + resolution: "regenerator-transform@npm:0.15.2" + dependencies: + "@babel/runtime": "npm:^7.8.4" + checksum: 10c0/7cfe6931ec793269701994a93bab89c0cc95379191fad866270a7fea2adfec67ea62bb5b374db77058b60ba4509319d9b608664d0d288bd9989ca8dbd08fae90 + languageName: node + linkType: hard + +"regexp.prototype.flags@npm:^1.5.2": + version: 1.5.2 + resolution: "regexp.prototype.flags@npm:1.5.2" + dependencies: + call-bind: "npm:^1.0.6" + define-properties: "npm:^1.2.1" + es-errors: "npm:^1.3.0" + set-function-name: "npm:^2.0.1" + checksum: 10c0/0f3fc4f580d9c349f8b560b012725eb9c002f36daa0041b3fbf6f4238cb05932191a4d7d5db3b5e2caa336d5150ad0402ed2be81f711f9308fe7e1a9bf9bd552 + languageName: node + linkType: hard + +"regexpu-core@npm:^5.3.1": + version: 5.3.2 + resolution: "regexpu-core@npm:5.3.2" + dependencies: + "@babel/regjsgen": "npm:^0.8.0" + regenerate: "npm:^1.4.2" + regenerate-unicode-properties: "npm:^10.1.0" + regjsparser: "npm:^0.9.1" + unicode-match-property-ecmascript: "npm:^2.0.0" + unicode-match-property-value-ecmascript: "npm:^2.1.0" + checksum: 10c0/7945d5ab10c8bbed3ca383d4274687ea825aee4ab93a9c51c6e31e1365edd5ea807f6908f800ba017b66c462944ba68011164e7055207747ab651f8111ef3770 + languageName: node + linkType: hard + +"regjsparser@npm:^0.9.1": + version: 0.9.1 + resolution: "regjsparser@npm:0.9.1" + dependencies: + jsesc: "npm:~0.5.0" + bin: + regjsparser: bin/parser + checksum: 10c0/fe44fcf19a99fe4f92809b0b6179530e5ef313ff7f87df143b08ce9a2eb3c4b6189b43735d645be6e8f4033bfb015ed1ca54f0583bc7561bed53fd379feb8225 + languageName: node + linkType: hard + +"repeat-string@npm:^1.6.1": + version: 1.6.1 + resolution: "repeat-string@npm:1.6.1" + checksum: 10c0/87fa21bfdb2fbdedc44b9a5b118b7c1239bdd2c2c1e42742ef9119b7d412a5137a1d23f1a83dc6bb686f4f27429ac6f542e3d923090b44181bafa41e8ac0174d + languageName: node + linkType: hard + +"require-directory@npm:^2.1.1": + version: 2.1.1 + resolution: "require-directory@npm:2.1.1" + checksum: 10c0/83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99 + languageName: node + linkType: hard + +"require-from-string@npm:^2.0.2": + version: 2.0.2 + resolution: "require-from-string@npm:2.0.2" + checksum: 10c0/aaa267e0c5b022fc5fd4eef49d8285086b15f2a1c54b28240fdf03599cbd9c26049fee3eab894f2e1f6ca65e513b030a7c264201e3f005601e80c49fb2937ce2 + languageName: node + linkType: hard + +"resolve-cwd@npm:^3.0.0": + version: 3.0.0 + resolution: "resolve-cwd@npm:3.0.0" + dependencies: + resolve-from: "npm:^5.0.0" + checksum: 10c0/e608a3ebd15356264653c32d7ecbc8fd702f94c6703ea4ac2fb81d9c359180cba0ae2e6b71faa446631ed6145454d5a56b227efc33a2d40638ac13f8beb20ee4 + languageName: node + linkType: hard + +"resolve-from@npm:5.0.0, resolve-from@npm:^5.0.0": + version: 5.0.0 + resolution: "resolve-from@npm:5.0.0" + checksum: 10c0/b21cb7f1fb746de8107b9febab60095187781137fd803e6a59a76d421444b1531b641bba5857f5dc011974d8a5c635d61cec49e6bd3b7fc20e01f0fafc4efbf2 + languageName: node + linkType: hard + +"resolve-from@npm:^4.0.0": + version: 4.0.0 + resolution: "resolve-from@npm:4.0.0" + checksum: 10c0/8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190 + languageName: node + linkType: hard + +"resolve-global@npm:1.0.0, resolve-global@npm:^1.0.0": + version: 1.0.0 + resolution: "resolve-global@npm:1.0.0" + dependencies: + global-dirs: "npm:^0.1.1" + checksum: 10c0/fda6ba81a07a0124756ce956dd871ca83763973326d8617143dab38d9c9afc666926604bfe8f0bfd046a9a285347568f32ceb3d4c55a1cb9de5614cca001a21c + languageName: node + linkType: hard + +"resolve-pkg-maps@npm:^1.0.0": + version: 1.0.0 + resolution: "resolve-pkg-maps@npm:1.0.0" + checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab + languageName: node + linkType: hard + +"resolve.exports@npm:^2.0.0": + version: 2.0.2 + resolution: "resolve.exports@npm:2.0.2" + checksum: 10c0/cc4cffdc25447cf34730f388dca5021156ba9302a3bad3d7f168e790dc74b2827dff603f1bc6ad3d299bac269828dca96dd77e036dc9fba6a2a1807c47ab5c98 + languageName: node + linkType: hard + +"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: + is-core-module: "npm:^2.13.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 10c0/07e179f4375e1fd072cfb72ad66d78547f86e6196c4014b31cb0b8bb1db5f7ca871f922d08da0fbc05b94e9fd42206f819648fa3b5b873ebbc8e1dc68fec433a + languageName: node + linkType: hard + +"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: + is-core-module: "npm:^2.13.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 10c0/0446f024439cd2e50c6c8fa8ba77eaa8370b4180f401a96abf3d1ebc770ac51c1955e12764cde449fde3fff480a61f84388e3505ecdbab778f4bef5f8212c729 + languageName: node + linkType: hard + +"restore-cursor@npm:^4.0.0": + version: 4.0.0 + resolution: "restore-cursor@npm:4.0.0" + dependencies: + onetime: "npm:^5.1.0" + signal-exit: "npm:^3.0.2" + checksum: 10c0/6f7da8c5e422ac26aa38354870b1afac09963572cf2879443540449068cb43476e9cbccf6f8de3e0171e0d6f7f533c2bc1a0a008003c9a525bbc098e89041318 + languageName: node + linkType: hard + +"retry@npm:^0.12.0": + version: 0.12.0 + resolution: "retry@npm:0.12.0" + checksum: 10c0/59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe + languageName: node + linkType: hard + +"reusify@npm:^1.0.4": + version: 1.0.4 + resolution: "reusify@npm:1.0.4" + checksum: 10c0/c19ef26e4e188f408922c46f7ff480d38e8dfc55d448310dfb518736b23ed2c4f547fb64a6ed5bdba92cd7e7ddc889d36ff78f794816d5e71498d645ef476107 + languageName: node + linkType: hard + +"reverse-arguments@npm:^1.0.0": + version: 1.0.0 + resolution: "reverse-arguments@npm:1.0.0" + checksum: 10c0/8a8665d184655290db00ee0d81238c4e6e4ca1d56c0101538ddd69f84e3ce0311f51b0e7669d846c4cc10b8418b1e6e24e40a0e261d04c48c1208adaa6941d99 + languageName: node + linkType: hard + +"rfdc@npm:^1.3.1": + version: 1.4.1 + resolution: "rfdc@npm:1.4.1" + checksum: 10c0/4614e4292356cafade0b6031527eea9bc90f2372a22c012313be1dcc69a3b90c7338158b414539be863fa95bfcb2ddcd0587be696841af4e6679d85e62c060c7 + languageName: node + linkType: hard + +"rimraf@npm:^3.0.2": + version: 3.0.2 + resolution: "rimraf@npm:3.0.2" + dependencies: + glob: "npm:^7.1.3" + bin: + rimraf: bin.js + checksum: 10c0/9cb7757acb489bd83757ba1a274ab545eafd75598a9d817e0c3f8b164238dd90eba50d6b848bd4dcc5f3040912e882dc7ba71653e35af660d77b25c381d402e8 + languageName: node + linkType: hard + +"run-parallel@npm:^1.1.9, run-parallel@npm:^1.2.0": + version: 1.2.0 + resolution: "run-parallel@npm:1.2.0" + dependencies: + queue-microtask: "npm:^1.2.2" + checksum: 10c0/200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39 + languageName: node + linkType: hard + +"safe-array-concat@npm:^1.1.2": + version: 1.1.2 + resolution: "safe-array-concat@npm:1.1.2" + dependencies: + call-bind: "npm:^1.0.7" + get-intrinsic: "npm:^1.2.4" + has-symbols: "npm:^1.0.3" + isarray: "npm:^2.0.5" + checksum: 10c0/12f9fdb01c8585e199a347eacc3bae7b5164ae805cdc8c6707199dbad5b9e30001a50a43c4ee24dc9ea32dbb7279397850e9208a7e217f4d8b1cf5d90129dec9 + languageName: node + linkType: hard + +"safe-buffer@npm:~5.2.0": + version: 5.2.1 + resolution: "safe-buffer@npm:5.2.1" + checksum: 10c0/6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3 + languageName: node + linkType: hard + +"safe-regex-test@npm:^1.0.3": + version: 1.0.3 + resolution: "safe-regex-test@npm:1.0.3" + dependencies: + call-bind: "npm:^1.0.6" + es-errors: "npm:^1.3.0" + is-regex: "npm:^1.1.4" + checksum: 10c0/900bf7c98dc58f08d8523b7012b468e4eb757afa624f198902c0643d7008ba777b0bdc35810ba0b758671ce887617295fb742b3f3968991b178ceca54cb07603 + languageName: node + linkType: hard + +"safer-buffer@npm:>= 2.1.2 < 3.0.0": + version: 2.1.2 + resolution: "safer-buffer@npm:2.1.2" + checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 + languageName: node + linkType: hard + +"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.5.0": + version: 5.7.2 + resolution: "semver@npm:5.7.2" + bin: + semver: bin/semver + checksum: 10c0/e4cf10f86f168db772ae95d86ba65b3fd6c5967c94d97c708ccb463b778c2ee53b914cd7167620950fc07faf5a564e6efe903836639e512a1aa15fbc9667fa25 + languageName: node + linkType: hard + +"semver@npm:7.6.0": + version: 7.6.0 + resolution: "semver@npm:7.6.0" + dependencies: + lru-cache: "npm:^6.0.0" + bin: + semver: bin/semver.js + checksum: 10c0/fbfe717094ace0aa8d6332d7ef5ce727259815bd8d8815700853f4faf23aacbd7192522f0dc5af6df52ef4fa85a355ebd2f5d39f554bd028200d6cf481ab9b53 + languageName: node + linkType: hard + +"semver@npm:^6.3.0, semver@npm:^6.3.1": + version: 6.3.1 + resolution: "semver@npm:6.3.1" + bin: + semver: bin/semver.js + checksum: 10c0/e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d + 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.2": + version: 7.6.2 + resolution: "semver@npm:7.6.2" + bin: + semver: bin/semver.js + checksum: 10c0/97d3441e97ace8be4b1976433d1c32658f6afaff09f143e52c593bae7eef33de19e3e369c88bd985ce1042c6f441c80c6803078d1de2a9988080b66684cbb30c + languageName: node + linkType: hard + +"set-function-length@npm:^1.2.1": + version: 1.2.2 + resolution: "set-function-length@npm:1.2.2" + dependencies: + define-data-property: "npm:^1.1.4" + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.4" + gopd: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.2" + checksum: 10c0/82850e62f412a258b71e123d4ed3873fa9377c216809551192bb6769329340176f109c2eeae8c22a8d386c76739855f78e8716515c818bcaef384b51110f0f3c + languageName: node + linkType: hard + +"set-function-name@npm:^2.0.1": + version: 2.0.2 + resolution: "set-function-name@npm:2.0.2" + dependencies: + define-data-property: "npm:^1.1.4" + es-errors: "npm:^1.3.0" + functions-have-names: "npm:^1.2.3" + has-property-descriptors: "npm:^1.0.2" + checksum: 10c0/fce59f90696c450a8523e754abb305e2b8c73586452619c2bad5f7bf38c7b6b4651895c9db895679c5bef9554339cf3ef1c329b66ece3eda7255785fbe299316 + languageName: node + linkType: hard + +"shebang-command@npm:^1.2.0": + version: 1.2.0 + resolution: "shebang-command@npm:1.2.0" + dependencies: + shebang-regex: "npm:^1.0.0" + checksum: 10c0/7b20dbf04112c456b7fc258622dafd566553184ac9b6938dd30b943b065b21dabd3776460df534cc02480db5e1b6aec44700d985153a3da46e7db7f9bd21326d + languageName: node + linkType: hard + +"shebang-command@npm:^2.0.0": + version: 2.0.0 + resolution: "shebang-command@npm:2.0.0" + dependencies: + shebang-regex: "npm:^3.0.0" + checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e + languageName: node + linkType: hard + +"shebang-regex@npm:^1.0.0": + version: 1.0.0 + resolution: "shebang-regex@npm:1.0.0" + checksum: 10c0/9abc45dee35f554ae9453098a13fdc2f1730e525a5eb33c51f096cc31f6f10a4b38074c1ebf354ae7bffa7229506083844008dfc3bb7818228568c0b2dc1fff2 + languageName: node + linkType: hard + +"shebang-regex@npm:^3.0.0": + version: 3.0.0 + resolution: "shebang-regex@npm:3.0.0" + checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 + languageName: node + linkType: hard + +"shell-quote-word@npm:^1.0.1": + version: 1.0.1 + resolution: "shell-quote-word@npm:1.0.1" + checksum: 10c0/780d67a10878bca215d4cdccfcc079d4a81a6584e13944cce39bddb8c1096a32cce6b85141ac4c196fcbaec6b93b5cc35844fcf1e3788785a504405e90253f55 + languageName: node + linkType: hard + +"shell-quote@npm:^1.6.1": + version: 1.8.1 + resolution: "shell-quote@npm:1.8.1" + checksum: 10c0/8cec6fd827bad74d0a49347057d40dfea1e01f12a6123bf82c4649f3ef152fc2bc6d6176e6376bffcd205d9d0ccb4f1f9acae889384d20baff92186f01ea455a + languageName: node + linkType: hard + +"side-channel@npm:^1.0.4": + version: 1.0.6 + resolution: "side-channel@npm:1.0.6" + dependencies: + call-bind: "npm:^1.0.7" + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.4" + object-inspect: "npm:^1.13.1" + checksum: 10c0/d2afd163dc733cc0a39aa6f7e39bf0c436293510dbccbff446733daeaf295857dbccf94297092ec8c53e2503acac30f0b78830876f0485991d62a90e9cad305f + languageName: node + linkType: hard + +"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": + version: 3.0.7 + resolution: "signal-exit@npm:3.0.7" + checksum: 10c0/25d272fa73e146048565e08f3309d5b942c1979a6f4a58a8c59d5fa299728e9c2fcd1a759ec870863b1fd38653670240cd420dad2ad9330c71f36608a6a1c912 + languageName: node + linkType: hard + +"signal-exit@npm:^4.0.1, signal-exit@npm:^4.1.0": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 + languageName: node + linkType: hard + +"sisteransi@npm:^1.0.5": + version: 1.0.5 + resolution: "sisteransi@npm:1.0.5" + checksum: 10c0/230ac975cca485b7f6fe2b96a711aa62a6a26ead3e6fb8ba17c5a00d61b8bed0d7adc21f5626b70d7c33c62ff4e63933017a6462942c719d1980bb0b1207ad46 + languageName: node + linkType: hard + +"slash@npm:^3.0.0": + version: 3.0.0 + resolution: "slash@npm:3.0.0" + checksum: 10c0/e18488c6a42bdfd4ac5be85b2ced3ccd0224773baae6ad42cfbb9ec74fc07f9fa8396bd35ee638084ead7a2a0818eb5e7151111544d4731ce843019dab4be47b + languageName: node + linkType: hard + +"slice-ansi@npm:^5.0.0": + version: 5.0.0 + resolution: "slice-ansi@npm:5.0.0" + dependencies: + ansi-styles: "npm:^6.0.0" + is-fullwidth-code-point: "npm:^4.0.0" + checksum: 10c0/2d4d40b2a9d5cf4e8caae3f698fe24ae31a4d778701724f578e984dcb485ec8c49f0c04dab59c401821e80fcdfe89cace9c66693b0244e40ec485d72e543914f + languageName: node + linkType: hard + +"slice-ansi@npm:^7.0.0": + version: 7.1.0 + resolution: "slice-ansi@npm:7.1.0" + dependencies: + ansi-styles: "npm:^6.2.1" + is-fullwidth-code-point: "npm:^5.0.0" + checksum: 10c0/631c971d4abf56cf880f034d43fcc44ff883624867bf11ecbd538c47343911d734a4656d7bc02362b40b89d765652a7f935595441e519b59e2ad3f4d5d6fe7ca + languageName: node + linkType: hard + +"smart-buffer@npm:^4.2.0": + version: 4.2.0 + resolution: "smart-buffer@npm:4.2.0" + checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 + languageName: node + linkType: hard + +"smol-toml@npm:^1.1.4": + version: 1.2.1 + resolution: "smol-toml@npm:1.2.1" + checksum: 10c0/ef713022d327493b6680ba51b9651abbb9c5abf2199e03faaa98ea49ad96ab9336bb4edafa6c70bdb2f1399f709f92a576b026e75cfd32066f3ec1c6fea797fb + languageName: node + linkType: hard + +"socks-proxy-agent@npm:^8.0.3": + version: 8.0.3 + resolution: "socks-proxy-agent@npm:8.0.3" + dependencies: + agent-base: "npm:^7.1.1" + debug: "npm:^4.3.4" + socks: "npm:^2.7.1" + checksum: 10c0/4950529affd8ccd6951575e21c1b7be8531b24d924aa4df3ee32df506af34b618c4e50d261f4cc603f1bfd8d426915b7d629966c8ce45b05fb5ad8c8b9a6459d + languageName: node + linkType: hard + +"socks@npm:^2.7.1": + version: 2.8.3 + resolution: "socks@npm:2.8.3" + dependencies: + ip-address: "npm:^9.0.5" + smart-buffer: "npm:^4.2.0" + checksum: 10c0/d54a52bf9325165770b674a67241143a3d8b4e4c8884560c4e0e078aace2a728dffc7f70150660f51b85797c4e1a3b82f9b7aa25e0a0ceae1a243365da5c51a7 + languageName: node + linkType: hard + +"source-map-support@npm:0.5.13": + version: 0.5.13 + resolution: "source-map-support@npm:0.5.13" + dependencies: + buffer-from: "npm:^1.0.0" + source-map: "npm:^0.6.0" + checksum: 10c0/137539f8c453fa0f496ea42049ab5da4569f96781f6ac8e5bfda26937be9494f4e8891f523c5f98f0e85f71b35d74127a00c46f83f6a4f54672b58d53202565e + languageName: node + linkType: hard + +"source-map@npm:^0.6.0, source-map@npm:^0.6.1": + version: 0.6.1 + resolution: "source-map@npm:0.6.1" + checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011 + languageName: node + linkType: hard + +"spdx-correct@npm:^3.0.0": + version: 3.2.0 + resolution: "spdx-correct@npm:3.2.0" + dependencies: + spdx-expression-parse: "npm:^3.0.0" + spdx-license-ids: "npm:^3.0.0" + checksum: 10c0/49208f008618b9119208b0dadc9208a3a55053f4fd6a0ae8116861bd22696fc50f4142a35ebfdb389e05ccf2de8ad142573fefc9e26f670522d899f7b2fe7386 + languageName: node + linkType: hard + +"spdx-exceptions@npm:^2.1.0": + version: 2.5.0 + resolution: "spdx-exceptions@npm:2.5.0" + checksum: 10c0/37217b7762ee0ea0d8b7d0c29fd48b7e4dfb94096b109d6255b589c561f57da93bf4e328c0290046115961b9209a8051ad9f525e48d433082fc79f496a4ea940 + languageName: node + linkType: hard + +"spdx-expression-parse@npm:^3.0.0": + version: 3.0.1 + resolution: "spdx-expression-parse@npm:3.0.1" + dependencies: + spdx-exceptions: "npm:^2.1.0" + spdx-license-ids: "npm:^3.0.0" + checksum: 10c0/6f8a41c87759fa184a58713b86c6a8b028250f158159f1d03ed9d1b6ee4d9eefdc74181c8ddc581a341aa971c3e7b79e30b59c23b05d2436d5de1c30bdef7171 + languageName: node + linkType: hard + +"spdx-license-ids@npm:^3.0.0": + version: 3.0.18 + resolution: "spdx-license-ids@npm:3.0.18" + checksum: 10c0/c64ba03d4727191c8fdbd001f137d6ab51386c350d5516be8a4576c2e74044cb27bc8a758f6a04809da986cc0b14213f069b04de72caccecbc9f733753ccde32 + languageName: node + linkType: hard + +"split2@npm:^3.0.0": + version: 3.2.2 + resolution: "split2@npm:3.2.2" + dependencies: + readable-stream: "npm:^3.0.0" + checksum: 10c0/2dad5603c52b353939befa3e2f108f6e3aff42b204ad0f5f16dd12fd7c2beab48d117184ce6f7c8854f9ee5ffec6faae70d243711dd7d143a9f635b4a285de4e + languageName: node + linkType: hard + +"split2@npm:^4.0.0": + version: 4.2.0 + resolution: "split2@npm:4.2.0" + checksum: 10c0/b292beb8ce9215f8c642bb68be6249c5a4c7f332fc8ecadae7be5cbdf1ea95addc95f0459ef2e7ad9d45fd1064698a097e4eb211c83e772b49bc0ee423e91534 + languageName: node + linkType: hard + +"sprintf-js@npm:^1.1.3": + version: 1.1.3 + resolution: "sprintf-js@npm:1.1.3" + checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec + languageName: node + linkType: hard + +"sprintf-js@npm:~1.0.2": + version: 1.0.3 + resolution: "sprintf-js@npm:1.0.3" + checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb + languageName: node + linkType: hard + +"ssri@npm:^10.0.0": + version: 10.0.6 + resolution: "ssri@npm:10.0.6" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/e5a1e23a4057a86a97971465418f22ea89bd439ac36ade88812dd920e4e61873e8abd6a9b72a03a67ef50faa00a2daf1ab745c5a15b46d03e0544a0296354227 + languageName: node + linkType: hard + +"stack-utils@npm:^2.0.3": + version: 2.0.6 + resolution: "stack-utils@npm:2.0.6" + dependencies: + escape-string-regexp: "npm:^2.0.0" + checksum: 10c0/651c9f87667e077584bbe848acaecc6049bc71979f1e9a46c7b920cad4431c388df0f51b8ad7cfd6eed3db97a2878d0fc8b3122979439ea8bac29c61c95eec8a + languageName: node + linkType: hard + +"string-argv@npm:~0.3.2": + version: 0.3.2 + resolution: "string-argv@npm:0.3.2" + checksum: 10c0/75c02a83759ad1722e040b86823909d9a2fc75d15dd71ec4b537c3560746e33b5f5a07f7332d1e3f88319909f82190843aa2f0a0d8c8d591ec08e93d5b8dec82 + languageName: node + linkType: hard + +"string-length@npm:^4.0.1": + version: 4.0.2 + resolution: "string-length@npm:4.0.2" + dependencies: + char-regex: "npm:^1.0.2" + strip-ansi: "npm:^6.0.0" + checksum: 10c0/1cd77409c3d7db7bc59406f6bcc9ef0783671dcbabb23597a1177c166906ef2ee7c8290f78cae73a8aec858768f189d2cb417797df5e15ec4eb5e16b3346340c + languageName: node + linkType: hard + +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": + version: 4.2.3 + resolution: "string-width@npm:4.2.3" + dependencies: + emoji-regex: "npm:^8.0.0" + is-fullwidth-code-point: "npm:^3.0.0" + strip-ansi: "npm:^6.0.1" + checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b + languageName: node + linkType: hard + +"string-width@npm:^5.0.1, string-width@npm:^5.1.2": + version: 5.1.2 + resolution: "string-width@npm:5.1.2" + dependencies: + eastasianwidth: "npm:^0.2.0" + emoji-regex: "npm:^9.2.2" + strip-ansi: "npm:^7.0.1" + checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca + languageName: node + linkType: hard + +"string-width@npm:^7.0.0": + version: 7.1.0 + resolution: "string-width@npm:7.1.0" + dependencies: + emoji-regex: "npm:^10.3.0" + get-east-asian-width: "npm:^1.0.0" + strip-ansi: "npm:^7.1.0" + checksum: 10c0/68a99fbc3bd3d8eb42886ff38dce819767dee55f606f74dfa4687a07dfd21262745d9683df0aa53bf81a5dd47c13da921a501925b974bec66a7ddd634fef0634 + languageName: node + linkType: hard + +"string.fromcodepoint@npm:^0.2.1": + version: 0.2.1 + resolution: "string.fromcodepoint@npm:0.2.1" + checksum: 10c0/2e26c7370daea0725f2cc3b0a2e4b84613c44b68130ad2afa1364b51fd48ebdfe6390086807d7b5e95d58e8a872aca46a53bbc182c549cd74c0ee9b46de32b02 + languageName: node + linkType: hard + +"string.prototype.padend@npm:^3.0.0": + version: 3.1.6 + resolution: "string.prototype.padend@npm:3.1.6" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/8f2c8c1f3db1efcdc210668c80c87f2cea1253d6029ff296a172b5e13edc9adebeed4942d023de8d31f9b13b69f3f5d73de7141959b1f09817fba5f527e83be1 + languageName: node + linkType: hard + +"string.prototype.trim@npm:^1.2.9": + version: 1.2.9 + resolution: "string.prototype.trim@npm:1.2.9" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.0" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/dcef1a0fb61d255778155006b372dff8cc6c4394bc39869117e4241f41a2c52899c0d263ffc7738a1f9e61488c490b05c0427faa15151efad721e1a9fb2663c2 + languageName: node + linkType: hard + +"string.prototype.trimend@npm:^1.0.8": + version: 1.0.8 + resolution: "string.prototype.trimend@npm:1.0.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/0a0b54c17c070551b38e756ae271865ac6cc5f60dabf2e7e343cceae7d9b02e1a1120a824e090e79da1b041a74464e8477e2da43e2775c85392be30a6f60963c + languageName: node + linkType: hard + +"string.prototype.trimstart@npm:^1.0.8": + version: 1.0.8 + resolution: "string.prototype.trimstart@npm:1.0.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/d53af1899959e53c83b64a5fd120be93e067da740e7e75acb433849aa640782fb6c7d4cd5b84c954c84413745a3764df135a8afeb22908b86a835290788d8366 + languageName: node + linkType: hard + +"string_decoder@npm:^1.1.1": + version: 1.3.0 + resolution: "string_decoder@npm:1.3.0" + dependencies: + safe-buffer: "npm:~5.2.0" + checksum: 10c0/810614ddb030e271cd591935dcd5956b2410dd079d64ff92a1844d6b7588bf992b3e1b69b0f4d34a3e06e0bd73046ac646b5264c1987b20d0601f81ef35d731d + languageName: node + linkType: hard + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": + version: 6.0.1 + resolution: "strip-ansi@npm:6.0.1" + dependencies: + ansi-regex: "npm:^5.0.1" + checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 + languageName: node + linkType: hard + +"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" + dependencies: + ansi-regex: "npm:^6.0.1" + checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 + languageName: node + linkType: hard + +"strip-bom@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-bom@npm:3.0.0" + checksum: 10c0/51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1 + languageName: node + linkType: hard + +"strip-bom@npm:^4.0.0": + version: 4.0.0 + resolution: "strip-bom@npm:4.0.0" + checksum: 10c0/26abad1172d6bc48985ab9a5f96c21e440f6e7e476686de49be813b5a59b3566dccb5c525b831ec54fe348283b47f3ffb8e080bc3f965fde12e84df23f6bb7ef + languageName: node + linkType: hard + +"strip-final-newline@npm:^2.0.0": + version: 2.0.0 + resolution: "strip-final-newline@npm:2.0.0" + checksum: 10c0/bddf8ccd47acd85c0e09ad7375409d81653f645fda13227a9d459642277c253d877b68f2e5e4d819fe75733b0e626bac7e954c04f3236f6d196f79c94fa4a96f + languageName: node + linkType: hard + +"strip-final-newline@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-final-newline@npm:3.0.0" + checksum: 10c0/a771a17901427bac6293fd416db7577e2bc1c34a19d38351e9d5478c3c415f523f391003b42ed475f27e33a78233035df183525395f731d3bfb8cdcbd4da08ce + languageName: node + linkType: hard + +"strip-indent@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-indent@npm:3.0.0" + dependencies: + min-indent: "npm:^1.0.0" + checksum: 10c0/ae0deaf41c8d1001c5d4fbe16cb553865c1863da4fae036683b474fa926af9fc121e155cb3fc57a68262b2ae7d5b8420aa752c97a6428c315d00efe2a3875679 + languageName: node + linkType: hard + +"strip-json-comments@npm:5.0.1": + version: 5.0.1 + resolution: "strip-json-comments@npm:5.0.1" + checksum: 10c0/c9d9d55a0167c57aa688df3aa20628cf6f46f0344038f189eaa9d159978e80b2bfa6da541a40d83f7bde8a3554596259bf6b70578b2172356536a0e3fa5a0982 + languageName: node + linkType: hard + +"strip-json-comments@npm:^3.1.1": + version: 3.1.1 + resolution: "strip-json-comments@npm:3.1.1" + checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd + languageName: node + linkType: hard + +"summary@npm:2.1.0": + version: 2.1.0 + resolution: "summary@npm:2.1.0" + checksum: 10c0/2743c1f940fb303c496ef1b085e654704a6c16872957b6b76648c34bd32c8f0b7a3c5ec4e0f8bfb71dcb8473e34d172fef31026b85562af589cf220aa901698d + languageName: node + linkType: hard + +"supports-color@npm:^5.3.0": + version: 5.5.0 + resolution: "supports-color@npm:5.5.0" + dependencies: + has-flag: "npm:^3.0.0" + checksum: 10c0/6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05 + languageName: node + linkType: hard + +"supports-color@npm:^7.1.0": + version: 7.2.0 + resolution: "supports-color@npm:7.2.0" + dependencies: + has-flag: "npm:^4.0.0" + checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 + languageName: node + linkType: hard + +"supports-color@npm:^8.0.0": + version: 8.1.1 + resolution: "supports-color@npm:8.1.1" + dependencies: + has-flag: "npm:^4.0.0" + checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89 + languageName: node + linkType: hard + +"supports-preserve-symlinks-flag@npm:^1.0.0": + version: 1.0.0 + resolution: "supports-preserve-symlinks-flag@npm:1.0.0" + checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 + languageName: node + linkType: hard + +"synckit@npm:^0.8.6": + version: 0.8.8 + resolution: "synckit@npm:0.8.8" + dependencies: + "@pkgr/core": "npm:^0.1.0" + tslib: "npm:^2.6.2" + checksum: 10c0/c3d3aa8e284f3f84f2f868b960c9f49239b364e35f6d20825a448449a3e9c8f49fe36cdd5196b30615682f007830d46f2ea354003954c7336723cb821e4b6519 + languageName: node + linkType: hard + +"tar@npm:^6.1.11, tar@npm:^6.1.2": + version: 6.2.1 + resolution: "tar@npm:6.2.1" + dependencies: + chownr: "npm:^2.0.0" + fs-minipass: "npm:^2.0.0" + minipass: "npm:^5.0.0" + minizlib: "npm:^2.1.1" + mkdirp: "npm:^1.0.3" + yallist: "npm:^4.0.0" + checksum: 10c0/a5eca3eb50bc11552d453488344e6507156b9193efd7635e98e867fab275d527af53d8866e2370cd09dfe74378a18111622ace35af6a608e5223a7d27fe99537 + languageName: node + linkType: hard + +"test-exclude@npm:^6.0.0": + version: 6.0.0 + resolution: "test-exclude@npm:6.0.0" + dependencies: + "@istanbuljs/schema": "npm:^0.1.2" + glob: "npm:^7.1.4" + minimatch: "npm:^3.0.4" + checksum: 10c0/019d33d81adff3f9f1bfcff18125fb2d3c65564f437d9be539270ee74b994986abb8260c7c2ce90e8f30162178b09dbbce33c6389273afac4f36069c48521f57 + languageName: node + linkType: hard + +"text-extensions@npm:^2.0.0": + version: 2.4.0 + resolution: "text-extensions@npm:2.4.0" + checksum: 10c0/6790e7ee72ad4d54f2e96c50a13e158bb57ce840dddc770e80960ed1550115c57bdc2cee45d5354d7b4f269636f5ca06aab4d6e0281556c841389aa837b23fcb + languageName: node + linkType: hard + +"text-table@npm:^0.2.0": + version: 0.2.0 + resolution: "text-table@npm:0.2.0" + checksum: 10c0/02805740c12851ea5982686810702e2f14369a5f4c5c40a836821e3eefc65ffeec3131ba324692a37608294b0fd8c1e55a2dd571ffed4909822787668ddbee5c + languageName: node + linkType: hard + +"through2@npm:^4.0.0": + version: 4.0.2 + resolution: "through2@npm:4.0.2" + dependencies: + readable-stream: "npm:3" + checksum: 10c0/3741564ae99990a4a79097fe7a4152c22348adc4faf2df9199a07a66c81ed2011da39f631e479fdc56483996a9d34a037ad64e76d79f18c782ab178ea9b6778c + languageName: node + linkType: hard + +"through@npm:>=2.2.7 <3": + version: 2.3.8 + resolution: "through@npm:2.3.8" + checksum: 10c0/4b09f3774099de0d4df26d95c5821a62faee32c7e96fb1f4ebd54a2d7c11c57fe88b0a0d49cf375de5fee5ae6bf4eb56dbbf29d07366864e2ee805349970d3cc + languageName: node + linkType: hard + +"tmpl@npm:1.0.5": + version: 1.0.5 + resolution: "tmpl@npm:1.0.5" + checksum: 10c0/f935537799c2d1922cb5d6d3805f594388f75338fe7a4a9dac41504dd539704ca4db45b883b52e7b0aa5b2fd5ddadb1452bf95cd23a69da2f793a843f9451cc9 + languageName: node + linkType: hard + +"to-fast-properties@npm:^2.0.0": + version: 2.0.0 + resolution: "to-fast-properties@npm:2.0.0" + checksum: 10c0/b214d21dbfb4bce3452b6244b336806ffea9c05297148d32ebb428d5c43ce7545bdfc65a1ceb58c9ef4376a65c0cb2854d645f33961658b3e3b4f84910ddcdd7 + languageName: node + linkType: hard + +"to-no-case@npm:^1.0.0": + version: 1.0.2 + resolution: "to-no-case@npm:1.0.2" + checksum: 10c0/c035b04e1042ed67ceb23dc5c7c20ccde11a83ab1d2b3947c17918472b5d26dd4ffdb4cf9464752e7707ab9f3af4a106f9b61244c724bc6810422acd5984da3d + languageName: node + linkType: hard + +"to-pascal-case@npm:^1.0.0": + version: 1.0.0 + resolution: "to-pascal-case@npm:1.0.0" + dependencies: + to-space-case: "npm:^1.0.0" + checksum: 10c0/e1a0b11c6f4d561318b3e01d91b7cdbd7d08ce2fb55850e85daf7beb8a5dc7add1d491c6580169b53727feb17afcc9bc45790b8a58a0b342a2287ae50354832a + languageName: node + linkType: hard + +"to-regex-range@npm:^5.0.1": + version: 5.0.1 + resolution: "to-regex-range@npm:5.0.1" + dependencies: + is-number: "npm:^7.0.0" + checksum: 10c0/487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892 + languageName: node + linkType: hard + +"to-space-case@npm:^1.0.0": + version: 1.0.0 + resolution: "to-space-case@npm:1.0.0" + dependencies: + to-no-case: "npm:^1.0.0" + checksum: 10c0/b99e1b5d0f3c90a8d47fa3b155d515027bd83a370740e82ee7cb064f86e3655f030f068bddcb8d18239e7408761b4376d89ab91e5ccdb17dc859d8fd4f570ac5 + languageName: node + linkType: hard + +"trim-newlines@npm:^3.0.0": + version: 3.0.1 + resolution: "trim-newlines@npm:3.0.1" + checksum: 10c0/03cfefde6c59ff57138412b8c6be922ecc5aec30694d784f2a65ef8dcbd47faef580b7de0c949345abdc56ec4b4abf64dd1e5aea619b200316e471a3dd5bf1f6 + languageName: node + linkType: hard + +"ts-api-utils@npm:^1.3.0": + version: 1.3.0 + resolution: "ts-api-utils@npm:1.3.0" + peerDependencies: + typescript: ">=4.2.0" + checksum: 10c0/f54a0ba9ed56ce66baea90a3fa087a484002e807f28a8ccb2d070c75e76bde64bd0f6dce98b3802834156306050871b67eec325cb4e918015a360a3f0868c77c + languageName: node + linkType: hard + +"ts-jest@npm:^29.1.2": + version: 29.1.5 + resolution: "ts-jest@npm:29.1.5" + dependencies: + bs-logger: "npm:0.x" + fast-json-stable-stringify: "npm:2.x" + jest-util: "npm:^29.0.0" + json5: "npm:^2.2.3" + lodash.memoize: "npm:4.x" + make-error: "npm:1.x" + semver: "npm:^7.5.3" + yargs-parser: "npm:^21.0.1" + peerDependencies: + "@babel/core": ">=7.0.0-beta.0 <8" + "@jest/transform": ^29.0.0 + "@jest/types": ^29.0.0 + babel-jest: ^29.0.0 + jest: ^29.0.0 + typescript: ">=4.3 <6" + peerDependenciesMeta: + "@babel/core": + optional: true + "@jest/transform": + optional: true + "@jest/types": + optional: true + babel-jest: + optional: true + esbuild: + optional: true + bin: + ts-jest: cli.js + checksum: 10c0/5c1baf4d23342e138745d6283ae530b07957b779b103abc99fd6713e1fd7fc65d4a4638695d5a76e177f78c46c80ec53598b365f245997db5d3d00617940bf87 + languageName: node + linkType: hard + +"ts-node@npm:10.9.2": + version: 10.9.2 + resolution: "ts-node@npm:10.9.2" + dependencies: + "@cspotcode/source-map-support": "npm:^0.8.0" + "@tsconfig/node10": "npm:^1.0.7" + "@tsconfig/node12": "npm:^1.0.7" + "@tsconfig/node14": "npm:^1.0.0" + "@tsconfig/node16": "npm:^1.0.2" + acorn: "npm:^8.4.1" + acorn-walk: "npm:^8.1.1" + arg: "npm:^4.1.0" + create-require: "npm:^1.1.0" + diff: "npm:^4.0.1" + make-error: "npm:^1.1.1" + v8-compile-cache-lib: "npm:^3.0.1" + yn: "npm:3.1.1" + peerDependencies: + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" + typescript: ">=2.7" + peerDependenciesMeta: + "@swc/core": + optional: true + "@swc/wasm": + optional: true + bin: + ts-node: dist/bin.js + ts-node-cwd: dist/bin-cwd.js + ts-node-esm: dist/bin-esm.js + ts-node-script: dist/bin-script.js + ts-node-transpile-only: dist/bin-transpile.js + ts-script: dist/bin-script-deprecated.js + checksum: 10c0/5f29938489f96982a25ba650b64218e83a3357d76f7bede80195c65ab44ad279c8357264639b7abdd5d7e75fc269a83daa0e9c62fd8637a3def67254ecc9ddc2 + 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.3 + resolution: "tslib@npm:2.6.3" + checksum: 10c0/2598aef53d9dbe711af75522464b2104724d6467b26a60f2bdac8297d2b5f1f6b86a71f61717384aa8fd897240467aaa7bcc36a0700a0faf751293d1331db39a + languageName: node + linkType: hard + +"tsx@npm:^4.7.1": + version: 4.15.6 + resolution: "tsx@npm:4.15.6" + dependencies: + esbuild: "npm:~0.21.4" + fsevents: "npm:~2.3.3" + get-tsconfig: "npm:^4.7.5" + dependenciesMeta: + fsevents: + optional: true + bin: + tsx: dist/cli.mjs + checksum: 10c0/c44e489d35b8b4795d68164572eb9e322a707290aa0786c2aac0f5c7782a884dfec38d557d74471b981a8314b2c7f6612078451d0429db028a23cb54a37e83a0 + languageName: node + linkType: hard + +"type-check@npm:^0.4.0, type-check@npm:~0.4.0": + version: 0.4.0 + resolution: "type-check@npm:0.4.0" + dependencies: + prelude-ls: "npm:^1.2.1" + checksum: 10c0/7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58 + languageName: node + linkType: hard + +"type-detect@npm:4.0.8": + version: 4.0.8 + resolution: "type-detect@npm:4.0.8" + checksum: 10c0/8fb9a51d3f365a7de84ab7f73b653534b61b622aa6800aecdb0f1095a4a646d3f5eb295322127b6573db7982afcd40ab492d038cf825a42093a58b1e1353e0bd + languageName: node + linkType: hard + +"type-fest@npm:^0.18.0": + version: 0.18.1 + resolution: "type-fest@npm:0.18.1" + checksum: 10c0/303f5ecf40d03e1d5b635ce7660de3b33c18ed8ebc65d64920c02974d9e684c72483c23f9084587e9dd6466a2ece1da42ddc95b412a461794dd30baca95e2bac + languageName: node + linkType: hard + +"type-fest@npm:^0.20.2": + version: 0.20.2 + resolution: "type-fest@npm:0.20.2" + checksum: 10c0/dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3 + languageName: node + linkType: hard + +"type-fest@npm:^0.21.3": + version: 0.21.3 + resolution: "type-fest@npm:0.21.3" + checksum: 10c0/902bd57bfa30d51d4779b641c2bc403cdf1371fb9c91d3c058b0133694fcfdb817aef07a47f40faf79039eecbaa39ee9d3c532deff244f3a19ce68cea71a61e8 + languageName: node + linkType: hard + +"type-fest@npm:^0.6.0": + version: 0.6.0 + resolution: "type-fest@npm:0.6.0" + checksum: 10c0/0c585c26416fce9ecb5691873a1301b5aff54673c7999b6f925691ed01f5b9232db408cdbb0bd003d19f5ae284322523f44092d1f81ca0a48f11f7cf0be8cd38 + languageName: node + linkType: hard + +"type-fest@npm:^0.8.1": + version: 0.8.1 + resolution: "type-fest@npm:0.8.1" + checksum: 10c0/dffbb99329da2aa840f506d376c863bd55f5636f4741ad6e65e82f5ce47e6914108f44f340a0b74009b0cb5d09d6752ae83203e53e98b1192cf80ecee5651636 + languageName: node + linkType: hard + +"typed-array-buffer@npm:^1.0.2": + version: 1.0.2 + resolution: "typed-array-buffer@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.7" + es-errors: "npm:^1.3.0" + is-typed-array: "npm:^1.1.13" + checksum: 10c0/9e043eb38e1b4df4ddf9dde1aa64919ae8bb909571c1cc4490ba777d55d23a0c74c7d73afcdd29ec98616d91bb3ae0f705fad4421ea147e1daf9528200b562da + languageName: node + linkType: hard + +"typed-array-byte-length@npm:^1.0.1": + version: 1.0.1 + resolution: "typed-array-byte-length@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-proto: "npm:^1.0.3" + is-typed-array: "npm:^1.1.13" + checksum: 10c0/fcebeffb2436c9f355e91bd19e2368273b88c11d1acc0948a2a306792f1ab672bce4cfe524ab9f51a0505c9d7cd1c98eff4235c4f6bfef6a198f6cfc4ff3d4f3 + languageName: node + linkType: hard + +"typed-array-byte-offset@npm:^1.0.2": + version: 1.0.2 + resolution: "typed-array-byte-offset@npm:1.0.2" + dependencies: + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-proto: "npm:^1.0.3" + is-typed-array: "npm:^1.1.13" + checksum: 10c0/d2628bc739732072e39269389a758025f75339de2ed40c4f91357023c5512d237f255b633e3106c461ced41907c1bf9a533c7e8578066b0163690ca8bc61b22f + languageName: node + linkType: hard + +"typed-array-length@npm:^1.0.6": + version: 1.0.6 + resolution: "typed-array-length@npm:1.0.6" + dependencies: + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-proto: "npm:^1.0.3" + is-typed-array: "npm:^1.1.13" + possible-typed-array-names: "npm:^1.0.0" + checksum: 10c0/74253d7dc488eb28b6b2711cf31f5a9dcefc9c41b0681fd1c178ed0a1681b4468581a3626d39cd4df7aee3d3927ab62be06aa9ca74e5baf81827f61641445b77 + languageName: node + linkType: hard + +"typescript@npm:^5.3.3": + version: 5.4.5 + resolution: "typescript@npm:5.4.5" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/2954022ada340fd3d6a9e2b8e534f65d57c92d5f3989a263754a78aba549f7e6529acc1921913560a4b816c46dce7df4a4d29f9f11a3dc0d4213bb76d043251e + languageName: node + linkType: hard + +"typescript@patch:typescript@npm%3A^5.3.3#optional!builtin": + version: 5.4.5 + resolution: "typescript@patch:typescript@npm%3A5.4.5#optional!builtin::version=5.4.5&hash=5adc0c" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/db2ad2a16ca829f50427eeb1da155e7a45e598eec7b086d8b4e8ba44e5a235f758e606d681c66992230d3fc3b8995865e5fd0b22a2c95486d0b3200f83072ec9 + languageName: node + linkType: hard + +"unbox-primitive@npm:^1.0.2": + version: 1.0.2 + resolution: "unbox-primitive@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.2" + has-bigints: "npm:^1.0.2" + has-symbols: "npm:^1.0.3" + which-boxed-primitive: "npm:^1.0.2" + checksum: 10c0/81ca2e81134167cc8f75fa79fbcc8a94379d6c61de67090986a2273850989dd3bae8440c163121b77434b68263e34787a675cbdcb34bb2f764c6b9c843a11b66 + languageName: node + linkType: hard + +"undici-types@npm:~5.26.4": + version: 5.26.5 + resolution: "undici-types@npm:5.26.5" + checksum: 10c0/bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501 + languageName: node + linkType: hard + +"unescape-js@npm:^1.0.5": + version: 1.1.4 + resolution: "unescape-js@npm:1.1.4" + dependencies: + string.fromcodepoint: "npm:^0.2.1" + checksum: 10c0/4f7cda5c524cb4392d482eba11762dbc43ff8cd0d0d88c4deecdacb7ec04d9162595406f66c5fbe9a6a565aabf7f2f1cc1889d44d805b1e8326deb7b3b279484 + languageName: node + linkType: hard + +"unicode-canonical-property-names-ecmascript@npm:^2.0.0": + version: 2.0.0 + resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.0" + checksum: 10c0/0fe812641bcfa3ae433025178a64afb5d9afebc21a922dafa7cba971deebb5e4a37350423890750132a85c936c290fb988146d0b1bd86838ad4897f4fc5bd0de + languageName: node + linkType: hard + +"unicode-match-property-ecmascript@npm:^2.0.0": + version: 2.0.0 + resolution: "unicode-match-property-ecmascript@npm:2.0.0" + dependencies: + unicode-canonical-property-names-ecmascript: "npm:^2.0.0" + unicode-property-aliases-ecmascript: "npm:^2.0.0" + checksum: 10c0/4d05252cecaf5c8e36d78dc5332e03b334c6242faf7cf16b3658525441386c0a03b5f603d42cbec0f09bb63b9fd25c9b3b09667aee75463cac3efadae2cd17ec + languageName: node + linkType: hard + +"unicode-match-property-value-ecmascript@npm:^2.1.0": + version: 2.1.0 + resolution: "unicode-match-property-value-ecmascript@npm:2.1.0" + checksum: 10c0/f5b9499b9e0ffdc6027b744d528f17ec27dd7c15da03254ed06851feec47e0531f20d410910c8a49af4a6a190f4978413794c8d75ce112950b56d583b5d5c7f2 + languageName: node + linkType: hard + +"unicode-property-aliases-ecmascript@npm:^2.0.0": + version: 2.1.0 + resolution: "unicode-property-aliases-ecmascript@npm:2.1.0" + checksum: 10c0/50ded3f8c963c7785e48c510a3b7c6bc4e08a579551489aa0349680a35b1ceceec122e33b2b6c1b579d0be2250f34bb163ac35f5f8695fe10bbc67fb757f0af8 + languageName: node + linkType: hard + +"unique-filename@npm:^3.0.0": + version: 3.0.0 + resolution: "unique-filename@npm:3.0.0" + dependencies: + unique-slug: "npm:^4.0.0" + checksum: 10c0/6363e40b2fa758eb5ec5e21b3c7fb83e5da8dcfbd866cc0c199d5534c42f03b9ea9ab069769cc388e1d7ab93b4eeef28ef506ab5f18d910ef29617715101884f + languageName: node + linkType: hard + +"unique-slug@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-slug@npm:4.0.0" + dependencies: + imurmurhash: "npm:^0.1.4" + checksum: 10c0/cb811d9d54eb5821b81b18205750be84cb015c20a4a44280794e915f5a0a70223ce39066781a354e872df3572e8155c228f43ff0cce94c7cbf4da2cc7cbdd635 + languageName: node + linkType: hard + +"update-browserslist-db@npm:^1.0.16": + version: 1.0.16 + resolution: "update-browserslist-db@npm:1.0.16" + dependencies: + escalade: "npm:^3.1.2" + picocolors: "npm:^1.0.1" + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: 10c0/5995399fc202adbb51567e4810e146cdf7af630a92cc969365a099150cb00597e425cc14987ca7080b09a4d0cfd2a3de53fbe72eebff171aed7f9bb81f9bf405 + languageName: node + linkType: hard + +"uri-js@npm:^4.2.2, uri-js@npm:^4.4.1": + version: 4.4.1 + resolution: "uri-js@npm:4.4.1" + dependencies: + punycode: "npm:^2.1.0" + checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c + languageName: node + linkType: hard + +"util-deprecate@npm:^1.0.1": + version: 1.0.2 + resolution: "util-deprecate@npm:1.0.2" + checksum: 10c0/41a5bdd214df2f6c3ecf8622745e4a366c4adced864bc3c833739791aeeeb1838119af7daed4ba36428114b5c67dcda034a79c882e97e43c03e66a4dd7389942 + languageName: node + linkType: hard + +"uuid@npm:^8.3.2": + version: 8.3.2 + resolution: "uuid@npm:8.3.2" + bin: + uuid: dist/bin/uuid + checksum: 10c0/bcbb807a917d374a49f475fae2e87fdca7da5e5530820ef53f65ba1d12131bd81a92ecf259cc7ce317cbe0f289e7d79fdfebcef9bfa3087c8c8a2fa304c9be54 + languageName: node + linkType: hard + +"v8-compile-cache-lib@npm:^3.0.1": + version: 3.0.1 + resolution: "v8-compile-cache-lib@npm:3.0.1" + checksum: 10c0/bdc36fb8095d3b41df197f5fb6f11e3a26adf4059df3213e3baa93810d8f0cc76f9a74aaefc18b73e91fe7e19154ed6f134eda6fded2e0f1c8d2272ed2d2d391 + languageName: node + linkType: hard + +"v8-to-istanbul@npm:^9.0.1": + version: 9.2.0 + resolution: "v8-to-istanbul@npm:9.2.0" + dependencies: + "@jridgewell/trace-mapping": "npm:^0.3.12" + "@types/istanbul-lib-coverage": "npm:^2.0.1" + convert-source-map: "npm:^2.0.0" + checksum: 10c0/e691ba4dd0dea4a884e52c37dbda30cce6f9eeafe9b26721e449429c6bb0f4b6d1e33fabe7711d0f67f7a34c3bfd56c873f7375bba0b1534e6a2843ce99550e5 + languageName: node + linkType: hard + +"validate-npm-package-license@npm:^3.0.1": + version: 3.0.4 + resolution: "validate-npm-package-license@npm:3.0.4" + dependencies: + spdx-correct: "npm:^3.0.0" + spdx-expression-parse: "npm:^3.0.0" + checksum: 10c0/7b91e455a8de9a0beaa9fe961e536b677da7f48c9a493edf4d4d4a87fd80a7a10267d438723364e432c2fcd00b5650b5378275cded362383ef570276e6312f4f + languageName: node + linkType: hard + +"vlq@npm:^0.2.1": + version: 0.2.3 + resolution: "vlq@npm:0.2.3" + checksum: 10c0/d1557b404353ca75c7affaaf403d245a3273a7d1c6b3380ed7f04ae3f080e4658f41ac700d6f48acb3cd4875fe7bc7da4924b3572cd5584a5de83b35b1de5e12 + languageName: node + linkType: hard + +"vscode-languageserver-textdocument@npm:^1.0.11": + version: 1.0.11 + resolution: "vscode-languageserver-textdocument@npm:1.0.11" + checksum: 10c0/1996a38e24571e05aa21dd4f46e0a6849e22301c9a66996762e77d9c6df3622de0bd31cd5742a0c0c47fb9dfd00b310ad08c44d08241873ea571edacd5238da6 + languageName: node + linkType: hard + +"vscode-uri@npm:^3.0.8": + version: 3.0.8 + resolution: "vscode-uri@npm:3.0.8" + checksum: 10c0/f7f217f526bf109589969fe6e66b71e70b937de1385a1d7bb577ca3ee7c5e820d3856a86e9ff2fa9b7a0bc56a3dd8c3a9a557d3fedd7df414bc618d5e6b567f9 + languageName: node + linkType: hard + +"walker@npm:^1.0.8": + version: 1.0.8 + resolution: "walker@npm:1.0.8" + dependencies: + makeerror: "npm:1.0.12" + checksum: 10c0/a17e037bccd3ca8a25a80cb850903facdfed0de4864bd8728f1782370715d679fa72e0a0f5da7c1c1379365159901e5935f35be531229da53bbfc0efdabdb48e + languageName: node + linkType: hard + +"wcwidth@npm:^1.0.1": + version: 1.0.1 + resolution: "wcwidth@npm:1.0.1" + dependencies: + defaults: "npm:^1.0.3" + checksum: 10c0/5b61ca583a95e2dd85d7078400190efd452e05751a64accb8c06ce4db65d7e0b0cde9917d705e826a2e05cc2548f61efde115ffa374c3e436d04be45c889e5b4 + languageName: node + linkType: hard + +"web-streams-polyfill@npm:^3.0.3": + version: 3.3.3 + resolution: "web-streams-polyfill@npm:3.3.3" + checksum: 10c0/64e855c47f6c8330b5436147db1c75cb7e7474d924166800e8e2aab5eb6c76aac4981a84261dd2982b3e754490900b99791c80ae1407a9fa0dcff74f82ea3a7f + languageName: node + linkType: hard + +"which-boxed-primitive@npm:^1.0.2": + version: 1.0.2 + resolution: "which-boxed-primitive@npm:1.0.2" + dependencies: + is-bigint: "npm:^1.0.1" + is-boolean-object: "npm:^1.1.0" + is-number-object: "npm:^1.0.4" + is-string: "npm:^1.0.5" + is-symbol: "npm:^1.0.3" + checksum: 10c0/0a62a03c00c91dd4fb1035b2f0733c341d805753b027eebd3a304b9cb70e8ce33e25317add2fe9b5fea6f53a175c0633ae701ff812e604410ddd049777cd435e + languageName: node + linkType: hard + +"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15": + version: 1.1.15 + resolution: "which-typed-array@npm:1.1.15" + dependencies: + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/4465d5348c044032032251be54d8988270e69c6b7154f8fcb2a47ff706fe36f7624b3a24246b8d9089435a8f4ec48c1c1025c5d6b499456b9e5eff4f48212983 + languageName: node + linkType: hard + +"which@npm:^1.2.9": + version: 1.3.1 + resolution: "which@npm:1.3.1" + dependencies: + isexe: "npm:^2.0.0" + bin: + which: ./bin/which + checksum: 10c0/e945a8b6bbf6821aaaef7f6e0c309d4b615ef35699576d5489b4261da9539f70393c6b2ce700ee4321c18f914ebe5644bc4631b15466ffbaad37d83151f6af59 + languageName: node + linkType: hard + +"which@npm:^2.0.1": + version: 2.0.2 + resolution: "which@npm:2.0.2" + dependencies: + isexe: "npm:^2.0.0" + bin: + node-which: ./bin/node-which + checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f + languageName: node + linkType: hard + +"which@npm:^4.0.0": + version: 4.0.0 + resolution: "which@npm:4.0.0" + dependencies: + isexe: "npm:^3.1.1" + bin: + node-which: bin/which.js + checksum: 10c0/449fa5c44ed120ccecfe18c433296a4978a7583bf2391c50abce13f76878d2476defde04d0f79db8165bdf432853c1f8389d0485ca6e8ebce3bbcded513d5e6a + languageName: node + linkType: hard + +"word-wrap@npm:^1.2.5": + version: 1.2.5 + resolution: "word-wrap@npm:1.2.5" + checksum: 10c0/e0e4a1ca27599c92a6ca4c32260e8a92e8a44f4ef6ef93f803f8ed823f486e0889fc0b93be4db59c8d51b3064951d25e43d434e95dc8c960cc3a63d65d00ba20 + languageName: node + linkType: hard + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: "npm:^4.0.0" + string-width: "npm:^4.1.0" + strip-ansi: "npm:^6.0.0" + checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da + languageName: node + linkType: hard + +"wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" + dependencies: + ansi-styles: "npm:^6.1.0" + string-width: "npm:^5.0.1" + strip-ansi: "npm:^7.0.1" + checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 + languageName: node + linkType: hard + +"wrap-ansi@npm:^9.0.0": + version: 9.0.0 + resolution: "wrap-ansi@npm:9.0.0" + dependencies: + ansi-styles: "npm:^6.2.1" + string-width: "npm:^7.0.0" + strip-ansi: "npm:^7.1.0" + checksum: 10c0/a139b818da9573677548dd463bd626a5a5286271211eb6e4e82f34a4f643191d74e6d4a9bb0a3c26ec90e6f904f679e0569674ac099ea12378a8b98e20706066 + languageName: node + linkType: hard + +"wrappy@npm:1": + version: 1.0.2 + resolution: "wrappy@npm:1.0.2" + checksum: 10c0/56fece1a4018c6a6c8e28fbc88c87e0fbf4ea8fd64fc6c63b18f4acc4bd13e0ad2515189786dd2c30d3eec9663d70f4ecf699330002f8ccb547e4a18231fc9f0 + languageName: node + linkType: hard + +"write-file-atomic@npm:^4.0.2": + version: 4.0.2 + resolution: "write-file-atomic@npm:4.0.2" + dependencies: + imurmurhash: "npm:^0.1.4" + signal-exit: "npm:^3.0.7" + checksum: 10c0/a2c282c95ef5d8e1c27b335ae897b5eca00e85590d92a3fd69a437919b7b93ff36a69ea04145da55829d2164e724bc62202cdb5f4b208b425aba0807889375c7 + languageName: node + linkType: hard + +"ws@npm:7.4.6": + version: 7.4.6 + resolution: "ws@npm:7.4.6" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 10c0/4b44b59bbc0549c852fb2f0cdb48e40e122a1b6078aeed3d65557cbeb7d37dda7a4f0027afba2e6a7a695de17701226d02b23bd15c97b0837808c16345c62f8e + languageName: node + linkType: hard + +"xdg-basedir@npm:^5.1.0": + version: 5.1.0 + resolution: "xdg-basedir@npm:5.1.0" + checksum: 10c0/c88efabc71ffd996ba9ad8923a8cc1c7c020a03e2c59f0ffa72e06be9e724ad2a0fccef488757bc6ed3d8849d753dd25082d1035d95cb179e79eae4d034d0b80 + languageName: node + linkType: hard + +"xml@npm:^1.0.1": + version: 1.0.1 + resolution: "xml@npm:1.0.1" + checksum: 10c0/04bcc9b8b5e7b49392072fbd9c6b0f0958bd8e8f8606fee460318e43991349a68cbc5384038d179ff15aef7d222285f69ca0f067f53d071084eb14c7fdb30411 + languageName: node + linkType: hard + +"y18n@npm:^5.0.5": + version: 5.0.8 + resolution: "y18n@npm:5.0.8" + checksum: 10c0/4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249 + languageName: node + linkType: hard + +"yallist@npm:^3.0.2": + version: 3.1.1 + resolution: "yallist@npm:3.1.1" + checksum: 10c0/c66a5c46bc89af1625476f7f0f2ec3653c1a1791d2f9407cfb4c2ba812a1e1c9941416d71ba9719876530e3340a99925f697142989371b72d93b9ee628afd8c1 + languageName: node + linkType: hard + +"yallist@npm:^4.0.0": + version: 4.0.0 + resolution: "yallist@npm:4.0.0" + checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a + languageName: node + linkType: hard + +"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/e1ee78b381e5c710f715cc4082fd10fc82f7f5c92bd6f075771d20559e175616f56abf1c411f545ea0e9e16e4f84a83a50b42764af5f16ec006328ba9476bb31 + languageName: node + linkType: hard + +"yargs-parser@npm:^20.2.3": + version: 20.2.9 + resolution: "yargs-parser@npm:20.2.9" + checksum: 10c0/0685a8e58bbfb57fab6aefe03c6da904a59769bd803a722bb098bd5b0f29d274a1357762c7258fb487512811b8063fb5d2824a3415a0a4540598335b3b086c72 + languageName: node + linkType: hard + +"yargs-parser@npm:^21.0.1, yargs-parser@npm:^21.1.1": + version: 21.1.1 + resolution: "yargs-parser@npm:21.1.1" + checksum: 10c0/f84b5e48169479d2f402239c59f084cfd1c3acc197a05c59b98bab067452e6b3ea46d4dd8ba2985ba7b3d32a343d77df0debd6b343e5dae3da2aab2cdf5886b2 + languageName: node + linkType: hard + +"yargs@npm:^17.0.0, yargs@npm:^17.3.1": + version: 17.7.2 + resolution: "yargs@npm:17.7.2" + dependencies: + cliui: "npm:^8.0.1" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.3" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^21.1.1" + checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05 + languageName: node + linkType: hard + +"yn@npm:3.1.1": + version: 3.1.1 + resolution: "yn@npm:3.1.1" + checksum: 10c0/0732468dd7622ed8a274f640f191f3eaf1f39d5349a1b72836df484998d7d9807fbea094e2f5486d6b0cd2414aad5775972df0e68f8604db89a239f0f4bf7443 + languageName: node + linkType: hard + +"yocto-queue@npm:^0.1.0": + version: 0.1.0 + resolution: "yocto-queue@npm:0.1.0" + checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f + languageName: node + linkType: hard + +"zod-validation-error@npm:^3.0.3": + version: 3.3.0 + resolution: "zod-validation-error@npm:3.3.0" + peerDependencies: + zod: ^3.18.0 + checksum: 10c0/a233dca6dc9a2237aa7b677cc8ce022c2b6f90894fd4d1e2c7b239d2aad38f36f3b84bf7f7cfaff5bf97fce31e1010d2736ca1ec539e0e8cb8bb9d05977911a2 + languageName: node + linkType: hard + +"zod@npm:^3.22.4": + version: 3.23.8 + resolution: "zod@npm:3.23.8" + checksum: 10c0/8f14c87d6b1b53c944c25ce7a28616896319d95bc46a9660fe441adc0ed0a81253b02b5abdaeffedbeb23bdd25a0bf1c29d2c12dd919aef6447652dd295e3e69 + languageName: node + linkType: hard From dfa76edaeb9036bfc43714abbdbfc70605c5199d Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:49:54 +0100 Subject: [PATCH 13/14] ci: build tests before jest --- .github/workflows/jest-testing.yml | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/jest-testing.yml b/.github/workflows/jest-testing.yml index 293dcde..0f6ee5c 100644 --- a/.github/workflows/jest-testing.yml +++ b/.github/workflows/jest-testing.yml @@ -28,6 +28,9 @@ 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]} diff --git a/package.json b/package.json index 8cd56d0..c0d51b7 100644 --- a/package.json +++ b/package.json @@ -89,4 +89,4 @@ ] }, "packageManager": "yarn@4.2.2" -} +} \ No newline at end of file From edd481c99350d942b7a2cbea50bb36fa134b3a6a Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:56:45 +0100 Subject: [PATCH 14/14] ci: adjust test --- tests/rpc-handler.test.ts | 12 +- types/dynamic.ts | 39993 ++++++++++++++++++++---------------- 2 files changed, 22039 insertions(+), 17966 deletions(-) diff --git a/tests/rpc-handler.test.ts b/tests/rpc-handler.test.ts index beb204c..8dfcd09 100644 --- a/tests/rpc-handler.test.ts +++ b/tests/rpc-handler.test.ts @@ -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/types/dynamic.ts b/types/dynamic.ts index eecd695..a21c2b0 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -1,5 +1,6 @@ /* eslint-disable sonarjs/no-duplicate-string */ + export const CHAINS_IDS = { "1": "ethereum-mainnet", "2": "expanse-network", @@ -1597,24 +1598,24 @@ export const CHAINS_IDS = { "666301171999": "pdc-mainnet", "6022140761023": "molereum-network", "2713017997578000": "dchain-testnet", - "2716446429837000": "dchain", + "2716446429837000": "dchain" } as const; export const NETWORKS = { "ethereum-mainnet": 1, "bnb-smart-chain-mainnet": 56, "arbitrum-one": 42161, - base: 8453, + "base": 8453, "avalanche-c-chain": 43114, "polygon-mainnet": 137, - linea: 59144, + "linea": 59144, "op-mainnet": 10, "cronos-mainnet": 25, - mantle: 5000, - gnosis: 100, - pulsechain: 369, + "mantle": 5000, + "gnosis": 100, + "pulsechain": 369, "filecoin---mainnet": 314, - kava: 2222, + "kava": 2222, "fantom-opera": 250, "rootstock-mainnet": 30, "celo-mainnet": 42220, @@ -1623,30 +1624,31 @@ export const NETWORKS = { "core-blockchain-mainnet": 1116, "klaytn-mainnet-cypress": 8217, "manta-pacific-mainnet": 169, - moonbeam: 1284, - "telos-evm-mainnet": 40, + "moonbeam": 1284, "iotex-network-mainnet": 4689, - astar: 592, - canto: 7700, + "telos-evm-mainnet": 40, + "astar": 592, + "canto": 7700, "conflux-espace": 1030, "aurora-mainnet": 1313161554, "xdc-network": 50, - "meter-mainnet": 82, "okxchain-mainnet": 66, - moonriver: 1285, + "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, - "vision---mainnet": 888888, - wanchain: 888, - beam: 4337, + "wanchain": 888, "zilliqa-evm": 32769, + "beam": 4337, + "vision---mainnet": 888888, "elastos-smart-chain": 20, "oasys-mainnet": 248, - evmos: 9001, "onus-chain-mainnet": 1975, + "evmos": 9001, "dogechain-mainnet": 2000, "coinex-smart-chain-mainnet": 52, "fuse-mainnet": 122, @@ -1654,11 +1656,10 @@ export const NETWORKS = { "theta-mainnet": 361, "kcc-mainnet": 321, "velas-evm-mainnet": 106, - "huobi-eco-chain-mainnet": 128, "oasis-emerald": 42262, "rollux-mainnet": 570, - "neon-evm-mainnet": 245022934, "thundercore-mainnet": 108, + "neon-evm-mainnet": 245022934, "ethereum-classic": 1, "energy-web-chain": 246, "step-network": 1234, @@ -1667,24 +1668,23 @@ export const NETWORKS = { "tomb-chain-mainnet": 6969, "godwoken-mainnet": 71402, "loopnetwork-mainnet": 15551, - "omax-mainnet": 311, - shiden: 336, - ubiq: 8, + "shiden": 336, + "ubiq": 8, "syscoin-mainnet": 57, "jibchain-l1": 8899, "rei-network": 47805, "high-performance-blockchain": 269, "callisto-mainnet": 1, - tenet: 1559, - gochain: 60, + "tenet": 1559, + "gochain": 60, "bitgert-mainnet": 32520, "rei-chain-mainnet": 55555, - palm: 11297108109, + "palm": 11297108109, "expanse-network": 1, - ropsten: 3, - rinkeby: 4, - goerli: 5, - thaichain: 7, + "ropsten": 3, + "rinkeby": 4, + "goerli": 5, + "thaichain": 7, "ubiq-network-testnet": 2, "metadium-mainnet": 11, "metadium-testnet": 12, @@ -1699,7 +1699,7 @@ export const NETWORKS = { "ela-did-sidechain-testnet": 23, "kardiachain-mainnet": 0, "genesis-l1-testnet": 26, - shibachain: 27, + "shibachain": 27, "genesis-l1": 29, "rootstock-testnet": 31, "gooddata-testnet": 32, @@ -1708,7 +1708,7 @@ export const NETWORKS = { "tbwg-chain": 35, "dxchain-mainnet": 36, "xpla-mainnet": 37, - valorbit: 38, + "valorbit": 38, "u2u-solaris-mainnet": 39, "telos-evm-testnet": 41, "lukso-mainnet": 42, @@ -1725,7 +1725,7 @@ export const NETWORKS = { "zyx-mainnet": 55, "ontology-mainnet": 58, "mordor-testnet": 7, - ellaism: 64, + "ellaism": 64, "okexchain-testnet": 65, "dbchain-testnet": 67, "soterone-mainnet": 68, @@ -1733,43 +1733,43 @@ export const NETWORKS = { "hoo-smart-chain": 70, "conflux-espace-(testnet)": 71, "dxchain-testnet": 72, - fncy: 73, + "fncy": 73, "idchain-mainnet": 74, "decimal-smart-chain-mainnet": 75, - mix: 76, + "mix": 76, "poa-network-sokol": 77, "primuschain-mainnet": 78, "zenith-mainnet": 79, - genechain: 80, + "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": 88, "viction-testnet": 89, "garizon-stage0": 90, "garizon-stage1": 91, "garizon-stage2": 92, "garizon-stage3": 93, - swissdlt: 94, + "swissdlt": 94, "camdl-mainnet": 95, "bitkub-chain": 96, "bnb-smart-chain-testnet": 97, "six-protocol": 98, "poa-network-core": 99, - etherinc: 1, + "etherinc": 1, "web3games-testnet": 102, "worldland-mainnet": 103, "kaiba-lightning-chain-testnet": 104, "web3games-devnet": 105, "nebula-testnet": 107, - shibarium: 109, + "shibarium": 109, "proton-testnet": 110, "etherlite-chain": 111, "coinbit-mainnet": 112, - dehvo: 113, + "dehvo": 113, "flare-testnet-coston2": 114, "uptick-mainnet": 117, "arcology-testnet": 118, @@ -1796,7 +1796,7 @@ export const NETWORKS = { "phi-network-v2": 144, "soraai-testnet": 145, "flag-mainnet": 147, - shimmerevm: 148, + "shimmerevm": 148, "six-protocol-testnet": 150, "redbelly-network-mainnet": 151, "redbelly-network-devnet": 152, @@ -1812,7 +1812,7 @@ export const NETWORKS = { "lightstreams-testnet": 162, "lightstreams-mainnet": 163, "omni-testnet": 164, - omni: 166, + "omni": 166, "atoshi-testnet": 167, "aioz-network": 168, "hoo-smart-chain-testnet": 170, @@ -1824,7 +1824,7 @@ export const NETWORKS = { "seele-mainnet": 186, "bmc-mainnet": 188, "bmc-testnet": 189, - filefilego: 191, + "filefilego": 191, "crypto-emergency": 193, "x-layer-testnet": 195, "x-layer-mainnet": 196, @@ -1837,7 +1837,7 @@ export const NETWORKS = { "vinuchain-testnet": 206, "vinuchain-network": 207, "structx-mainnet": 208, - bitnet: 210, + "bitnet": 210, "freight-trust-network": 0, "mapo-makalu": 212, "b2-hub-mainnet": 213, @@ -1849,21 +1849,21 @@ export const NETWORKS = { "lachain-mainnet": 225, "lachain-testnet": 226, "mind-network-mainnet": 228, - swapdex: 230, + "swapdex": 230, "protojumbo-testnet": 234, "deamchain-testnet": 236, "plinga-mainnet": 242, - fraxtal: 252, - kroma: 255, + "fraxtal": 252, + "kroma": 255, "huobi-eco-chain-testnet": 256, - setheum: 258, + "setheum": 258, "neonlink-mainnet": 259, "sur-blockchain-network": 1, - neura: 266, + "neura": 266, "neura-testnet": 267, "neura-devnet": 268, "egoncoin-mainnet": 271, - lachain: 274, + "lachain": 274, "xfair.ai-mainnet": 278, "bpx-blockchain": 279, "cronos-zkevm-testnet": 282, @@ -1877,8 +1877,9 @@ export const NETWORKS = { "neurochain-testnet": 303, "zksats-mainnet": 305, "lovely-network-testnet": 307, - furtheon: 308, + "furtheon": 308, "wyzth-testnet": 309, + "omax-mainnet": 311, "neurochain-mainnet": 313, "kcc-testnet": 322, "cosvm-mainnet": 323, @@ -1893,7 +1894,7 @@ export const NETWORKS = { "consta-testnet": 371, "zkamoeba-testnet": 380, "zkamoeba-mainnet": 381, - lisinski: 385, + "lisinski": 385, "camdl-testnet": 395, "near-mainnet": 397, "near-testnet": 398, @@ -1903,7 +1904,7 @@ export const NETWORKS = { "syndr-l3": 404, "pepe-chain-mainnet": 411, "sx-network-mainnet": 416, - latestnet: 418, + "latestnet": 418, "optimism-goerli-testnet": 420, "viridis-mainnet": 422, "pgn-(public-goods-network)": 424, @@ -1915,7 +1916,7 @@ export const NETWORKS = { "arzio-chain": 456, "areon-network-testnet": 462, "areon-network-mainnet": 463, - rupaya: 499, + "rupaya": 499, "camino-c-chain": 1000, "columbus-test-network": 1001, "syndicate-chain": 510, @@ -1925,10 +1926,10 @@ export const NETWORKS = { "xt-smart-chain-mainnet": 1024, "firechain-mainnet": 529, "f(x)core-mainnet-network": 530, - candle: 534, + "candle": 534, "optrust-mainnet": 537, "pawchain-testnet": 542, - testnet: 545, + "testnet": 545, "vela1-chain-mainnet": 555, "tao-network": 558, "dogechain-testnet": 568, @@ -1941,42 +1942,42 @@ export const NETWORKS = { "vine-testnet": 601, "eiob-mainnet": 612, "graphlinq-blockchain-mainnet": 614, - avocado: 634, - previewnet: 646, + "avocado": 634, + "previewnet": 646, "sx-network-testnet": 647, "endurance-smart-chain-mainnet": 648, "kalichain-testnet": 653, - kalichain: 654, - ultronsmartchain: 662, + "kalichain": 654, + "ultronsmartchain": 662, "pixie-chain-testnet": 666, "laos-arrakis": 667, - juncachain: 668, + "juncachain": 668, "juncachain-testnet": 669, "karura-network": 686, - redstone: 690, + "redstone": 690, "star-social-testnet": 700, "darwinia-koi-testnet": 701, "blockchain-station-mainnet": 707, "blockchain-station-testnet": 708, - highbury: 710, + "highbury": 710, "vrcscan-mainnet": 713, "shibarium-beta": 719, "lycan-chain": 721, - blucrates: 727, + "blucrates": 727, "lovely-network-mainnet": 730, "vention-smart-chain-testnet": 741, "script-testnet": 742, - mainnet: 747, - ql1: 766, + "mainnet": 747, + "ql1": 766, "openchain-testnet": 776, - cheapeth: 777, + "cheapeth": 777, "maal-chain": 786, "acala-network": 787, "aerochain-testnet": 788, - patex: 789, + "patex": 789, "rupaya-testnet": 799, "lucid-blockchain": 800, - haic: 803, + "haic": 803, "portal-fantasy-chain-test": 808, "haven1-testnet": 810, "qitmeer-network-mainnet": 813, @@ -2007,7 +2008,7 @@ export const NETWORKS = { "munode-testnet": 956, "lyra-chain": 957, "btc20-smart-chain": 963, - ethxy: 969, + "ethxy": 969, "oort-mainnet": 970, "oort-huygens": 971, "oort-ascraeus": 972, @@ -2029,8 +2030,8 @@ export const NETWORKS = { "jumbochain-mainnet": 1009, "evrice-network": 1010, "rebus-mainnet": 1011, - newton: 1012, - sakura: 1022, + "newton": 1012, + "sakura": 1022, "clover-testnet": 1023, "clv-parachain": 1024, "bittorrent-chain-testnet": 1028, @@ -2043,7 +2044,7 @@ export const NETWORKS = { "mintara-mainnet": 1080, "humans.ai-mainnet": 1089, "moac-mainnet": 1099, - dymension: 1100, + "dymension": 1100, "polygon-zkevm": 1101, "blxq-testnet": 1107, "blxq-mainnet": 1108, @@ -2056,9 +2057,9 @@ export const NETWORKS = { "defichain-evm-network-mainnet": 1130, "defichain-evm-network-testnet": 1131, "defimetachain-changi-testnet": 1133, - lisk: 1135, + "lisk": 1135, "amstar-testnet": 1138, - mathchain: 1139, + "mathchain": 1139, "mathchain-testnet": 1140, "flag-testnet": 1147, "symplexia-smart-chain": 1149, @@ -2085,7 +2086,7 @@ export const NETWORKS = { "cic-chain-testnet": 1252, "halo-mainnet": 1280, "moonbase-alpha": 1287, - moonrock: 1288, + "moonrock": 1288, "swisstronik-testnet": 1291, "dos-fuji-subnet": 1311, "alyx-mainnet": 1314, @@ -2119,10 +2120,10 @@ export const NETWORKS = { "beagle-messaging-chain": 1515, "ethereum-inscription-mainnet": 1617, "catecoin-chain-mainnet": 1618, - atheios: 11235813, + "atheios": 11235813, "gravity-alpha-mainnet": 1625, - btachain: 1657, - liquichain: 1662, + "btachain": 1657, + "liquichain": 1662, "horizen-gobi-testnet": 1663, "mint-testnet": 1686, "mint-sepolia-testnet": 1687, @@ -2135,16 +2136,16 @@ export const NETWORKS = { "reya-network": 1729, "metal-l2-testnet": 1740, "metal-l2": 1750, - partychain: 1773, + "partychain": 1773, "gauss-mainnet": 1777, "zkbase-sepolia-testnet": 1789, - kerleano: 1804, + "kerleano": 1804, "rabbit-analog-testnet-chain": 1807, "cube-chain-mainnet": 1818, "cube-chain-testnet": 1819, "ruby-smart-chain-mainnet": 1821, - teslafunds: 1, - whitechain: 1875, + "teslafunds": 1, + "whitechain": 1875, "gitshock-cartenz-testnet": 1881, "lightlink-phoenix-mainnet": 1890, "lightlink-pegasus-testnet": 1891, @@ -2153,7 +2154,7 @@ export const NETWORKS = { "bitcichain-mainnet": 1907, "bitcichain-testnet": 1908, "merkle-scan": 1909, - scalind: 1911, + "scalind": 1911, "ruby-smart-chain-testnet": 1912, "upb-crescdi-testnet": 1918, "onus-chain-testnet": 1945, @@ -2162,30 +2163,30 @@ export const NETWORKS = { "dexilla-testnet": 1954, "aiw3-testnet": 1956, "selendra-network-mainnet": 1961, - eleanor: 1967, + "eleanor": 1967, "super-smart-chain-testnet": 1969, "super-smart-chain-mainnet": 1970, - atelier: 1971, - redecoin: 1972, + "atelier": 1971, + "redecoin": 1972, "eurus-testnet": 1984, - satoshie: 1985, + "satoshie": 1985, "satoshie-testnet": 1986, - ethergem: 1987, + "ethergem": 1987, "hubble-exchange": 1992, - ekta: 1994, + "ekta": 1994, "edexa-testnet": 1995, - sanko: 1996, - kyoto: 1997, + "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, + "panarchy": 1, "now-chain": 2014, "mainnetz-mainnet": 2016, - adiri: 2017, + "adiri": 2017, "publicmint-devnet": 2018, "publicmint-testnet": 2019, "publicmint-mainnet": 2020, @@ -2195,21 +2196,21 @@ export const NETWORKS = { "swan-saturn-testnet": 2024, "rangers-protocol-mainnet": 2025, "edgeless-network": 2026, - centrifuge: 2031, - catalyst: 2032, + "centrifuge": 2031, + "catalyst": 2032, "phala-network": 2035, "kiwi-subnet": 2037, "shrapnel-testnet": 2038, "aleph-zero-testnet": 2039, "vanar-mainnet": 2040, - neuroweb: 2043, + "neuroweb": 2043, "shrapnel-subnet": 2044, "aiw3-mainnet": 2045, "stratos-testnet": 2047, - stratos: 2048, + "stratos": 2048, "movo-smart-chain-mainnet": 2049, "quokkacoin-mainnet": 2077, - altair: 2088, + "altair": 2088, "ecoball-mainnet": 2100, "ecoball-testnet-espuma": 2101, "exosama-network": 2109, @@ -2218,7 +2219,7 @@ export const NETWORKS = { "metaplayerone-mainnet": 2122, "metaplayerone-dubai-testnet": 2124, "bigshortbets-testnet": 2136, - bigshortbets: 2137, + "bigshortbets": 2137, "defi-oracle-meta-testnet": 21, "oneness-network": 2140, "oneness-testnet": 2141, @@ -2235,9 +2236,9 @@ export const NETWORKS = { "krest-network": 2241, "bomb-chain": 2300, "ebro-network": 2306, - arevia: 2309, + "arevia": 2309, "soma-network-testnet": 2323, - altcoinchain: 2330, + "altcoinchain": 2330, "rss3-vsl-sepolia-testnet": 2331, "soma-network-mainnet": 2332, "atleta-olympia": 2340, @@ -2248,7 +2249,7 @@ export const NETWORKS = { "bomb-chain-testnet": 2399, "tcg-verse-mainnet": 2400, "karak-mainnet": 2410, - xodex: 10, + "xodex": 10, "king-of-legends-devnet": 2425, "polygon-zkevm-cardona-testnet": 2442, "hybrid-chain-network-testnet": 2458, @@ -2258,23 +2259,23 @@ export const NETWORKS = { "inevm-mainnet": 2525, "kortho-mainnet": 2559, "techpay-mainnet": 2569, - pocrnet: 2606, + "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, + "apex": 2662, "morph-testnet": 2710, "k-laos": 2718, "xr-sepolia": 2730, "elizabeth-testnet": 2731, - nanon: 2748, + "nanon": 2748, "gm-network-mainnet": 2777, "morph-holesky": 2810, "elux-chain": 2907, - hychain: 2911, + "hychain": 2911, "xenon-chain-testnet": 2941, "bityuan-mainnet": 2999, "cennznet-rata": 3000, @@ -2300,12 +2301,12 @@ export const NETWORKS = { "evolve-mainnet": 3424, "securechain-testnet": 3434, "layeredge-testnet": 3456, - gtcscan: 3490, + "gtcscan": 3490, "paribu-net-testnet": 3500, "jfin-chain": 3501, "pandoproject-mainnet": 3601, "pandoproject-testnet": 3602, - tycooncoin: 3630, + "tycooncoin": 3630, "botanix-testnet": 3636, "botanix-mainnet": 3637, "ichain-network": 3639, @@ -2315,7 +2316,7 @@ export const NETWORKS = { "empire-network": 3693, "senjepowers-testnet": 3698, "senjepowers-mainnet": 3699, - crossbell: 3737, + "crossbell": 3737, "astar-zkevm": 3776, "alveychain-mainnet": 3797, "tangle-testnet": 3799, @@ -2380,8 +2381,8 @@ export const NETWORKS = { "charmverse-testnet": 5104, "superloyalty-testnet": 5105, "azra-testnet": 5106, - ham: 5112, - bahamut: 5165, + "ham": 5112, + "bahamut": 5165, "smart-layer-network": 5169, "tlchain-network-mainnet": 5177, "eraswap-mainnet": 5197, @@ -2392,7 +2393,7 @@ export const NETWORKS = { "tritanium-testnet": 5353, "settlus-testnet": 5372, "edexa-mainnet": 5424, - egochain: 5439, + "egochain": 5439, "vex-evm-testnet": 5522, "chain-verse-mainnet": 5555, "opbnb-testnet": 5611, @@ -2404,8 +2405,8 @@ export const NETWORKS = { "syscoin-tanenbaum-testnet": 5700, "hika-network-testnet": 5729, "satoshichain-testnet": 5758, - ganache: 5777, - tangle: 5845, + "ganache": 5777, + "tangle": 5845, "ontology-testnet": 5851, "wegochain-rubidium-mainnet": 5869, "bouncebit-testnet": 6000, @@ -2414,35 +2415,35 @@ export const NETWORKS = { "tres-mainnet": 6066, "cascadia-testnet": 6102, "uptn-testnet": 6118, - uptn: 6119, + "uptn": 6119, "aura-euphoria-testnet": 6321, "aura-mainnet": 6322, "digit-soul-smart-chain": 6363, - peerpay: 6502, + "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, + "irishub": 6688, "ox-chain": 6699, "paxb-mainnet": 6701, "compverse-mainnet": 6779, "gold-smart-chain-mainnet": 6789, "pools-mainnet": 6868, - polysmartchain: 6999, + "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, + "nume": 7100, "help-the-homeless": 7118, "bitrock-mainnet": 7171, "xpla-verse": 7300, - klyntar: 7331, + "klyntar": 7331, "horizen-eon-mainnet": 7332, "shyft-mainnet": 7341, "raba-network-mainnet": 7484, @@ -2465,7 +2466,7 @@ export const NETWORKS = { "dot-blox": 7923, "mo-mainnet": 7924, "dos-chain": 7979, - teleport: 8000, + "teleport": 8000, "teleport-testnet": 8001, "mdgl-testnet": 8029, "boat-mainnet": 8047, @@ -2479,16 +2480,16 @@ export const NETWORKS = { "qitmeer-network-testnet": 8131, "qitmeer-network-mixnet": 8132, "qitmeer-network-privnet": 8133, - amana: 8134, - flana: 8135, - mizana: 8136, + "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, + "korthotest": 8285, + "lorenzo": 8329, "dracones-financial-services": 8387, "toki-network": 8654, "toki-testnet": 8655, @@ -2502,21 +2503,21 @@ export const NETWORKS = { "iota-evm": 8822, "hydra-chain-testnet": 8844, "maro-blockchain-mainnet": 8848, - superlumio: 8866, - unique: 8880, + "superlumio": 8866, + "unique": 8880, "quartz-by-unique": 8881, "opal-testnet-by-unique": 8882, "sapphire-by-unique": 8883, - xanachain: 8888, + "xanachain": 8888, "vyvo-smart-chain": 8889, "orenium-testnet-protocol": 8890, "mammoth-mainnet": 8898, - algen: 8911, + "algen": 8911, "algen-testnet": 8912, "algen-layer2": 8921, "algen-layer2-testnet": 8922, "giant-mammoth-mainnet": 8989, - bloxberg: 8995, + "bloxberg": 8995, "evmos-testnet": 9000, "shido-testnet-block": 9007, "shido-mainnet-block": 9008, @@ -2554,11 +2555,11 @@ export const NETWORKS = { "smart-bitcoin-cash-testnet": 10001, "gon-chain": 10024, "japan-open-chain-testnet": 10081, - sjatsh: 10086, + "sjatsh": 10086, "blockchain-genesis-mainnet": 10101, "gnosis-chiado-testnet": 10200, "maxxchain-mainnet": 10201, - glscan: 10222, + "glscan": 10222, "arthera-mainnet": 10242, "arthera-testnet": 10243, "0xtade": 10248, @@ -2567,13 +2568,13 @@ export const NETWORKS = { "worldland-testnet": 10395, "numbers-mainnet": 10507, "numbers-testnet": 10508, - cryptocoinpay: 10823, - lamina1: 10849, + "cryptocoinpay": 10823, + "lamina1": 10849, "lamina1-identity": 10850, "quadrans-blockchain": 10946, "quadrans-blockchain-testnet": 10947, - astra: 11110, - wagmi: 11111, + "astra": 11110, + "wagmi": 11111, "astra-testnet": 11115, "hashbit-mainnet": 11119, "shine-chain": 11221, @@ -2586,7 +2587,7 @@ export const NETWORKS = { "artela-testnet": 11822, "polygon-supernet-arianee": 11891, "satoshichain-mainnet": 12009, - aternos: 12020, + "aternos": 12020, "singularity-zero-testnet": 12051, "singularity-zero-mainnet": 12052, "brc-chain-mainnet": 12123, @@ -2600,16 +2601,16 @@ export const NETWORKS = { "playdapp-testnet": 12781, "quantum-chain-testnet": 12890, "playfair-testnet-subnet": 12898, - sps: 13000, + "sps": 13000, "credit-smart-chain": 13308, "beam-testnet": 13337, "immutable-zkevm": 13371, "phoenix-mainnet": 13381, - masa: 13396, + "masa": 13396, "immutable-zkevm-testnet": 13473, "gravity-alpha-testnet-sepolia": 13505, "kronobit-mainnet": 13600, - susono: 13812, + "susono": 13812, "sps-testnet": 14000, "evolve-testnet": 14324, "vitruveo-testnet": 14333, @@ -2627,7 +2628,7 @@ export const NETWORKS = { "irishub-testnet": 16688, "airdao-mainnet": 16718, "ivar-chain-testnet": 16888, - holesky: 17000, + "holesky": 17000, "garnet-holesky": 17069, "defiverse-testnet": 17117, "g8chain-mainnet": 17171, @@ -2639,7 +2640,7 @@ export const NETWORKS = { "smart-trade-networks": 18122, "proof-of-memes": 18159, "g8chain-testnet": 18181, - unreal: 18233, + "unreal": 18233, "mxc-zkevm-moonchain": 18686, "titan-(tkx)": 18888, "titan-(tkx)-testnet": 18889, @@ -2654,14 +2655,14 @@ export const NETWORKS = { "callisto-testnet": 79, "p12-chain": 20736, "jono11-subnet": 20765, - c4ei: 21004, + "c4ei": 21004, "all-about-healthy": 21133, "dcpay-mainnet": 21223, "dcpay-testnet": 21224, "cennznet-azalea": 21337, "omchain-mainnet": 21816, "bsl-mainnet": 21912, - taycan: 22023, + "taycan": 22023, "airdao-testnet": 22040, "nautilus-mainnet": 22222, "goldxchain-testnet": 22324, @@ -2673,7 +2674,7 @@ export const NETWORKS = { "dreyerx-mainnet": 23451, "dreyerx-testnet": 23452, "blast-testnet": 23888, - webchain: 37129, + "webchain": 37129, "mintme.com-coin": 37480, "liquidlayer-mainnet": 25186, "alveychain-testnet": 25839, @@ -2715,18 +2716,18 @@ export const NETWORKS = { "aves-mainnet": 33333, "zilliqa-evm-devnet": 33385, "zilliqa-2-evm-devnet": 33469, - funki: 33979, - mode: 34443, + "funki": 33979, + "mode": 34443, "j2o-taro": 35011, "q-mainnet": 35441, "q-testnet": 35443, - connectormanager: 38400, + "connectormanager": 38400, "connectormanager-robin": 38401, "prm-mainnet": 39656, "energi-mainnet": 39797, "oho-mainnet": 39815, "opulent-x-beta": 41500, - pegglecoin: 42069, + "pegglecoin": 42069, "agentlayer-testnet": 42072, "arbitrum-nova": 42170, "oasis-emerald-testnet": 42261, @@ -2735,11 +2736,11 @@ export const NETWORKS = { "etherlink-mainnet": 42793, "gesoten-verse-testnet": 42801, "kinto-testnet": 42888, - athereum: 43110, + "athereum": 43110, "hemi-network": 43111, "avalanche-fuji-testnet": 1, "zkfair-testnet": 43851, - frenchain: 44444, + "frenchain": 44444, "quantum-network": 44445, "celo-alfajores-testnet": 44787, "autobahn-network": 45000, @@ -2759,14 +2760,14 @@ export const NETWORKS = { "lumoz-testnet-alpha": 51178, "sardis-mainnet": 51712, "electroneum-mainnet": 52014, - doid: 53277, + "doid": 53277, "superseed-sepolia-testnet": 53302, "dodochain-testnet": 53457, "dfk-chain": 53935, "haqq-chain-testnet": 54211, "toronet-testnet": 54321, "photon-testnet": 54555, - titan: 55004, + "titan": 55004, "rei-chain-testnet": 55556, "lambda-chain-mainnet": 56026, "boba-bnb-mainnet": 56288, @@ -2783,8 +2784,8 @@ export const NETWORKS = { "thinkium-testnet-chain-1": 60001, "thinkium-testnet-chain-2": 60002, "thinkium-testnet-chain-103": 60103, - bob: 60808, - kaichain: 61406, + "bob": 60808, + "kaichain": 61406, "axelchain-dev-net": 61800, "etica-mainnet": 61803, "doken-super-chain-mainnet": 61916, @@ -2800,13 +2801,13 @@ export const NETWORKS = { "janus-testnet": 66988, "cosmic-chain": 3344, "dm2-verse-mainnet": 68770, - condrieu: 69420, + "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, + "guapcoinx": 71111, "polyjuice-testnet": 1, "godwoken-testnet-v1": 71401, "caga-crypto-ankara-testnet": 72778, @@ -2827,10 +2828,10 @@ export const NETWORKS = { "amplify-subnet": 78430, "bulletin-subnet": 78431, "conduit-subnet": 78432, - vanguard: 78600, + "vanguard": 78600, "gold-smart-chain-testnet": 79879, - mumbai: 80001, - amoy: 80002, + "mumbai": 80001, + "amoy": 80002, "berachain-bartio": 80084, "berachain-artio": 80085, "hizoco-mainnet": 80096, @@ -2844,14 +2845,14 @@ export const NETWORKS = { "mizana-testnet": 81361, "mizana-mixnet": 81362, "mizana-privnet": 81363, - blast: 81457, + "blast": 81457, "quantum-chain-mainnet": 81720, "smart-layer-network-testnet": 82459, - zedxion: 83872, + "zedxion": 83872, "base-goerli-testnet": 84531, "base-sepolia-testnet": 84532, "aerie-network": 84886, - cybertrust: 48501, + "cybertrust": 48501, "nautilus-proteus-testnet": 88002, "inoai-network": 88559, "unit-zero-testnet": 88817, @@ -2882,12 +2883,12 @@ export const NETWORKS = { "quarkchain-mainnet-shard-5": 100006, "quarkchain-mainnet-shard-6": 100007, "quarkchain-mainnet-shard-7": 100008, - vechain: 100009, + "vechain": 100009, "vechain-testnet": 100010, "quarkchain-l2-mainnet": 100011, "global-trust-network": 101010, "creditcoin-testnet": 102031, - crystaleum: 1, + "crystaleum": 1, "masa-testnet": 103454, "kaspaclassic-mainnet": 104566, "stratis-mainnet": 105105, @@ -2925,7 +2926,7 @@ export const NETWORKS = { "xfair.ai-testnet": 200000, "milkomeda-c1-testnet": 200101, "milkomeda-a1-testnet": 200202, - akroma: 200625, + "akroma": 200625, "bitlayer-testnet": 200810, "bitlayer-mainnet": 200901, "alaya-mainnet": 1, @@ -2934,7 +2935,7 @@ export const NETWORKS = { "decimal-smart-chain-testnet": 202020, "x1-devnet": 202212, "ymtech-besu-testnet": 202401, - jellie: 202624, + "jellie": 202624, "x1-network": 204005, "auroria-testnet": 205205, "gitagi-atlas-testnet": 210049, @@ -2942,7 +2943,7 @@ export const NETWORKS = { "mas-mainnet": 220315, "reapchain-mainnet": 221230, "reapchain-testnet": 221231, - hydradx: 222222, + "hydradx": 222222, "deepl-mainnet": 222555, "deepl-testnet": 222666, "taf-eco-chain-mainnet": 224168, @@ -2984,7 +2985,7 @@ export const NETWORKS = { "metal-tahoe-c-chain": 381932, "tipboxcoin-mainnet": 404040, "aie-testnet": 413413, - kekchain: 103090, + "kekchain": 103090, "kekchain-(kektest)": 1, "alterium-l2-testnet": 420692, "arbitrum-rinkeby": 421611, @@ -3001,17 +3002,17 @@ export const NETWORKS = { "openchain-mainnet": 474142, "playdapp-network": 504441, "cmp-testnet": 512512, - dischain: 513100, + "dischain": 513100, "docoin-community-chain": 526916, "scroll-sepolia-testnet": 534351, - scroll: 534352, + "scroll": 534352, "shinarium-beta": 534849, "beaneco-smartchain": 535037, "one-world-chain-testnet": 552981, "pentagon-testnet": 555555, "eclipse-testnet": 555666, "hypra-mainnet": 622277, - atlas: 622463, + "atlas": 622463, "bear-network-chain-mainnet": 641230, "all-mainnet": 651940, "open-campus-codex": 656476, @@ -3028,8 +3029,8 @@ export const NETWORKS = { "miexs-smartchain": 761412, "lamina1-testnet": 764984, "lamina1-identity-testnet": 767368, - modularium: 776877, - octaspace: 800001, + "modularium": 776877, + "octaspace": 800001, "biz-smart-chain-testnet": 808080, "zklink-nova-mainnet": 810180, "zklink-nova-sepolia-testnet": 810181, @@ -3038,7 +3039,7 @@ export const NETWORKS = { "curve-mainnet": 827431, "prm-testnet": 839320, "4goodnetwork": 846000, - dodao: 855456, + "dodao": 855456, "blocx-mainnet": 879151, "rexx-mainnet": 888882, "posichain-mainnet-shard-0": 900000, @@ -3050,19 +3051,19 @@ export const NETWORKS = { "jono12-subnet": 955081, "eluvio-content-fabric": 955305, "treasure-ruby": 978657, - forma: 984122, + "forma": 984122, "forma-sketchpad": 984123, "ecrox-chain-mainnet": 988207, "supernet-testnet": 998899, - amchain: 999999, + "amchain": 999999, "netmind-chain-testnet": 1100789, "tiltyard-subnet": 1127469, - zkatana: 1261120, + "zkatana": 1261120, "etho-protocol": 1313114, - xerom: 1313500, - kintsugi: 1337702, - kiln: 1337802, - zhejiang: 1337803, + "xerom": 1313500, + "kintsugi": 1337702, + "kiln": 1337802, + "zhejiang": 1337803, "automata-testnet": 1398243, "playfi-albireo-testnet": 1612127, "xterio-testnet": 1637450, @@ -3089,33 +3090,33 @@ export const NETWORKS = { "safe(anwang)-mainnet": 6666665, "safe(anwang)-testnet": 6666666, "saakuru-mainnet": 7225878, - openvessel: 7355310, + "openvessel": 7355310, "ql1-testnet": 7668378, - musicoin: 7762959, - zora: 7777777, + "musicoin": 7762959, + "zora": 7777777, "plian-mainnet-subchain-1": 8007736, "fhenix-helium": 8008135, - hokum: 8080808, + "hokum": 8080808, "waterfall-8-test-network": 8601152, - hapchain: 8794598, + "hapchain": 8794598, "quarix-testnet": 8888881, - quarix: 8888888, - xcap: 9322252, - milvine: 9322253, + "quarix": 8888888, + "xcap": 9322252, + "milvine": 9322253, "plian-testnet-subchain-1": 10067275, "soverun-mainnet": 10101010, "alienx-hal-testnet": 10241025, - sepolia: 11155111, + "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, + "iolite": 18289463, "stability-testnet": 20180427, "smartmesh-mainnet": 1, - quarkblockchain: 20181205, + "quarkblockchain": 20181205, "pego-network": 20201022, "debank-sepolia-testnet": 20240324, "swan-proxima-testnet": 20241133, @@ -3130,8 +3131,8 @@ export const NETWORKS = { "joys-digital-mainnet": 35855456, "skale-nebula-hub-testnet": 37084624, "kingdom-chain": 39916801, - maistestsubnet: 43214913, - aquachain: 61717561, + "maistestsubnet": 43214913, + "aquachain": 61717561, "autonity-bakerloo-(sumida)-testnet": 65010002, "autonity-piccadilly-(sumida)-testnet": 65100002, "frame-testnet": 68840142, @@ -3145,31 +3146,31 @@ export const NETWORKS = { "plume-testnet": 161221135, "blast-sepolia-testnet": 168587773, "gather-mainnet-network": 192837465, - kanazawa: 222000222, + "kanazawa": 222000222, "neon-evm-devnet": 245022926, "razor-skale-chain": 278611351, "oneledger-mainnet": 311752642, "nal-sepolia-testnet": 328527624, - meld: 333000333, + "meld": 333000333, "gather-testnet-network": 356256156, "gather-devnet-network": 486217935, "degen-chain": 666666666, - ancient8: 888888888, + "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, + "cyberdecknet": 1146703430, "human-protocol": 1273227453, "aurora-testnet": 1313161555, "aurora-betanet": 1313161556, - powergold: 1313161560, + "powergold": 1313161560, "skale-titan-hub": 1350216234, "chaos-(skale-testnet)": 1351057110, "rari-chain-mainnet": 1380012617, - raptorchain: 1380996178, + "raptorchain": 1380996178, "skale-europa-hub-testnet": 1444673419, "skale-nebula-hub": 1482601649, "skale-calypso-hub": 1564830818, @@ -3180,9 +3181,9 @@ export const NETWORKS = { "harmony-devnet-shard-1": 1666900001, "kakarot-sepolia": 1802203764, "rari-chain-testnet": 1918988905, - datahopper: 2021121117, + "datahopper": 2021121117, "skale-europa-hub": 2046399126, - pirl: 3125659152, + "pirl": 3125659152, "oneledger-testnet-frankenstein": 4216137055, "palm-testnet": 11297108099, "gitswarm-test-network": 28872323069, @@ -3193,21299 +3194,10436 @@ export const NETWORKS = { "ntity-mainnet": 197710212030, "haradev-testnet": 197710212031, "gm-network-testnet": 202402181627, - zeniq: 383414847825, + "zeniq": 383414847825, "pdc-mainnet": 666301171999, "molereum-network": 6022140761023, "dchain-testnet": 2713017997578000, - dchain: 2716446429837000, + "dchain": 2716446429837000 } as const; export const NETWORK_EXPLORERS = { "1": [ { - name: "etherscan", - url: "https://etherscan.io", - standard: "EIP3091", + "name": "etherscan", + "url": "https://etherscan.io", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://eth.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "blockscout", + "url": "https://eth.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://ethereum.dex.guru", - icon: "dexguru", - standard: "EIP3091", - }, + "name": "dexguru", + "url": "https://ethereum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], "3": [ { - name: "etherscan", - url: "https://ropsten.etherscan.io", - standard: "EIP3091", - }, + "name": "etherscan", + "url": "https://ropsten.etherscan.io", + "standard": "EIP3091" + } ], "4": [ { - name: "etherscan-rinkeby", - url: "https://rinkeby.etherscan.io", - standard: "EIP3091", - }, + "name": "etherscan-rinkeby", + "url": "https://rinkeby.etherscan.io", + "standard": "EIP3091" + } ], "5": [ { - name: "etherscan-goerli", - url: "https://goerli.etherscan.io", - standard: "EIP3091", + "name": "etherscan-goerli", + "url": "https://goerli.etherscan.io", + "standard": "EIP3091" }, { - name: "blockscout-goerli", - url: "https://eth-goerli.blockscout.com", - icon: "blockscout", - 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", - }, + "name": "Thaichain Explorer", + "url": "https://exp.thaichain.org", + "standard": "EIP3091" + } ], "8": [ { - name: "ubiqscan", - url: "https://ubiqscan.io", - standard: "EIP3091", - }, + "name": "ubiqscan", + "url": "https://ubiqscan.io", + "standard": "EIP3091" + } ], "10": [ { - name: "etherscan", - url: "https://optimistic.etherscan.io", - standard: "EIP3091", + "name": "etherscan", + "url": "https://optimistic.etherscan.io", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://optimism.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "blockscout", + "url": "https://optimism.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://optimism.dex.guru", - icon: "dexguru", - 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": "blockscout", + "url": "https://flare-explorer.flare.network", + "standard": "EIP3091" }, { - name: "flarescan", - url: "https://mainnet.flarescan.com", - standard: "EIP3091", - }, + "name": "flarescan", + "url": "https://mainnet.flarescan.com", + "standard": "EIP3091" + } ], "16": [ { - name: "blockscout", - url: "https://coston-explorer.flare.network", - standard: "EIP3091", + "name": "blockscout", + "url": "https://coston-explorer.flare.network", + "standard": "EIP3091" }, { - name: "flarescan", - url: "https://coston.testnet.flarescan.com", - 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", - }, + "name": "thundercore-blockscout-testnet", + "url": "https://explorer-testnet.thundercore.com", + "standard": "EIP3091" + } ], "19": [ { - name: "blockscout", - url: "https://songbird-explorer.flare.network", - standard: "EIP3091", + "name": "blockscout", + "url": "https://songbird-explorer.flare.network", + "standard": "EIP3091" }, { - name: "flarescan", - url: "https://songbird.flarescan.com", - standard: "EIP3091", - }, + "name": "flarescan", + "url": "https://songbird.flarescan.com", + "standard": "EIP3091" + } ], "20": [ { - name: "elastos esc explorer", - url: "https://esc.elastos.io", - standard: "EIP3091", - }, + "name": "elastos esc explorer", + "url": "https://esc.elastos.io", + "standard": "EIP3091" + } ], "21": [ { - name: "elastos esc explorer", - url: "https://esc-testnet.elastos.io", - standard: "EIP3091", - }, + "name": "elastos esc explorer", + "url": "https://esc-testnet.elastos.io", + "standard": "EIP3091" + } ], "25": [ { - name: "Cronos Explorer", - url: "https://explorer.cronos.org", - standard: "none", - }, + "name": "Cronos Explorer", + "url": "https://explorer.cronos.org", + "standard": "none" + } ], "26": [ { - name: "Genesis L1 testnet explorer", - url: "https://testnet.genesisl1.org", - standard: "none", - }, + "name": "Genesis L1 testnet explorer", + "url": "https://testnet.genesisl1.org", + "standard": "none" + } ], "27": [ { - name: "Shiba Explorer", - url: "https://exp.shibchain.org", - standard: "none", - }, + "name": "Shiba Explorer", + "url": "https://exp.shibchain.org", + "standard": "none" + } ], "29": [ { - name: "Genesis L1 blockchain explorer", - url: "https://explorer.genesisl1.org", - standard: "none", - }, + "name": "Genesis L1 blockchain explorer", + "url": "https://explorer.genesisl1.org", + "standard": "none" + } ], "30": [ { - name: "Rootstock Explorer", - url: "https://explorer.rsk.co", - standard: "EIP3091", + "name": "Rootstock Explorer", + "url": "https://explorer.rsk.co", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://rootstock.blockscout.com", - icon: "blockscout", - 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", - }, + "name": "RSK Testnet Explorer", + "url": "https://explorer.testnet.rsk.co", + "standard": "EIP3091" + } ], "34": [ { - name: "SecureChain Mainnet", - url: "https://explorer.securechain.ai", - standard: "EIP3091", - }, + "name": "SecureChain Mainnet", + "url": "https://explorer.securechain.ai", + "standard": "EIP3091" + } ], "36": [ { - name: "dxscan", - url: "https://dxscan.io", - standard: "EIP3091", - }, + "name": "dxscan", + "url": "https://dxscan.io", + "standard": "EIP3091" + } ], "37": [ { - name: "XPLA Explorer", - url: "https://explorer.xpla.io/mainnet", - standard: "EIP3091", - }, + "name": "XPLA Explorer", + "url": "https://explorer.xpla.io/mainnet", + "standard": "EIP3091" + } ], "39": [ { - icon: "u2u", - name: "U2U Explorer", - url: "https://u2uscan.xyz", - standard: "EIP3091", - }, + "icon": "u2u", + "name": "U2U Explorer", + "url": "https://u2uscan.xyz", + "standard": "EIP3091" + } ], "40": [ { - name: "teloscan", - url: "https://teloscan.io", - standard: "EIP3091", - }, + "name": "teloscan", + "url": "https://teloscan.io", + "standard": "EIP3091" + } ], "41": [ { - name: "teloscan", - url: "https://testnet.teloscan.io", - standard: "EIP3091", - }, + "name": "teloscan", + "url": "https://testnet.teloscan.io", + "standard": "EIP3091" + } ], "42": [ { - name: "Blockscout", - url: "https://explorer.execution.mainnet.lukso.network", - standard: "EIP3091", - }, + "name": "Blockscout", + "url": "https://explorer.execution.mainnet.lukso.network", + "standard": "EIP3091" + } ], "43": [ { - name: "subscan", - url: "https://pangolin.subscan.io", - standard: "EIP3091", - }, + "name": "subscan", + "url": "https://pangolin.subscan.io", + "standard": "EIP3091" + } ], "44": [ { - name: "blockscout", - url: "https://crab-scan.darwinia.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://crab-scan.darwinia.network", + "standard": "EIP3091" + } ], "45": [ { - name: "subscan", - url: "https://pangoro.subscan.io", - standard: "none", - }, + "name": "subscan", + "url": "https://pangoro.subscan.io", + "standard": "none" + } ], "46": [ { - name: "subscan", - url: "https://darwinia.subscan.io", - standard: "EIP3091", - }, + "name": "subscan", + "url": "https://darwinia.subscan.io", + "standard": "EIP3091" + } ], "47": [ { - name: "Acria IntelliChain-Explorer", - url: "https://explorer.acria.ai", - standard: "EIP3091", - }, + "name": "Acria IntelliChain-Explorer", + "url": "https://explorer.acria.ai", + "standard": "EIP3091" + } ], "48": [ { - name: "etmpscan", - url: "https://etmscan.network", - icon: "etmp", - standard: "EIP3091", - }, + "name": "etmpscan", + "url": "https://etmscan.network", + "icon": "etmp", + "standard": "EIP3091" + } ], "49": [ { - name: "etmp", - url: "https://pioneer.etmscan.network", - standard: "EIP3091", - }, + "name": "etmp", + "url": "https://pioneer.etmscan.network", + "standard": "EIP3091" + } ], "50": [ { - name: "xdcscan", - url: "https://xdcscan.io", - icon: "blocksscan", - standard: "EIP3091", + "name": "xdcscan", + "url": "https://xdcscan.io", + "icon": "blocksscan", + "standard": "EIP3091" }, { - name: "blocksscan", - url: "https://xdc.blocksscan.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": "xdcscan", + "url": "https://apothem.xinfinscan.com", + "icon": "blocksscan", + "standard": "EIP3091" }, { - name: "blocksscan", - url: "https://apothem.blocksscan.io", - 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", - }, + "name": "coinexscan", + "url": "https://www.coinex.net", + "standard": "none" + } ], "53": [ { - name: "coinexscan", - url: "https://testnet.coinex.net", - standard: "none", - }, + "name": "coinexscan", + "url": "https://testnet.coinex.net", + "standard": "none" + } ], "54": [ { - name: "Belly Scan", - url: "https://bellyscan.com", - standard: "none", - }, + "name": "Belly Scan", + "url": "https://bellyscan.com", + "standard": "none" + } ], "55": [ { - name: "zyxscan", - url: "https://zyxscan.com", - standard: "none", - }, + "name": "zyxscan", + "url": "https://zyxscan.com", + "standard": "none" + } ], "56": [ { - name: "bscscan", - url: "https://bscscan.com", - standard: "EIP3091", + "name": "bscscan", + "url": "https://bscscan.com", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://bnb.dex.guru", - icon: "dexguru", - 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", - }, + "name": "Syscoin Block Explorer", + "url": "https://explorer.syscoin.org", + "standard": "EIP3091" + } ], "58": [ { - name: "explorer", - url: "https://explorer.ont.io", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.ont.io", + "standard": "EIP3091" + } ], "60": [ { - name: "GoChain Explorer", - url: "https://explorer.gochain.io", - standard: "EIP3091", - }, + "name": "GoChain Explorer", + "url": "https://explorer.gochain.io", + "standard": "EIP3091" + } ], "61": [ { - name: "blockscout-ethereum-classic", - url: "https://etc.blockscout.com", - standard: "EIP3091", + "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-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-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": "etcnetworkinfo-expedition-ethereum-classic", + "url": "https://explorer-expedition.etc-network.info", + "standard": "none" }, { - name: "hebeblock-ethereum-classic", - url: "https://etcerscan.com", - standard: "EIP3091", + "name": "hebeblock-ethereum-classic", + "url": "https://etcerscan.com", + "standard": "EIP3091" }, { - name: "oklink-ethereum-classic", - url: "https://www.oklink.com/etc", - 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", - }, + "name": "tokenview-ethereum-classic", + "url": "https://etc.tokenview.io", + "standard": "EIP3091" + } ], "63": [ { - name: "blockscout-mordor", - url: "https://etc-mordor.blockscout.com", - standard: "EIP3091", + "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", - }, + "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", - }, + "name": "OKLink", + "url": "https://www.oklink.com/okexchain-test", + "standard": "EIP3091" + } ], "66": [ { - name: "OKLink", - url: "https://www.oklink.com/en/okc", - standard: "EIP3091", - }, + "name": "OKLink", + "url": "https://www.oklink.com/en/okc", + "standard": "EIP3091" + } ], "69": [ { - name: "etherscan", - url: "https://kovan-optimistic.etherscan.io", - standard: "EIP3091", - }, + "name": "etherscan", + "url": "https://kovan-optimistic.etherscan.io", + "standard": "EIP3091" + } ], "70": [ { - name: "hooscan", - url: "https://www.hooscan.com", - standard: "EIP3091", - }, + "name": "hooscan", + "url": "https://www.hooscan.com", + "standard": "EIP3091" + } ], "71": [ { - name: "Conflux Scan", - url: "https://evmtestnet.confluxscan.net", - standard: "none", - }, + "name": "Conflux Scan", + "url": "https://evmtestnet.confluxscan.net", + "standard": "none" + } ], "73": [ { - name: "fncy scan", - url: "https://fncyscan.fncy.world", - icon: "fncy", - standard: "EIP3091", - }, + "name": "fncy scan", + "url": "https://fncyscan.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } ], "74": [ { - name: "explorer", - url: "https://explorer.idchain.one", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.idchain.one", + "standard": "EIP3091" + } ], "75": [ { - name: "DSC Explorer Mainnet", - url: "https://explorer.decimalchain.com", - icon: "dsc", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://blockscout.com/poa/sokol", + "icon": "blockscout", + "standard": "EIP3091" + } ], "79": [ { - name: "zenith scan", - url: "https://scan.zenithchain.co", - standard: "EIP3091", - }, + "name": "zenith scan", + "url": "https://scan.zenithchain.co", + "standard": "EIP3091" + } ], "80": [ { - name: "GeneChain Scan", - url: "https://scan.genechain.io", - standard: "EIP3091", - }, + "name": "GeneChain Scan", + "url": "https://scan.genechain.io", + "standard": "EIP3091" + } ], "81": [ { - name: "Block Explorer", - url: "https://explorer.japanopenchain.org", - standard: "EIP3091", - icon: "joc", - }, + "name": "Block Explorer", + "url": "https://explorer.japanopenchain.org", + "standard": "EIP3091", + "icon": "joc" + } ], "82": [ { - name: "Meter Mainnet Scan", - url: "https://scan.meter.io", - standard: "EIP3091", - }, + "name": "Meter Mainnet Scan", + "url": "https://scan.meter.io", + "standard": "EIP3091" + } ], "83": [ { - name: "Meter Testnet Scan", - url: "https://scan-warringstakes.meter.io", - standard: "EIP3091", - }, + "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", - }, + "name": "Linqto Devnet Explorer", + "url": "https://explorer.linqto-dev.com", + "standard": "EIP3091" + } ], "85": [ { - name: "GateScan", - url: "https://www.gatescan.org/testnet", - standard: "EIP3091", - }, + "name": "GateScan", + "url": "https://www.gatescan.org/testnet", + "standard": "EIP3091" + } ], "86": [ { - name: "GateScan", - url: "https://www.gatescan.org", - standard: "EIP3091", - }, + "name": "GateScan", + "url": "https://www.gatescan.org", + "standard": "EIP3091" + } ], "87": [ { - name: "novanetwork", - url: "https://explorer.novanetwork.io", - standard: "EIP3091", - }, + "name": "novanetwork", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } ], "90": [ { - name: "explorer", - url: "https://explorer.garizon.com", - icon: "garizon", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } ], "91": [ { - name: "explorer", - url: "https://explorer.garizon.com", - icon: "garizon", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } ], "92": [ { - name: "explorer", - url: "https://explorer.garizon.com", - icon: "garizon", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } ], "93": [ { - name: "explorer", - url: "https://explorer.garizon.com", - icon: "garizon", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } ], "94": [ { - name: "SwissDLT Explorer", - url: "https://explorer.swissdlt.ch", - icon: "bcts", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Bitkub Chain Explorer", + "url": "https://bkcscan.com", + "standard": "none", + "icon": "bkc" + } ], "97": [ { - name: "bscscan-testnet", - url: "https://testnet.bscscan.com", - standard: "EIP3091", - }, + "name": "bscscan-testnet", + "url": "https://testnet.bscscan.com", + "standard": "EIP3091" + } ], "98": [ { - name: "SIX Scan", - url: "https://sixscan.io/sixnet", - standard: "none", - icon: "six", - }, + "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", - }, + "name": "blockscout", + "url": "https://blockscout.com/poa/core", + "icon": "blockscout", + "standard": "EIP3091" + } ], "100": [ { - name: "gnosisscan", - url: "https://gnosisscan.io", - standard: "EIP3091", + "name": "gnosisscan", + "url": "https://gnosisscan.io", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://gnosis.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "blockscout", + "url": "https://gnosis.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://gnosis.dex.guru", - icon: "dexguru", - standard: "EIP3091", - }, + "name": "dexguru", + "url": "https://gnosis.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], "103": [ { - name: "Worldland Explorer", - url: "https://scan.worldland.foundation", - standard: "EIP3091", - }, + "name": "Worldland Explorer", + "url": "https://scan.worldland.foundation", + "standard": "EIP3091" + } ], "104": [ { - name: "kaibascan", - url: "https://kaibascan.io", - icon: "kaibascan", - standard: "EIP3091", - }, + "name": "kaibascan", + "url": "https://kaibascan.io", + "icon": "kaibascan", + "standard": "EIP3091" + } ], "105": [ { - name: "Web3Games Explorer", - url: "https://explorer-devnet.web3games.org", - standard: "none", - }, + "name": "Web3Games Explorer", + "url": "https://explorer-devnet.web3games.org", + "standard": "none" + } ], "106": [ { - name: "Velas Explorer", - url: "https://evmexplorer.velas.com", - standard: "EIP3091", - }, + "name": "Velas Explorer", + "url": "https://evmexplorer.velas.com", + "standard": "EIP3091" + } ], "107": [ { - name: "nebulatestnet", - url: "https://explorer.novanetwork.io", - standard: "EIP3091", - }, + "name": "nebulatestnet", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } ], "108": [ { - name: "thundercore-viewblock", - url: "https://viewblock.io/thundercore", - standard: "EIP3091", - }, + "name": "thundercore-viewblock", + "url": "https://viewblock.io/thundercore", + "standard": "EIP3091" + } ], "109": [ { - name: "shibariumscan", - url: "https://www.shibariumscan.io", - standard: "none", - }, + "name": "shibariumscan", + "url": "https://www.shibariumscan.io", + "standard": "none" + } ], "112": [ { - name: "blockscout", - url: "https://coinbit-explorer.chain.sbcrypto.app", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://coinbit-explorer.chain.sbcrypto.app", + "icon": "blockscout", + "standard": "EIP3091" + } ], "113": [ { - name: "Dehvo Explorer", - url: "https://explorer.dehvo.com", - standard: "EIP3091", - }, + "name": "Dehvo Explorer", + "url": "https://explorer.dehvo.com", + "standard": "EIP3091" + } ], "114": [ { - name: "blockscout", - url: "https://coston2-explorer.flare.network", - standard: "EIP3091", + "name": "blockscout", + "url": "https://coston2-explorer.flare.network", + "standard": "EIP3091" }, { - name: "flarescan", - url: "https://coston2.testnet.flarescan.com", - 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", - }, + "name": "Uptick Explorer", + "url": "https://evm-explorer.uptick.network", + "icon": "uptick", + "standard": "none" + } ], "118": [ { - name: "arcology", - url: "https://testnet.arcology.network/explorer", - standard: "none", - }, + "name": "arcology", + "url": "https://testnet.arcology.network/explorer", + "standard": "none" + } ], "119": [ { - name: "enulsscan", - url: "https://evmscan.nuls.io", - icon: "enuls", - standard: "EIP3091", - }, + "name": "enulsscan", + "url": "https://evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } ], "120": [ { - name: "enulsscan", - url: "https://beta.evmscan.nuls.io", - icon: "enuls", - standard: "EIP3091", - }, + "name": "enulsscan", + "url": "https://beta.evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } ], "121": [ { - name: "realscan", - url: "https://rclscan.com", - standard: "EIP3091", - }, + "name": "realscan", + "url": "https://rclscan.com", + "standard": "EIP3091" + } ], "122": [ { - name: "blockscout", - url: "https://explorer.fuse.io", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.fuse.io", + "icon": "blockscout", + "standard": "EIP3091" + } ], "125": [ { - name: "OYchain Testnet Explorer", - url: "https://explorer.testnet.oychain.io", - standard: "none", - }, + "name": "OYchain Testnet Explorer", + "url": "https://explorer.testnet.oychain.io", + "standard": "none" + } ], "126": [ { - name: "OYchain Mainnet Explorer", - url: "https://explorer.oychain.io", - standard: "none", - }, + "name": "OYchain Mainnet Explorer", + "url": "https://explorer.oychain.io", + "standard": "none" + } ], "128": [ { - name: "hecoinfo", - url: "https://hecoinfo.com", - standard: "EIP3091", - }, + "name": "hecoinfo", + "url": "https://hecoinfo.com", + "standard": "EIP3091" + } ], "129": [ { - name: "Innovator Explorer", - url: "https://evm.innovatorchain.com", - icon: "blockscout", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://blockscout.bellecour.iex.ec", + "icon": "blockscout", + "standard": "EIP3091" + } ], "135": [ { - name: "alyx testnet scan", - url: "https://testnet.alyxscan.com", - standard: "EIP3091", - }, + "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", - }, + "name": "Deamchain Block Explorer", + "url": "https://scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } ], "137": [ { - name: "polygonscan", - url: "https://polygonscan.com", - standard: "EIP3091", + "name": "polygonscan", + "url": "https://polygonscan.com", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://polygon.dex.guru", - icon: "dexguru", - 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": "Blockscout Explorer", + "url": "https://blockscout.defi-oracle.io", + "standard": "none" }, { - name: "Quorum Explorer", - url: "https://explorer.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", - }, + "name": "wikiwoop", + "url": "https://explorer.wikiwoop.com", + "standard": "EIP3091" + } ], "141": [ { - name: "Belly Scan", - url: "https://testnet.bellyscan.com", - standard: "none", - }, + "name": "Belly Scan", + "url": "https://testnet.bellyscan.com", + "standard": "none" + } ], "144": [ { - name: "Phiscan", - url: "https://phiscan.com", - icon: "phi", - standard: "none", - }, + "name": "Phiscan", + "url": "https://phiscan.com", + "icon": "phi", + "standard": "none" + } ], "145": [ { - name: "blockscout", - url: "https://explorer.soraai.bot", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.soraai.bot", + "icon": "blockscout", + "standard": "EIP3091" + } ], "147": [ { - name: "Flag Mainnet Explorer", - url: "https://flagscan.xyz", - standard: "EIP3091", - }, + "name": "Flag Mainnet Explorer", + "url": "https://flagscan.xyz", + "standard": "EIP3091" + } ], "148": [ { - name: "explorer", - url: "https://explorer.evm.shimmer.network", - icon: "shimmerevm", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "TenetScan Testnet", + "url": "https://testnet.tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } ], "156": [ { - name: "OEScan explorer", - url: "https://testnet.oescan.io", - standard: "EIP3091", - }, + "name": "OEScan explorer", + "url": "https://testnet.oescan.io", + "standard": "EIP3091" + } ], "157": [ { - name: "puppyscan", - url: "https://puppyscan.shib.io", - standard: "none", - }, + "name": "puppyscan", + "url": "https://puppyscan.shib.io", + "standard": "none" + } ], "158": [ { - name: "Rbascan Explorer", - url: "https://rbascan.com", - standard: "EIP3091", - }, + "name": "Rbascan Explorer", + "url": "https://rbascan.com", + "standard": "EIP3091" + } ], "159": [ { - name: "Rbascan Testnet Explorer", - url: "https://testnet.rbascan.com", - standard: "EIP3091", - }, + "name": "Rbascan Testnet Explorer", + "url": "https://testnet.rbascan.com", + "standard": "EIP3091" + } ], "161": [ { - name: "blockscout - evascan", - url: "https://testnet.evascan.io", - standard: "EIP3091", - }, + "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 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 Blockscout", + "url": "https://omni-testnet.blockscout.com", + "standard": "EIP3091" }, { - name: "Omni EVM Explorer on Routescan", - url: "https://testnet.omniscan.network", - 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", - }, + "name": "atoshiscan", + "url": "https://scan.atoverse.info", + "standard": "EIP3091" + } ], "168": [ { - name: "AIOZ Network Explorer", - url: "https://explorer.aioz.network", - standard: "EIP3091", - }, + "name": "AIOZ Network Explorer", + "url": "https://explorer.aioz.network", + "standard": "EIP3091" + } ], "169": [ { - name: "manta-pacific Explorer", - url: "https://pacific-explorer.manta.network", - standard: "EIP3091", - }, + "name": "manta-pacific Explorer", + "url": "https://pacific-explorer.manta.network", + "standard": "EIP3091" + } ], "176": [ { - name: "dcscan", - url: "https://exp.dcnetio.cloud", - standard: "none", - }, + "name": "dcscan", + "url": "https://exp.dcnetio.cloud", + "standard": "none" + } ], "180": [ { - name: "AME Scan", - url: "https://amescan.io", - standard: "EIP3091", - }, + "name": "AME Scan", + "url": "https://amescan.io", + "standard": "EIP3091" + } ], "185": [ { - name: "blockscout", - url: "https://explorer.mintchain.io", - icon: "mint", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.mintchain.io", + "icon": "mint", + "standard": "EIP3091" + } ], "186": [ { - name: "seeleview", - url: "https://seeleview.net", - standard: "none", - }, + "name": "seeleview", + "url": "https://seeleview.net", + "standard": "none" + } ], "188": [ { - name: "Blockmeta", - url: "https://bmc.blockmeta.com", - standard: "none", - }, + "name": "Blockmeta", + "url": "https://bmc.blockmeta.com", + "standard": "none" + } ], "189": [ { - name: "Blockmeta", - url: "https://bmctestnet.blockmeta.com", - standard: "none", - }, + "name": "Blockmeta", + "url": "https://bmctestnet.blockmeta.com", + "standard": "none" + } ], "193": [ { - name: "cemscan", - url: "https://cemscan.com", - standard: "EIP3091", - }, + "name": "cemscan", + "url": "https://cemscan.com", + "standard": "EIP3091" + } ], "195": [ { - name: "OKLink", - url: "https://www.oklink.com/xlayer-test", - standard: "EIP3091", - }, + "name": "OKLink", + "url": "https://www.oklink.com/xlayer-test", + "standard": "EIP3091" + } ], "196": [ { - name: "OKLink", - url: "https://www.oklink.com/xlayer", - standard: "EIP3091", - }, + "name": "OKLink", + "url": "https://www.oklink.com/xlayer", + "standard": "EIP3091" + } ], "197": [ { - name: "blockscout", - url: "https://testnet.neutrinoschain.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.neutrinoschain.com", + "standard": "EIP3091" + } ], "198": [ { - name: "Bitchain Scan", - url: "https://explorer.bitchain.biz", - standard: "EIP3091", - }, + "name": "Bitchain Scan", + "url": "https://explorer.bitchain.biz", + "standard": "EIP3091" + } ], "199": [ { - name: "BitTorrent Chain Explorer", - url: "https://bttcscan.com", - standard: "EIP3091", - }, + "name": "BitTorrent Chain Explorer", + "url": "https://bttcscan.com", + "standard": "EIP3091" + } ], "200": [ { - name: "blockscout", - url: "https://blockscout.com/xdai/arbitrum", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.com/xdai/arbitrum", + "standard": "EIP3091" + } ], "201": [ { - name: "moac testnet explorer", - url: "https://testnet.moac.io", - standard: "none", - }, + "name": "moac testnet explorer", + "url": "https://testnet.moac.io", + "standard": "none" + } ], "202": [ { - name: "Edgeless Explorer", - url: "https://testnet.explorer.edgeless.network", - standard: "EIP3091", - }, + "name": "Edgeless Explorer", + "url": "https://testnet.explorer.edgeless.network", + "standard": "EIP3091" + } ], "204": [ { - name: "opbnbscan", - url: "https://mainnet.opbnbscan.com", - standard: "EIP3091", - }, + "name": "opbnbscan", + "url": "https://mainnet.opbnbscan.com", + "standard": "EIP3091" + } ], "206": [ { - name: "VinuScan Testnet", - url: "https://testnet.vinuscan.com", - icon: "vinuscan-testnet", - standard: "none", - }, + "name": "VinuScan Testnet", + "url": "https://testnet.vinuscan.com", + "icon": "vinuscan-testnet", + "standard": "none" + } ], "207": [ { - name: "VinuScan", - url: "https://vinuscan.com", - icon: "vinuscan", - standard: "none", - }, + "name": "VinuScan", + "url": "https://vinuscan.com", + "icon": "vinuscan", + "standard": "none" + } ], "210": [ { - name: "Bitnet Explorer", - url: "https://btnscan.com", - standard: "EIP3091", - }, + "name": "Bitnet Explorer", + "url": "https://btnscan.com", + "standard": "EIP3091" + } ], "212": [ { - name: "maposcan", - url: "https://testnet.maposcan.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } ], "217": [ { - name: "siriusnet explorer", - url: "https://scan.siriusnet.io", - standard: "none", - }, + "name": "siriusnet explorer", + "url": "https://scan.siriusnet.io", + "standard": "none" + } ], "220": [ { - name: "scalind", - url: "https://explorer-sepolia.scalind.com", - standard: "EIP3091", - }, + "name": "scalind", + "url": "https://explorer-sepolia.scalind.com", + "standard": "EIP3091" + } ], "223": [ { - name: "blockscout", - url: "https://explorer.bsquared.network", - icon: "bsquare", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } ], "224": [ { - name: "Viridis Testnet", - url: "https://testnet.vrd.network", - standard: "EIP3091", - }, + "name": "Viridis Testnet", + "url": "https://testnet.vrd.network", + "standard": "EIP3091" + } ], "225": [ { - name: "blockscout", - url: "https://scan.lachain.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.lachain.io", + "standard": "EIP3091" + } ], "226": [ { - name: "blockscout", - url: "https://scan-test.lachain.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan-test.lachain.io", + "standard": "EIP3091" + } ], "230": [ { - name: "SwapDEX", - url: "https://evm.swapdex.network", - standard: "none", - }, + "name": "SwapDEX", + "url": "https://evm.swapdex.network", + "standard": "none" + } ], "234": [ { - name: "ProtoJumbo", - url: "https://protojumbo.jumbochain.org", - standard: "EIP3091", - }, + "name": "ProtoJumbo", + "url": "https://protojumbo.jumbochain.org", + "standard": "EIP3091" + } ], "236": [ { - name: "Deamchain Testnet Explorer", - url: "https://testnet-scan.deamchain.com", - standard: "EIP3091", - icon: "deam", - }, + "name": "Deamchain Testnet Explorer", + "url": "https://testnet-scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } ], "242": [ { - name: "plgscan", - url: "https://www.plgscan.com", - standard: "EIP3091", - }, + "name": "plgscan", + "url": "https://www.plgscan.com", + "standard": "EIP3091" + } ], "246": [ { - name: "blockscout", - url: "https://explorer.energyweb.org", - standard: "none", - }, + "name": "blockscout", + "url": "https://explorer.energyweb.org", + "standard": "none" + } ], "248": [ { - name: "blockscout", - url: "https://explorer.oasys.games", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.oasys.games", + "standard": "EIP3091" + } ], "250": [ { - name: "ftmscan", - url: "https://ftmscan.com", - icon: "ftmscan", - standard: "EIP3091", + "name": "ftmscan", + "url": "https://ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://fantom.dex.guru", - icon: "dexguru", - standard: "EIP3091", - }, + "name": "dexguru", + "url": "https://fantom.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], "252": [ { - name: "fraxscan", - url: "https://fraxscan.com", - standard: "EIP3091", - }, + "name": "fraxscan", + "url": "https://fraxscan.com", + "standard": "EIP3091" + } ], "255": [ { - name: "blockscout", - url: "https://blockscout.kroma.network", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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": "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", - }, + "name": "blockscout", + "url": "https://explorer.neura-testnet.ankr.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "269": [ { - name: "hscan", - url: "https://hscan.org", - standard: "EIP3091", - }, + "name": "hscan", + "url": "https://hscan.org", + "standard": "EIP3091" + } ], "271": [ { - name: "EgonCoin Mainnet", - url: "https://egonscan.com", - standard: "EIP3091", - }, + "name": "EgonCoin Mainnet", + "url": "https://egonscan.com", + "standard": "EIP3091" + } ], "274": [ { - name: "LaChain Explorer", - url: "https://explorer.lachain.network", - standard: "EIP3091", - }, + "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", - }, + "name": "Cronos zkEVM Testnet Explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", + "standard": "none" + } ], "288": [ { - name: "Bobascan", - url: "https://bobascan.com", - standard: "none", - }, + "name": "Bobascan", + "url": "https://bobascan.com", + "standard": "none" + } ], "291": [ { - name: "orderlyscout", - url: "https://explorer.orderly.network", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "orderlyscout", + "url": "https://explorer.orderly.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], "295": [ { - name: "HashScan", - url: "https://hashscan.io/mainnet", - standard: "EIP3091", + "name": "HashScan", + "url": "https://hashscan.io/mainnet", + "standard": "EIP3091" }, { - name: "Arkhia Explorer", - url: "https://explorer.arkhia.io", - standard: "none", + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" }, { - name: "DragonGlass", - url: "https://app.dragonglass.me", - standard: "none", + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" }, { - name: "Hedera Explorer", - url: "https://hederaexplorer.io", - standard: "none", + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" }, { - name: "Ledger Works Explore", - url: "https://explore.lworks.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": "HashScan", + "url": "https://hashscan.io/testnet", + "standard": "EIP3091" }, { - name: "Arkhia Explorer", - url: "https://explorer.arkhia.io", - standard: "none", + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" }, { - name: "DragonGlass", - url: "https://app.dragonglass.me", - standard: "none", + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" }, { - name: "Hedera Explorer", - url: "https://hederaexplorer.io", - standard: "none", + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" }, { - name: "Ledger Works Explore", - url: "https://explore.lworks.io", - standard: "none", - }, + "name": "Ledger Works Explore", + "url": "https://explore.lworks.io", + "standard": "none" + } ], "297": [ { - name: "HashScan", - url: "https://hashscan.io/previewnet", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "zkCandy Block Explorer", + "url": "https://sepolia.explorer.zkcandy.io", + "icon": "zkcandy", + "standard": "EIP3091" + } ], "303": [ { - name: "neuroscan", - url: "https://testnet.ncnscan.com", - standard: "EIP3091", - }, + "name": "neuroscan", + "url": "https://testnet.ncnscan.com", + "standard": "EIP3091" + } ], "305": [ { - name: "blockscout", - url: "https://explorer.zksats.io", - icon: "zksats", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.zksats.io", + "icon": "zksats", + "standard": "EIP3091" + } ], "307": [ { - name: "Lovely Network Testnet", - url: "https://tscan.lovely.network", - standard: "EIP3091", - }, + "name": "Lovely Network Testnet", + "url": "https://tscan.lovely.network", + "standard": "EIP3091" + } ], "308": [ { - name: "furthscan", - url: "http://furthscan.com", - standard: "EIP3091", - }, + "name": "furthscan", + "url": "http://furthscan.com", + "standard": "EIP3091" + } ], "309": [ { - name: "wyzth", - url: "http://24.199.108.65:4000", - icon: "wyzth", - standard: "EIP3091", - }, + "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", - }, + "name": "Omax Chain Explorer", + "url": "https://omaxray.com", + "icon": "omaxray", + "standard": "EIP3091" + } ], "313": [ { - name: "neuroscan", - url: "https://ncnscan.com", - standard: "EIP3091", - }, + "name": "neuroscan", + "url": "https://ncnscan.com", + "standard": "EIP3091" + } ], "314": [ { - name: "Filfox", - url: "https://filfox.info/en", - standard: "none", + "name": "Filfox", + "url": "https://filfox.info/en", + "standard": "none" }, { - name: "Beryx", - url: "https://beryx.zondax.ch", - standard: "none", + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" }, { - name: "Glif Explorer", - url: "https://explorer.glif.io", - standard: "EIP3091", + "name": "Glif Explorer", + "url": "https://explorer.glif.io", + "standard": "EIP3091" }, { - name: "Dev.storage", - url: "https://dev.storage", - standard: "none", + "name": "Dev.storage", + "url": "https://dev.storage", + "standard": "none" }, { - name: "Filscan", - url: "https://filscan.io", - standard: "none", + "name": "Filscan", + "url": "https://filscan.io", + "standard": "none" }, { - name: "Filscout", - url: "https://filscout.io/en", - standard: "none", - }, + "name": "Filscout", + "url": "https://filscout.io/en", + "standard": "none" + } ], "321": [ { - name: "KCC Explorer", - url: "https://explorer.kcc.io/en", - standard: "EIP3091", - }, + "name": "KCC Explorer", + "url": "https://explorer.kcc.io/en", + "standard": "EIP3091" + } ], "322": [ { - name: "kcc-scan-testnet", - url: "https://scan-testnet.kcc.network", - standard: "EIP3091", - }, + "name": "kcc-scan-testnet", + "url": "https://scan-testnet.kcc.network", + "standard": "EIP3091" + } ], "323": [ { - name: "Blockscout", - url: "https://explorer.cosvm.net", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "w3q-mainnet", + "url": "https://explorer.mainnet.web3q.io", + "standard": "EIP3091" + } ], "335": [ { - name: "ethernal", - url: "https://explorer-test.dfkchain.com", - icon: "ethereum", - standard: "none", - }, + "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": "subscan", + "url": "https://shiden.subscan.io", + "standard": "none", + "icon": "subscan" }, { - name: "blockscout", - url: "https://blockscout.com/shiden", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.com/shiden", + "icon": "blockscout", + "standard": "EIP3091" + } ], "338": [ { - name: "Cronos Testnet Explorer", - url: "https://explorer.cronos.org/testnet", - standard: "none", - }, + "name": "Cronos Testnet Explorer", + "url": "https://explorer.cronos.org/testnet", + "standard": "none" + } ], "345": [ { - name: "tscscan", - url: "https://www.tscscan.io", - icon: "netxscan", - standard: "none", - }, + "name": "tscscan", + "url": "https://www.tscscan.io", + "icon": "netxscan", + "standard": "none" + } ], "361": [ { - name: "Theta Mainnet Explorer", - url: "https://explorer.thetatoken.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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": "blockscout", + "url": "https://scan.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "otterscan", - url: "https://otter.pulsechain.com", - standard: "EIP3091", - }, + "name": "otterscan", + "url": "https://otter.pulsechain.com", + "standard": "EIP3091" + } ], "371": [ { - name: "blockscout", - url: "https://explorer-testnet.theconsta.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "CamDL Testnet Explorer", + "url": "https://explorer.testnet.camdl.gov.kh", + "standard": "EIP3091" + } ], "397": [ { - name: "Near Blocks", - url: "https://nearblocks.io", - standard: "none", - }, + "name": "Near Blocks", + "url": "https://nearblocks.io", + "standard": "none" + } ], "398": [ { - name: "Near blocks", - url: "https://testnet.nearblocks.io", - standard: "none", - }, + "name": "Near blocks", + "url": "https://testnet.nearblocks.io", + "standard": "none" + } ], "399": [ { - name: "N3scan", - url: "https://scan.nativ3.network", - standard: "EIP3091", - }, + "name": "N3scan", + "url": "https://scan.nativ3.network", + "standard": "EIP3091" + } ], "400": [ { - name: "blockscout", - url: "https://testnet.hyperonchain.com", - icon: "hyperonchain", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.hyperonchain.com", + "icon": "hyperonchain", + "standard": "EIP3091" + } ], "401": [ { - name: "OZONE Scan", - url: "https://testnet.ozonescan.io", - standard: "EIP3091", - }, + "name": "OZONE Scan", + "url": "https://testnet.ozonescan.io", + "standard": "EIP3091" + } ], "404": [ { - name: "Syndr L3 Explorer", - url: "https://explorer.syndr.com", - standard: "EIP3091", - }, + "name": "Syndr L3 Explorer", + "url": "https://explorer.syndr.com", + "standard": "EIP3091" + } ], "411": [ { - name: "pepechain explorer", - url: "https://explorer.pepe-chain.vip", - standard: "EIP3091", - }, + "name": "pepechain explorer", + "url": "https://explorer.pepe-chain.vip", + "standard": "EIP3091" + } ], "416": [ { - name: "SX Network Explorer", - url: "https://explorer.sx.technology", - standard: "EIP3091", - }, + "name": "SX Network Explorer", + "url": "https://explorer.sx.technology", + "standard": "EIP3091" + } ], "418": [ { - name: "LaTestnet Explorer", - url: "https://testexplorer.lachain.network", - standard: "EIP3091", - }, + "name": "LaTestnet Explorer", + "url": "https://testexplorer.lachain.network", + "standard": "EIP3091" + } ], "420": [ { - name: "blockscout", - url: "https://optimism-goerli.blockscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://optimism-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "422": [ { - name: "Viridis Mainnet", - url: "https://explorer.vrd.network", - standard: "EIP3091", - }, + "name": "Viridis Mainnet", + "url": "https://explorer.vrd.network", + "standard": "EIP3091" + } ], "424": [ { - name: "blockscout", - url: "https://explorer.publicgoods.network", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], "427": [ { - name: "Zeeth Explorer", - url: "https://explorer.zeeth.io", - standard: "none", - }, + "name": "Zeeth Explorer", + "url": "https://explorer.zeeth.io", + "standard": "none" + } ], "428": [ { - name: "Geso Verse Explorer", - url: "https://explorer.verse.gesoten.com", - standard: "EIP3091", - }, + "name": "Geso Verse Explorer", + "url": "https://explorer.verse.gesoten.com", + "standard": "EIP3091" + } ], "434": [ { - name: "Boyaa explorer", - url: "https://explorer.mainnet.boyaa.network", - standard: "EIP3091", - }, + "name": "Boyaa explorer", + "url": "https://explorer.mainnet.boyaa.network", + "standard": "EIP3091" + } ], "443": [ { - name: "Ten Sepolia Rollup Explorer", - url: "https://tenscan.io", - standard: "none", - }, + "name": "Ten Sepolia Rollup Explorer", + "url": "https://tenscan.io", + "standard": "none" + } ], "444": [ { - name: "Synapse Chain Sepolia", - url: "https://sepolia.synapsescan.com", - standard: "EIP3091", - }, + "name": "Synapse Chain Sepolia", + "url": "https://sepolia.synapsescan.com", + "standard": "EIP3091" + } ], "456": [ { - name: "ARZIO Scan", - url: "https://scan.arzio.co", - standard: "EIP3091", - }, + "name": "ARZIO Scan", + "url": "https://scan.arzio.co", + "standard": "EIP3091" + } ], "462": [ { - name: "AreonScan", - url: "https://areonscan.com", - standard: "none", - }, + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } ], "463": [ { - name: "AreonScan", - url: "https://areonscan.com", - standard: "none", - }, + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } ], "500": [ { - name: "blockexplorer", - url: "https://suite.camino.network/explorer", - standard: "none", - }, + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } ], "501": [ { - name: "blockexplorer", - url: "https://suite.camino.network/explorer", - standard: "none", - }, + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } ], "512": [ { - name: "aacscan", - url: "https://scan.acuteangle.com", - standard: "EIP3091", - }, + "name": "aacscan", + "url": "https://scan.acuteangle.com", + "standard": "EIP3091" + } ], "513": [ { - name: "aacscan-testnet", - url: "https://scan-testnet.acuteangle.com", - standard: "EIP3091", - }, + "name": "aacscan-testnet", + "url": "https://scan-testnet.acuteangle.com", + "standard": "EIP3091" + } ], "520": [ { - name: "xscscan", - url: "https://xscscan.pub", - standard: "EIP3091", - }, + "name": "xscscan", + "url": "https://xscscan.pub", + "standard": "EIP3091" + } ], "530": [ { - name: "FunctionX Explorer", - url: "https://fx-evm.functionx.io", - standard: "EIP3091", - }, + "name": "FunctionX Explorer", + "url": "https://fx-evm.functionx.io", + "standard": "EIP3091" + } ], "534": [ { - name: "candleexplorer", - url: "https://candleexplorer.com", - standard: "EIP3091", - }, + "name": "candleexplorer", + "url": "https://candleexplorer.com", + "standard": "EIP3091" + } ], "537": [ { - name: "OpTrust explorer", - url: "https://scan.optrust.io", - icon: "optrust", - standard: "none", - }, + "name": "OpTrust explorer", + "url": "https://scan.optrust.io", + "icon": "optrust", + "standard": "none" + } ], "542": [ { - name: "PAWCHAIN Testnet", - url: "https://pawscan.io", - standard: "none", - }, + "name": "PAWCHAIN Testnet", + "url": "https://pawscan.io", + "standard": "none" + } ], "545": [ { - name: "Flow Diver", - url: "https://testnet.flowdiver.io", - standard: "none", - }, + "name": "Flow Diver", + "url": "https://testnet.flowdiver.io", + "standard": "none" + } ], "555": [ { - name: "Vela1 Chain Mainnet Explorer", - url: "https://exp.velaverse.io", - standard: "EIP3091", - }, + "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", - }, + "name": "dogechain testnet explorer", + "url": "https://explorer-testnet.dogechain.dog", + "standard": "EIP3091" + } ], "570": [ { - name: "Rollux Explorer", - url: "https://explorer.rollux.com", - standard: "EIP3091", - }, + "name": "Rollux Explorer", + "url": "https://explorer.rollux.com", + "standard": "EIP3091" + } ], "571": [ { - name: "MetaExplorer", - url: "https://explorer.metatime.com", - standard: "EIP3091", - }, + "name": "MetaExplorer", + "url": "https://explorer.metatime.com", + "standard": "EIP3091" + } ], "579": [ { - name: "filenova explorer", - url: "https://scan.filenova.org", - icon: "filenova", - standard: "none", - }, + "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": "subscan", + "url": "https://astar.subscan.io", + "standard": "none", + "icon": "subscan" }, { - name: "blockscout", - url: "https://blockscout.com/astar", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.com/astar", + "icon": "blockscout", + "standard": "EIP3091" + } ], "595": [ { - name: "blockscout", - url: "https://blockscout.mandala.aca-staging.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.mandala.aca-staging.network", + "standard": "EIP3091" + } ], "596": [ { - name: "blockscout", - url: "https://blockscout.karura-testnet.aca-staging.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Vine Explorer", + "url": "https://vne.network/rose", + "standard": "none", + "icon": "vine" + } ], "612": [ { - name: "EIOB Explorer", - url: "https://explorer.eiob.xyz", - standard: "none", - }, + "name": "EIOB Explorer", + "url": "https://explorer.eiob.xyz", + "standard": "none" + } ], "614": [ { - name: "GLQ Explorer", - url: "https://explorer.graphlinq.io", - standard: "none", - }, + "name": "GLQ Explorer", + "url": "https://explorer.graphlinq.io", + "standard": "none" + } ], "634": [ { - name: "avoscan", - url: "https://avoscan.co", - icon: "avocado", - standard: "none", - }, + "name": "avoscan", + "url": "https://avoscan.co", + "icon": "avocado", + "standard": "none" + } ], "646": [ { - name: "Flow Diver", - url: "https://previewnet.flowdiver.io", - standard: "none", - }, + "name": "Flow Diver", + "url": "https://previewnet.flowdiver.io", + "standard": "none" + } ], "647": [ { - name: "SX Network Toronto Explorer", - url: "https://explorer.toronto.sx.technology", - standard: "EIP3091", - }, + "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", - }, + "name": "Endurance Scan", + "url": "https://explorer.endurance.fusionist.io", + "standard": "EIP3091" + } ], "653": [ { - name: "kalichain explorer", - url: "https://explorer.kalichain.com", - standard: "EIP3091", - }, + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } ], "654": [ { - name: "kalichain explorer", - url: "https://explorer.kalichain.com", - standard: "EIP3091", - }, + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } ], "662": [ { - name: "ultronsmartchain explorer", - url: "https://scan.ultronsmartchain.io", - standard: "EIP3091", - }, + "name": "ultronsmartchain explorer", + "url": "https://scan.ultronsmartchain.io", + "standard": "EIP3091" + } ], "667": [ { - name: "blockscout", - url: "https://arrakis.gorengine.com", - icon: "laos", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://arrakis.gorengine.com", + "icon": "laos", + "standard": "EIP3091" + } ], "668": [ { - name: "JuncaScan", - url: "https://scan.juncachain.com", - standard: "EIP3091", - }, + "name": "JuncaScan", + "url": "https://scan.juncachain.com", + "standard": "EIP3091" + } ], "669": [ { - name: "JuncaScan", - url: "https://scan-testnet.juncachain.com", - standard: "EIP3091", - }, + "name": "JuncaScan", + "url": "https://scan-testnet.juncachain.com", + "standard": "EIP3091" + } ], "686": [ { - name: "blockscout", - url: "https://blockscout.karura.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.karura.network", + "standard": "EIP3091" + } ], "690": [ { - name: "blockscout", - url: "https://explorer.redstone.xyz", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.redstone.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], "700": [ { - name: "starscan", - url: "https://avastar.info", - standard: "EIP3091", - }, + "name": "starscan", + "url": "https://avastar.info", + "standard": "EIP3091" + } ], "701": [ { - name: "blockscout", - url: "https://koi-scan.darwinia.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://koi-scan.darwinia.network", + "standard": "EIP3091" + } ], "707": [ { - name: "BlockChain Station Explorer", - url: "https://explorer.bcsdev.io", - standard: "EIP3091", - }, + "name": "BlockChain Station Explorer", + "url": "https://explorer.bcsdev.io", + "standard": "EIP3091" + } ], "708": [ { - name: "BlockChain Station Explorer", - url: "https://testnet.bcsdev.io", - standard: "EIP3091", - }, + "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", - }, + "name": "Furya EVM Explorer", + "url": "https://explorer.furya.io", + "standard": "EIP3091", + "icon": "highbury" + } ], "713": [ { - name: "vrcscan", - url: "https://vrcscan.com", - standard: "EIP3091", + "name": "vrcscan", + "url": "https://vrcscan.com", + "standard": "EIP3091" }, { - name: "dxbscan", - url: "https://dxb.vrcscan.com", - standard: "EIP3091", - }, + "name": "dxbscan", + "url": "https://dxb.vrcscan.com", + "standard": "EIP3091" + } ], "719": [ { - name: "shibscan", - url: "https://puppyscan.shib.io", - standard: "EIP3091", - }, + "name": "shibscan", + "url": "https://puppyscan.shib.io", + "standard": "EIP3091" + } ], "721": [ { - name: "blockscout", - url: "https://explorer.lycanchain.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.lycanchain.com", + "standard": "EIP3091" + } ], "730": [ { - name: "Lovely Network Mainnet", - url: "https://scan.lovely.network", - standard: "EIP3091", - }, + "name": "Lovely Network Mainnet", + "url": "https://scan.lovely.network", + "standard": "EIP3091" + } ], "741": [ { - name: "ventionscan", - url: "https://testnet.ventionscan.io", - standard: "EIP3091", - }, + "name": "ventionscan", + "url": "https://testnet.ventionscan.io", + "standard": "EIP3091" + } ], "742": [ { - name: "Script Explorer", - url: "https://explorer.script.tv", - standard: "none", - }, + "name": "Script Explorer", + "url": "https://explorer.script.tv", + "standard": "none" + } ], "747": [ { - name: "Flow Diver", - url: "https://flowdiver.io", - standard: "none", - }, + "name": "Flow Diver", + "url": "https://flowdiver.io", + "standard": "none" + } ], "766": [ { - name: "QL1 Mainnet Explorer", - url: "https://mainnet.qom.one", - icon: "qom", - standard: "EIP3091", - }, + "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", - }, + "name": "OPEN CHAIN TESTNET", + "url": "https://testnet.openchain.info", + "standard": "none" + } ], "786": [ { - name: "maalscan", - url: "https://maalscan.io", - standard: "EIP3091", - }, + "name": "maalscan", + "url": "https://maalscan.io", + "standard": "EIP3091" + } ], "787": [ { - name: "blockscout", - url: "https://blockscout.acala.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.acala.network", + "standard": "EIP3091" + } ], "788": [ { - name: "aeroscan", - url: "https://testnet.aeroscan.id", - standard: "EIP3091", - }, + "name": "aeroscan", + "url": "https://testnet.aeroscan.id", + "standard": "EIP3091" + } ], "789": [ { - name: "patexscan", - url: "https://patexscan.io", - icon: "patex", - standard: "EIP3091", - }, + "name": "patexscan", + "url": "https://patexscan.io", + "icon": "patex", + "standard": "EIP3091" + } ], "799": [ { - name: "rupayascan", - url: "https://scan.testnet.rupaya.io", - standard: "EIP3091", - }, + "name": "rupayascan", + "url": "https://scan.testnet.rupaya.io", + "standard": "EIP3091" + } ], "800": [ { - name: "Lucid Explorer", - url: "https://explorer.lucidcoin.io", - standard: "none", - }, + "name": "Lucid Explorer", + "url": "https://explorer.lucidcoin.io", + "standard": "none" + } ], "810": [ { - name: "Haven1 Explorer", - url: "https://testnet-explorer.haven1.org", - icon: "haven1", - standard: "EIP3091", - }, + "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.qitmeer.io", + "standard": "EIP3091" }, { - name: "meerscan", - icon: "meer", - url: "https://qng.meerscan.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", - }, + "name": "BeOne Chain Mainnet", + "url": "https://beonescan.com", + "standard": "EIP3091" + } ], "822": [ { - name: "RunicScan", - url: "https://scan.runic.build", - icon: "runic-testnet", - standard: "EIP3091", - }, + "name": "RunicScan", + "url": "https://scan.runic.build", + "icon": "runic-testnet", + "standard": "EIP3091" + } ], "831": [ { - name: "CDT Explorer", - url: "https://explorer.checkdot.io", - standard: "none", - }, + "name": "CDT Explorer", + "url": "https://explorer.checkdot.io", + "standard": "none" + } ], "841": [ { - name: "Taraxa Explorer", - url: "https://explorer.mainnet.taraxa.io", - standard: "none", - }, + "name": "Taraxa Explorer", + "url": "https://explorer.mainnet.taraxa.io", + "standard": "none" + } ], "842": [ { - name: "Taraxa Explorer", - url: "https://explorer.testnet.taraxa.io", - standard: "none", - }, + "name": "Taraxa Explorer", + "url": "https://explorer.testnet.taraxa.io", + "standard": "none" + } ], "859": [ { - name: "Zeeth Explorer Dev", - url: "https://explorer.dev.zeeth.io", - standard: "none", - }, + "name": "Zeeth Explorer Dev", + "url": "https://explorer.dev.zeeth.io", + "standard": "none" + } ], "868": [ { - name: "FSCScan", - url: "https://explorer.fantasiachain.com", - standard: "EIP3091", - }, + "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", - }, + "name": "Bandai Namco Research Verse Explorer", + "url": "https://explorer.main.oasvrs.bnken.net", + "standard": "EIP3091" + } ], "877": [ { - name: "dxtscan", - url: "https://dxtscan.com", - standard: "EIP3091", - }, + "name": "dxtscan", + "url": "https://dxtscan.com", + "standard": "EIP3091" + } ], "880": [ { - name: "Ambros Chain Explorer", - url: "https://ambrosscan.com", - standard: "none", - }, + "name": "Ambros Chain Explorer", + "url": "https://ambrosscan.com", + "standard": "none" + } ], "898": [ { - name: "Maxi Chain Testnet Explorer", - url: "https://testnet.maxi.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "TAPROOT Scan", + "url": "https://scan.taprootchain.io", + "icon": "taproot", + "standard": "EIP3091" + } ], "917": [ { - name: "FireScan", - url: "https://rinia.firescan.io", - standard: "EIP3091", - }, + "name": "FireScan", + "url": "https://rinia.firescan.io", + "standard": "EIP3091" + } ], "919": [ { - name: "modescout", - url: "https://sepolia.explorer.mode.network", - standard: "none", - }, + "name": "modescout", + "url": "https://sepolia.explorer.mode.network", + "standard": "none" + } ], "927": [ { - name: "Yidarkscan", - url: "https://yidarkscan.com", - standard: "EIP3091", - }, + "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://scan.v4.testnet.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://otter-testnet-pulsechain.g4mm4.io", - 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", - }, + "name": "Lyra Explorer", + "url": "https://explorer.lyra.finance", + "icon": "lyra", + "standard": "EIP3091" + } ], "963": [ { - name: "blockscout", - url: "https://scan.bitcoincode.technology", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.bitcoincode.technology", + "standard": "EIP3091" + } ], "969": [ { - name: "EthXY Network Explorer", - url: "https://explorer.ethxy.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "EthXY Testnet Network Explorer", + "url": "https://explorer.testnet.ethxy.com", + "standard": "EIP3091" + } ], "980": [ { - name: "topscan.dev", - url: "https://www.topscan.io", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } ], "990": [ { - name: "eLiberty Mainnet", - url: "https://explorer.eliberty.ngo", - standard: "EIP3091", - }, + "name": "eLiberty Mainnet", + "url": "https://explorer.eliberty.ngo", + "standard": "EIP3091" + } ], "997": [ { - name: "5ireChain Explorer", - url: "https://explorer.5ire.network", - standard: "none", - icon: "5ireChain", - }, + "name": "5ireChain Explorer", + "url": "https://explorer.5ire.network", + "standard": "none", + "icon": "5ireChain" + } ], "998": [ { - name: "blockscout", - url: "https://explorer.luckynetwork.org", - standard: "none", + "name": "blockscout", + "url": "https://explorer.luckynetwork.org", + "standard": "none" }, { - name: "expedition", - url: "https://lnscan.org", - standard: "none", - }, + "name": "expedition", + "url": "https://lnscan.org", + "standard": "none" + } ], "1000": [ { - name: "GTON Network Explorer", - url: "https://explorer.gton.network", - standard: "EIP3091", - }, + "name": "GTON Network Explorer", + "url": "https://explorer.gton.network", + "standard": "EIP3091" + } ], "1001": [ { - name: "Klaytnscope", - url: "https://baobab.klaytnscope.com", - standard: "EIP3091", + "name": "Klaytnscope", + "url": "https://baobab.klaytnscope.com", + "standard": "EIP3091" }, { - name: "Klaytnfinder", - url: "https://baobab.klaytnfinder.io", - standard: "EIP3091", - }, + "name": "Klaytnfinder", + "url": "https://baobab.klaytnfinder.io", + "standard": "EIP3091" + } ], "1003": [ { - name: "Tectum explorer", - url: "https://explorer.tectum.io", - icon: "Tettoken256", - standard: "EIP3091", - }, + "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", - }, + "name": "test-ektascan", + "url": "https://test.ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } ], "1008": [ { - name: "eurusexplorer", - url: "https://explorer.eurus.network", - icon: "eurus", - standard: "none", - }, + "name": "eurusexplorer", + "url": "https://explorer.eurus.network", + "icon": "eurus", + "standard": "none" + } ], "1009": [ { - name: "Jumboscan", - url: "https://jumboscan.jumbochain.org", - standard: "EIP3091", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://evm.rebuschain.com", + "icon": "rebus", + "standard": "none" }, { - name: "Rebus Cosmos Explorer (ping.pub)", - url: "https://cosmos.rebuschain.com", - icon: "rebus", - standard: "none", - }, + "name": "Rebus Cosmos Explorer (ping.pub)", + "url": "https://cosmos.rebuschain.com", + "icon": "rebus", + "standard": "none" + } ], "1028": [ { - name: "testbttcscan", - url: "https://testscan.bittorrentchain.io", - standard: "none", - }, + "name": "testbttcscan", + "url": "https://testscan.bittorrentchain.io", + "standard": "none" + } ], "1030": [ { - name: "Conflux Scan", - url: "https://evm.confluxscan.net", - standard: "none", - }, + "name": "Conflux Scan", + "url": "https://evm.confluxscan.net", + "standard": "none" + } ], "1031": [ { - name: "proxy network testnet", - url: "http://testnet-explorer.theproxy.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Bronos Explorer", + "url": "https://broscan.bronos.org", + "standard": "none", + "icon": "bronos" + } ], "1073": [ { - name: "explorer", - url: "https://explorer.evm.testnet.shimmer.network", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } ], "1075": [ { - name: "explorer", - url: "https://explorer.evm.testnet.iotaledger.net", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.evm.testnet.iotaledger.net", + "standard": "EIP3091" + } ], "1079": [ { - name: "explorer", - url: "https://subnets-test.avax.network/mintara", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://subnets-test.avax.network/mintara", + "standard": "EIP3091" + } ], "1080": [ { - name: "explorer", - url: "https://subnets.avax.network/mintara", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://subnets.avax.network/mintara", + "standard": "EIP3091" + } ], "1088": [ { - name: "blockscout", - url: "https://andromeda-explorer.metis.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://andromeda-explorer.metis.io", + "standard": "EIP3091" + } ], "1089": [ { - name: "explorer.guru", - url: "https://humans.explorers.guru", - icon: "humans", - standard: "none", - }, + "name": "explorer.guru", + "url": "https://humans.explorers.guru", + "icon": "humans", + "standard": "none" + } ], "1099": [ { - name: "moac explorer", - url: "https://explorer.moac.io", - standard: "none", - }, + "name": "moac explorer", + "url": "https://explorer.moac.io", + "standard": "none" + } ], "1100": [ { - name: "dym.fyi", - url: "https://dym.fyi", - standard: "EIP3091", - }, + "name": "dym.fyi", + "url": "https://dym.fyi", + "standard": "EIP3091" + } ], "1101": [ { - name: "blockscout", - url: "https://zkevm.polygonscan.com", - icon: "zkevm", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://zkevm.polygonscan.com", + "icon": "zkevm", + "standard": "EIP3091" + } ], "1107": [ { - name: "BLXq Explorer", - url: "https://explorer.blx.org", - icon: "blxq", - standard: "none", - }, + "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", - }, + "name": "BLXq Explorer", + "url": "https://explorer.blxq.org", + "icon": "blxq", + "standard": "EIP3091" + } ], "1111": [ { - name: "WEMIX Block Explorer", - url: "https://explorer.wemix.com", - standard: "EIP3091", - }, + "name": "WEMIX Block Explorer", + "url": "https://explorer.wemix.com", + "standard": "EIP3091" + } ], "1112": [ { - name: "WEMIX Testnet Microscope", - url: "https://microscope.test.wemix.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Core Scan", + "url": "https://scan.coredao.org", + "icon": "core", + "standard": "EIP3091" + } ], "1117": [ { - name: "Dogcoin", - url: "https://explorer.dogcoin.network", - standard: "EIP3091", - }, + "name": "Dogcoin", + "url": "https://explorer.dogcoin.network", + "standard": "EIP3091" + } ], "1123": [ { - name: "blockscout", - url: "https://testnet-explorer.bsquared.network", - icon: "bsquare", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } ], "1133": [ { - name: "MetaScan", - url: "https://meta.defiscan.live", - standard: "EIP3091", - }, + "name": "MetaScan", + "url": "https://meta.defiscan.live", + "standard": "EIP3091" + } ], "1135": [ { - name: "blockscout", - url: "https://blockscout.lisk.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "1138": [ { - name: "amstarscan-testnet", - url: "https://testnet.amstarscan.com", - standard: "EIP3091", - }, + "name": "amstarscan-testnet", + "url": "https://testnet.amstarscan.com", + "standard": "EIP3091" + } ], "1147": [ { - name: "Flag Testnet Explorer", - url: "https://testnet-explorer.flagscan.xyz", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "mosscan", + "url": "https://www.mosscan.com", + "icon": "clubmos", + "standard": "none" + } ], "1197": [ { - name: "ioraexplorer", - url: "https://explorer.iorachain.com", - standard: "EIP3091", - }, + "name": "ioraexplorer", + "url": "https://explorer.iorachain.com", + "standard": "EIP3091" + } ], "1200": [ { - name: "Cuckoo Chain Explorer", - url: "https://mainnet-scan.cuckoo.network", - standard: "EIP3091", - }, + "name": "Cuckoo Chain Explorer", + "url": "https://mainnet-scan.cuckoo.network", + "standard": "EIP3091" + } ], "1202": [ { - name: "WTTScout", - url: "https://explorer.cadaut.com", - standard: "EIP3091", - }, + "name": "WTTScout", + "url": "https://explorer.cadaut.com", + "standard": "EIP3091" + } ], "1209": [ { - name: "Saitascan explorer", - url: "https://saitascan.io", - standard: "none", - icon: "SaitaBlockChain(SBC)", - }, + "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", - }, + "name": "Cuckoo Sepolia Explorer", + "url": "https://testnet-scan.cuckoo.network", + "standard": "EIP3091" + } ], "1213": [ { - name: "popcateum explorer", - url: "https://explorer.popcateum.org", - standard: "none", - }, + "name": "popcateum explorer", + "url": "https://explorer.popcateum.org", + "standard": "none" + } ], "1214": [ { - name: "Enter Explorer - Expenter", - url: "https://explorer.entercoin.net", - icon: "enter", - standard: "EIP3091", - }, + "name": "Enter Explorer - Expenter", + "url": "https://explorer.entercoin.net", + "icon": "enter", + "standard": "EIP3091" + } ], "1225": [ { - name: "Hybrid Testnet", - url: "https://explorer.buildonhybrid.com", - standard: "EIP3091", - }, + "name": "Hybrid Testnet", + "url": "https://explorer.buildonhybrid.com", + "standard": "EIP3091" + } ], "1229": [ { - name: "blockscout", - url: "https://exzoscan.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://exzoscan.io", + "standard": "EIP3091" + } ], "1230": [ { - name: "Ultron Testnet Explorer", - url: "https://explorer.ultron-dev.io", - icon: "ultron", - standard: "none", - }, + "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", - }, + "name": "Ultron Explorer", + "url": "https://ulxscan.com", + "icon": "ultron", + "standard": "none" + } ], "1234": [ { - name: "StepScan", - url: "https://stepscan.io", - icon: "step", - standard: "EIP3091", - }, + "name": "StepScan", + "url": "https://stepscan.io", + "icon": "step", + "standard": "EIP3091" + } ], "1235": [ { - name: "ITX Mainnet Explorer (Blockscout)", - url: "https://explorer.itxchain.com", - standard: "EIP3091", - }, + "name": "ITX Mainnet Explorer (Blockscout)", + "url": "https://explorer.itxchain.com", + "standard": "EIP3091" + } ], "1243": [ { - name: "archiescan", - url: "https://app.archiescan.io", - standard: "none", - }, + "name": "archiescan", + "url": "https://app.archiescan.io", + "standard": "none" + } ], "1244": [ { - name: "archiescan", - url: "https://testnet.archiescan.io", - standard: "none", - }, + "name": "archiescan", + "url": "https://testnet.archiescan.io", + "standard": "none" + } ], "1246": [ { - name: "OMSCAN - Expenter", - url: "https://omscan.omplatform.com", - standard: "none", - }, + "name": "OMSCAN - Expenter", + "url": "https://omscan.omplatform.com", + "standard": "none" + } ], "1248": [ { - name: "DogetherExplorer", - url: "https://explorer.dogether.dog", - standard: "EIP3091", - }, + "name": "DogetherExplorer", + "url": "https://explorer.dogether.dog", + "standard": "EIP3091" + } ], "1252": [ { - name: "CICscan", - url: "https://testnet.cicscan.com", - icon: "cicchain", - standard: "EIP3091", - }, + "name": "CICscan", + "url": "https://testnet.cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } ], "1280": [ { - name: "HALOexplorer", - url: "https://browser.halo.land", - standard: "none", - }, + "name": "HALOexplorer", + "url": "https://browser.halo.land", + "standard": "none" + } ], "1284": [ { - name: "moonscan", - url: "https://moonbeam.moonscan.io", - standard: "none", - }, + "name": "moonscan", + "url": "https://moonbeam.moonscan.io", + "standard": "none" + } ], "1285": [ { - name: "moonscan", - url: "https://moonriver.moonscan.io", - standard: "none", - }, + "name": "moonscan", + "url": "https://moonriver.moonscan.io", + "standard": "none" + } ], "1287": [ { - name: "moonscan", - url: "https://moonbase.moonscan.io", - standard: "none", - }, + "name": "moonscan", + "url": "https://moonbase.moonscan.io", + "standard": "none" + } ], "1291": [ { - name: "Swisstronik Scout", - url: "https://explorer-evm.testnet.swisstronik.com", - standard: "none", - }, + "name": "Swisstronik Scout", + "url": "https://explorer-evm.testnet.swisstronik.com", + "standard": "none" + } ], "1311": [ { - name: "dos-testnet", - url: "https://test.doscan.io", - standard: "EIP3091", - }, + "name": "dos-testnet", + "url": "https://test.doscan.io", + "standard": "EIP3091" + } ], "1314": [ { - name: "alyxscan", - url: "https://www.alyxscan.com", - standard: "EIP3091", - }, + "name": "alyxscan", + "url": "https://www.alyxscan.com", + "standard": "EIP3091" + } ], "1319": [ { - name: "AIA Chain Explorer Mainnet", - url: "https://aiascan.com", - standard: "EIP3091", - }, + "name": "AIA Chain Explorer Mainnet", + "url": "https://aiascan.com", + "standard": "EIP3091" + } ], "1320": [ { - name: "AIA Chain Explorer Testnet", - url: "https://testnet.aiascan.com", - standard: "EIP3091", - }, + "name": "AIA Chain Explorer Testnet", + "url": "https://testnet.aiascan.com", + "standard": "EIP3091" + } ], "1328": [ { - name: "Seitrace", - url: "https://seitrace.com", - standard: "EIP3091", - }, + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } ], "1329": [ { - name: "Seitrace", - url: "https://seitrace.com", - standard: "EIP3091", - }, + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } ], "1338": [ { - name: "Elysium testnet explorer", - url: "https://elysium-explorer.vulcanforged.com", - standard: "none", - }, + "name": "Elysium testnet explorer", + "url": "https://elysium-explorer.vulcanforged.com", + "standard": "none" + } ], "1339": [ { - name: "Elysium mainnet explorer", - url: "https://explorer.elysiumchain.tech", - standard: "none", - }, + "name": "Elysium mainnet explorer", + "url": "https://explorer.elysiumchain.tech", + "standard": "none" + } ], "1343": [ { - name: "BLITZ Explorer", - url: "https://subnets-test.avax.network/blitz", - standard: "EIP3091", - }, + "name": "BLITZ Explorer", + "url": "https://subnets-test.avax.network/blitz", + "standard": "EIP3091" + } ], "1353": [ { - name: "CICscan", - url: "https://cicscan.com", - icon: "cicchain", - standard: "EIP3091", - }, + "name": "CICscan", + "url": "https://cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } ], "1369": [ { - name: "zafirium-explorer", - url: "https://explorer.zakumi.io", - standard: "none", - }, + "name": "zafirium-explorer", + "url": "https://explorer.zakumi.io", + "standard": "none" + } ], "1370": [ { - name: "ramascan", - url: "https://ramascan.com", - icon: "ramestta", - standard: "EIP3091", - }, + "name": "ramascan", + "url": "https://ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } ], "1377": [ { - name: "Pingaksha", - url: "https://pingaksha.ramascan.com", - icon: "ramestta", - standard: "EIP3091", - }, + "name": "Pingaksha", + "url": "https://pingaksha.ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } ], "1379": [ { - name: "kalarscan", - url: "https://explorer.kalarchain.tech", - icon: "kalarscan", - standard: "EIP3091", - }, + "name": "kalarscan", + "url": "https://explorer.kalarchain.tech", + "icon": "kalarscan", + "standard": "EIP3091" + } ], "1388": [ { - name: "amstarscan", - url: "https://mainnet.amstarscan.com", - standard: "EIP3091", - }, + "name": "amstarscan", + "url": "https://mainnet.amstarscan.com", + "standard": "EIP3091" + } ], "1392": [ { - name: "BlockExplorer", - url: "https://www.blockexplorer.com", - standard: "EIP3091", - }, + "name": "BlockExplorer", + "url": "https://www.blockexplorer.com", + "standard": "EIP3091" + } ], "1433": [ { - name: "Rikeza Blockchain explorer", - url: "https://rikscan.com", - standard: "EIP3091", - }, + "name": "Rikeza Blockchain explorer", + "url": "https://rikscan.com", + "standard": "EIP3091" + } ], "1442": [ { - name: "Polygon zkEVM explorer", - url: "https://explorer.public.zkevm-test.net", - standard: "EIP3091", - }, + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } ], "1452": [ { - name: "GIL Explorer", - url: "https://explorer.giltestnet.com", - standard: "EIP3091", - }, + "name": "GIL Explorer", + "url": "https://explorer.giltestnet.com", + "standard": "EIP3091" + } ], "1453": [ { - name: "MetaExplorer", - url: "https://istanbul-explorer.metachain.dev", - standard: "EIP3091", - }, + "name": "MetaExplorer", + "url": "https://istanbul-explorer.metachain.dev", + "standard": "EIP3091" + } ], "1455": [ { - name: "Ctex Scan Explorer", - url: "https://ctexscan.com", - standard: "none", - }, + "name": "Ctex Scan Explorer", + "url": "https://ctexscan.com", + "standard": "none" + } ], "1490": [ { - name: "Vitruveo Explorer", - url: "https://explorer.vitruveo.xyz", - icon: "vitruveo", - standard: "EIP3091", - }, + "name": "Vitruveo Explorer", + "url": "https://explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } ], "1499": [ { - name: "IGC-Scan", - url: "https://igcscan.com", - standard: "EIP3091", - }, + "name": "IGC-Scan", + "url": "https://igcscan.com", + "standard": "EIP3091" + } ], "1501": [ { - name: "bevm canary scan", - url: "https://scan-canary.bevm.io", - standard: "none", - }, + "name": "bevm canary scan", + "url": "https://scan-canary.bevm.io", + "standard": "none" + } ], "1506": [ { - name: "Sherpax Mainnet Explorer", - url: "https://evm.sherpax.io", - standard: "none", - }, + "name": "Sherpax Mainnet Explorer", + "url": "https://evm.sherpax.io", + "standard": "none" + } ], "1507": [ { - name: "Sherpax Testnet Explorer", - url: "https://evm-pre.sherpax.io", - standard: "none", - }, + "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", - }, + "name": "Beagle Messaging Chain Explorer", + "url": "https://eth.beagle.chat", + "standard": "EIP3091" + } ], "1559": [ { - name: "TenetScan Mainnet", - url: "https://tenetscan.io", - icon: "tenet", - standard: "EIP3091", - }, + "name": "TenetScan Mainnet", + "url": "https://tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } ], "1617": [ { - name: "Ethereum Inscription Explorer", - url: "https://explorer.etins.org", - standard: "none", - }, + "name": "Ethereum Inscription Explorer", + "url": "https://explorer.etins.org", + "standard": "none" + } ], "1625": [ { - name: "Gravity Alpha Mainnet Explorer", - url: "https://explorer.gravity.xyz", - standard: "EIP3091", - }, + "name": "Gravity Alpha Mainnet Explorer", + "url": "https://explorer.gravity.xyz", + "standard": "EIP3091" + } ], "1662": [ { - name: "Liquichain Mainnet", - url: "https://mainnet.liquichain.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Anytype Explorer", + "url": "https://explorer.anytype.io", + "icon": "any", + "standard": "EIP3091" + } ], "1707": [ { - name: "blockscout", - url: "https://exp.blockchain.or.th", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://exp.blockchain.or.th", + "standard": "EIP3091" + } ], "1708": [ { - name: "blockscout", - url: "https://exp.testnet.blockchain.or.th", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://exp.testnet.blockchain.or.th", + "standard": "EIP3091" + } ], "1717": [ { - name: "Doric Explorer", - url: "https://explorer.doric.network", - standard: "EIP3091", - }, + "name": "Doric Explorer", + "url": "https://explorer.doric.network", + "standard": "EIP3091" + } ], "1718": [ { - name: "Palettescan", - url: "https://palettescan.com", - icon: "PLT", - standard: "none", - }, + "name": "Palettescan", + "url": "https://palettescan.com", + "icon": "PLT", + "standard": "none" + } ], "1729": [ { - name: "Reya Network Explorer", - url: "https://explorer.reya.network", - standard: "EIP3091", - }, + "name": "Reya Network Explorer", + "url": "https://explorer.reya.network", + "standard": "EIP3091" + } ], "1740": [ { - name: "blockscout", - url: "https://testnet.explorer.metall2.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "1750": [ { - name: "blockscout", - url: "https://explorer.metall2.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "1773": [ { - name: "PartyExplorer", - url: "https://partyexplorer.co", - icon: "grams", - standard: "EIP3091", - }, + "name": "PartyExplorer", + "url": "https://partyexplorer.co", + "icon": "grams", + "standard": "EIP3091" + } ], "1777": [ { - name: "Gauss Explorer", - url: "https://explorer.gaussgang.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://rabbit.analogscan.com", + "standard": "none" + } ], "1818": [ { - name: "cube-scan", - url: "https://cubescan.network", - standard: "EIP3091", - }, + "name": "cube-scan", + "url": "https://cubescan.network", + "standard": "EIP3091" + } ], "1819": [ { - name: "cubetest-scan", - url: "https://testnet.cubescan.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "whitechain-explorer", + "url": "https://explorer.whitechain.io", + "standard": "EIP3091" + } ], "1881": [ { - name: "blockscout", - url: "https://scan.cartenz.works", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.cartenz.works", + "standard": "EIP3091" + } ], "1890": [ { - name: "phoenix", - url: "https://phoenix.lightlink.io", - icon: "lightlink", - standard: "EIP3091", - }, + "name": "phoenix", + "url": "https://phoenix.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } ], "1891": [ { - name: "pegasus", - url: "https://pegasus.lightlink.io", - icon: "lightlink", - standard: "EIP3091", - }, + "name": "pegasus", + "url": "https://pegasus.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } ], "1898": [ { - name: "explorer", - url: "https://explorer.boyanet.org:4001", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.boyanet.org:4001", + "standard": "EIP3091" + } ], "1904": [ { - name: "blockscout", - url: "https://explorer.sportschainnetwork.xyz", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.sportschainnetwork.xyz", + "standard": "EIP3091" + } ], "1907": [ { - name: "Bitci Explorer", - url: "https://bitciexplorer.com", - standard: "EIP3091", - }, + "name": "Bitci Explorer", + "url": "https://bitciexplorer.com", + "standard": "EIP3091" + } ], "1908": [ { - name: "Bitci Explorer Testnet", - url: "https://testnet.bitciexplorer.com", - standard: "EIP3091", - }, + "name": "Bitci Explorer Testnet", + "url": "https://testnet.bitciexplorer.com", + "standard": "EIP3091" + } ], "1909": [ { - name: "blockscout", - url: "https://merklescan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://merklescan.com", + "standard": "none" + } ], "1911": [ { - name: "scalind", - url: "https://explorer.scalind.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "dos-mainnet", + "url": "https://exp.dexilla.com", + "standard": "EIP3091" + } ], "1956": [ { - name: "aiw3 testnet scan", - url: "https://scan-testnet.aiw3.io", - standard: "none", - }, + "name": "aiw3 testnet scan", + "url": "https://scan-testnet.aiw3.io", + "standard": "none" + } ], "1961": [ { - name: "Selendra Scan", - url: "https://scan.selendra.org", - standard: "none", - }, + "name": "Selendra Scan", + "url": "https://scan.selendra.org", + "standard": "none" + } ], "1967": [ { - name: "metaexplorer-eleanor", - url: "https://explorer.metatime.com/eleanor", - standard: "EIP3091", - }, + "name": "metaexplorer-eleanor", + "url": "https://explorer.metatime.com/eleanor", + "standard": "EIP3091" + } ], "1969": [ { - name: "blockscout", - url: "https://testnetscan.scschain.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnetscan.scschain.com", + "standard": "EIP3091" + } ], "1970": [ { - name: "blockscout", - url: "https://scan.scschain.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.scschain.com", + "standard": "EIP3091" + } ], "1972": [ { - name: "RedeCoin Explorer", - url: "https://explorer3.redecoin.eu", - standard: "none", - }, + "name": "RedeCoin Explorer", + "url": "https://explorer3.redecoin.eu", + "standard": "none" + } ], "1975": [ { - name: "Onus explorer mainnet", - url: "https://explorer.onuschain.io", - icon: "onus", - standard: "EIP3091", - }, + "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", - }, + "name": "testnetexplorer", + "url": "https://testnetexplorer.eurus.network", + "icon": "eurus", + "standard": "none" + } ], "1985": [ { - name: "mainnetexplorer", - url: "http://explore.satosh.ie", - icon: "satoshie", - standard: "none", - }, + "name": "mainnetexplorer", + "url": "http://explore.satosh.ie", + "icon": "satoshie", + "standard": "none" + } ], "1986": [ { - name: "testnetexplorer", - url: "http://explore-testnet.satosh.ie", - icon: "satoshie", - standard: "none", - }, + "name": "testnetexplorer", + "url": "http://explore-testnet.satosh.ie", + "icon": "satoshie", + "standard": "none" + } ], "1992": [ { - name: "routescan", - url: "https://explorer.hubble.exchange", - standard: "EIP3091", - }, + "name": "routescan", + "url": "https://explorer.hubble.exchange", + "standard": "EIP3091" + } ], "1994": [ { - name: "ektascan", - url: "https://ektascan.io", - icon: "ekta", - standard: "EIP3091", - }, + "name": "ektascan", + "url": "https://ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } ], "1995": [ { - name: "edexa-testnet", - url: "https://explorer.testnet.edexa.network", - standard: "EIP3091", - }, + "name": "edexa-testnet", + "url": "https://explorer.testnet.edexa.network", + "standard": "EIP3091" + } ], "1996": [ { - name: "Sanko Explorer", - url: "https://explorer.sanko.xyz", - standard: "EIP3091", - }, + "name": "Sanko Explorer", + "url": "https://explorer.sanko.xyz", + "standard": "EIP3091" + } ], "1997": [ { - name: "Kyotoscan", - url: "https://kyotoscan.io", - standard: "EIP3091", - }, + "name": "Kyotoscan", + "url": "https://kyotoscan.io", + "standard": "EIP3091" + } ], "1998": [ { - name: "Kyotoscan", - url: "https://testnet.kyotoscan.io", - standard: "EIP3091", - }, + "name": "Kyotoscan", + "url": "https://testnet.kyotoscan.io", + "standard": "EIP3091" + } ], "2000": [ { - name: "dogechain explorer", - url: "https://explorer.dogechain.dog", - standard: "EIP3091", - }, + "name": "dogechain explorer", + "url": "https://explorer.dogechain.dog", + "standard": "EIP3091" + } ], "2001": [ { - name: "Blockscout", - url: "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", - standard: "none", - }, + "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", - }, + "name": "Blockscout", + "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } ], "2004": [ { - name: "MetaScan", - url: "http://twoto3.com:3000", - standard: "none", - }, + "name": "MetaScan", + "url": "http://twoto3.com:3000", + "standard": "none" + } ], "2008": [ { - name: "CloudWalk Testnet Explorer", - url: "https://explorer.testnet.cloudwalk.io", - standard: "none", - }, + "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", - }, + "name": "CloudWalk Mainnet Explorer", + "url": "https://explorer.mainnet.cloudwalk.io", + "standard": "none" + } ], "2014": [ { - name: "nowscan", - url: "https://nowscan.io", - standard: "EIP3091", - }, + "name": "nowscan", + "url": "https://nowscan.io", + "standard": "EIP3091" + } ], "2016": [ { - name: "MainnetZ", - url: "https://explorer.mainnetz.io", - standard: "EIP3091", - }, + "name": "MainnetZ", + "url": "https://explorer.mainnetz.io", + "standard": "EIP3091" + } ], "2017": [ { - name: "telscan", - url: "https://telscan.io", - icon: "telcoin", - standard: "EIP3091", - }, + "name": "telscan", + "url": "https://telscan.io", + "icon": "telcoin", + "standard": "EIP3091" + } ], "2018": [ { - name: "PublicMint Explorer", - url: "https://explorer.dev.publicmint.io", - standard: "EIP3091", - }, + "name": "PublicMint Explorer", + "url": "https://explorer.dev.publicmint.io", + "standard": "EIP3091" + } ], "2019": [ { - name: "PublicMint Explorer", - url: "https://explorer.tst.publicmint.io", - standard: "EIP3091", - }, + "name": "PublicMint Explorer", + "url": "https://explorer.tst.publicmint.io", + "standard": "EIP3091" + } ], "2020": [ { - name: "PublicMint Explorer", - url: "https://explorer.publicmint.io", - standard: "EIP3091", - }, + "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 EdgeEVM explorer by Bharathcoorg", + "url": "https://edgscan.live", + "standard": "EIP3091" }, { - name: "Edgscan EdgeWASM explorer by Bharathcoorg", - url: "https://edgscan.ink", - standard: "none", - icon: "edgscan", - }, + "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", - }, + "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 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", - }, + "name": "Taycan Cosmos Explorer", + "url": "https://cosmoscan-test.hupayx.io", + "standard": "none", + "icon": "shuffle" + } ], "2025": [ { - name: "rangersscan", - url: "https://scan.rangersprotocol.com", - standard: "none", - }, + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } ], "2026": [ { - name: "Edgeless Explorer", - url: "https://explorer.edgeless.network", - standard: "EIP3091", - }, + "name": "Edgeless Explorer", + "url": "https://explorer.edgeless.network", + "standard": "EIP3091" + } ], "2031": [ { - name: "subscan", - url: "https://centrifuge.subscan.io", - standard: "EIP3091", - icon: "subscan", - }, + "name": "subscan", + "url": "https://centrifuge.subscan.io", + "standard": "EIP3091", + "icon": "subscan" + } ], "2037": [ { - name: "KIWI Explorer", - url: "https://subnets-test.avax.network/kiwi", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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 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", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://web3-explorer.thestratos.org", + "standard": "none" }, { - name: "Stratos Cosmos Explorer (BigDipper)", - url: "https://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", - }, + "name": "movoscan", + "url": "https://movoscan.com", + "icon": "movoscan", + "standard": "none" + } ], "2077": [ { - name: "blockscout", - url: "https://explorer.qkacoin.org", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.qkacoin.org", + "standard": "EIP3091" + } ], "2100": [ { - name: "Ecoball Explorer", - url: "https://scan.ecoball.org", - standard: "EIP3091", - }, + "name": "Ecoball Explorer", + "url": "https://scan.ecoball.org", + "standard": "EIP3091" + } ], "2101": [ { - name: "Ecoball Testnet Explorer", - url: "https://espuma-scan.ecoball.org", - standard: "EIP3091", - }, + "name": "Ecoball Testnet Explorer", + "url": "https://espuma-scan.ecoball.org", + "standard": "EIP3091" + } ], "2109": [ { - name: "blockscout", - url: "https://explorer.exosama.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.exosama.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "2112": [ { - name: "uchain.info", - url: "https://uchain.info", - standard: "EIP3091", - }, + "name": "uchain.info", + "url": "https://uchain.info", + "standard": "EIP3091" + } ], "2121": [ { - name: "catenascan", - url: "https://catenascan.com", - standard: "EIP3091", - }, + "name": "catenascan", + "url": "https://catenascan.com", + "standard": "EIP3091" + } ], "2122": [ { - name: "Metad Scan", - url: "https://scan.metaplayer.one", - icon: "metad", - standard: "EIP3091", - }, + "name": "Metad Scan", + "url": "https://scan.metaplayer.one", + "icon": "metad", + "standard": "EIP3091" + } ], "2124": [ { - name: "MP1Scan", - url: "https://dubai.mp1scan.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Quorum Explorer", + "url": "https://public-2138.defi-oracle.io", + "standard": "none" + } ], "2140": [ { - name: "oneness-mainnet", - url: "https://scan.onenesslabs.io", - standard: "EIP3091", - }, + "name": "oneness-mainnet", + "url": "https://scan.onenesslabs.io", + "standard": "EIP3091" + } ], "2141": [ { - name: "oneness-testnet", - url: "https://scan.testnet.onenesslabs.io", - standard: "EIP3091", - }, + "name": "oneness-testnet", + "url": "https://scan.testnet.onenesslabs.io", + "standard": "EIP3091" + } ], "2151": [ { - name: "BOASCAN", - url: "https://boascan.io", - icon: "agora", - standard: "EIP3091", - }, + "name": "BOASCAN", + "url": "https://boascan.io", + "icon": "agora", + "standard": "EIP3091" + } ], "2152": [ { - name: "findorascan", - url: "https://evm.findorascan.io", - standard: "EIP3091", - }, + "name": "findorascan", + "url": "https://evm.findorascan.io", + "standard": "EIP3091" + } ], "2153": [ { - name: "findorascan", - url: "https://testnet-anvil.evm.findorascan.io", - standard: "EIP3091", - }, + "name": "findorascan", + "url": "https://testnet-anvil.evm.findorascan.io", + "standard": "EIP3091" + } ], "2154": [ { - name: "findorascan", - url: "https://testnet-forge.evm.findorascan.io", - standard: "EIP3091", - }, + "name": "findorascan", + "url": "https://testnet-forge.evm.findorascan.io", + "standard": "EIP3091" + } ], "2199": [ { - name: "blockscout", - url: "https://explorer.moonsama.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.moonsama.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "2202": [ { - name: "Antofy Mainnet", - url: "https://antofyscan.com", - standard: "EIP3091", - }, + "name": "Antofy Mainnet", + "url": "https://antofyscan.com", + "standard": "EIP3091" + } ], "2203": [ { - name: "Explorer", - url: "https://explorer.bitcoinevm.com", - icon: "ebtc", - standard: "none", - }, + "name": "Explorer", + "url": "https://explorer.bitcoinevm.com", + "icon": "ebtc", + "standard": "none" + } ], "2213": [ { - name: "Evanesco Explorer", - url: "https://explorer.evanesco.org", - standard: "none", - }, + "name": "Evanesco Explorer", + "url": "https://explorer.evanesco.org", + "standard": "none" + } ], "2221": [ { - name: "Kava Testnet Explorer", - url: "http://testnet.kavascan.com", - standard: "EIP3091", - icon: "kava", - }, + "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", - }, + "name": "Kava EVM Explorer", + "url": "https://kavascan.com", + "standard": "EIP3091", + "icon": "kava" + } ], "2223": [ { - name: "VChain Scan", - url: "https://scan.vcex.xyz", - standard: "EIP3091", - }, + "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": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", + "standard": "none" }, { - name: "Subscan", - url: "https://krest.subscan.io", - standard: "none", - }, + "name": "Subscan", + "url": "https://krest.subscan.io", + "standard": "none" + } ], "2300": [ { - name: "bombscan", - icon: "bomb", - url: "https://bombscan.com", - standard: "EIP3091", - }, + "name": "bombscan", + "icon": "bomb", + "url": "https://bombscan.com", + "standard": "EIP3091" + } ], "2323": [ { - name: "SOMA Testnet Explorer", - icon: "soma", - url: "https://testnet.somascan.io", - standard: "none", - }, + "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", - }, + "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", - }, + "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", - }, + "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 Explorer", + "icon": "atleta", + "url": "https://blockscout.atleta.network", + "standard": "none" }, { - name: "Atleta Olympia Polka Explorer", - icon: "atleta", - url: "https://polkadot-explorer.atleta.network/#/explorer", - standard: "none", - }, + "name": "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", - }, + "name": "OmniaVerse Explorer", + "url": "https://scan.omniaverse.io", + "standard": "EIP3091" + } ], "2358": [ { - name: "blockscout", - url: "https://blockscout.sepolia.kroma.network", - icon: "kroma", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "TCG Verse Explorer", + "url": "https://explorer.tcgverse.xyz", + "standard": "EIP3091" + } ], "2410": [ { - name: "Karak Mainnet Explorer", - url: "https://explorer.karak.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "icon": "u2u_nebulas", + "name": "U2U Explorer", + "url": "https://testnet.u2uscan.xyz", + "standard": "EIP3091" + } ], "2522": [ { - name: "fraxscan", - url: "https://holesky.fraxscan.com", - standard: "EIP3091", - }, + "name": "fraxscan", + "url": "https://holesky.fraxscan.com", + "standard": "EIP3091" + } ], "2569": [ { - name: "tpcscan", - url: "https://tpcscan.com", - icon: "techpay", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "REDLC Explorer", + "url": "https://redlightscan.finance", + "standard": "EIP3091" + } ], "2612": [ { - name: "ezchain", - url: "https://cchain-explorer.ezchain.com", - standard: "EIP3091", - }, + "name": "ezchain", + "url": "https://cchain-explorer.ezchain.com", + "standard": "EIP3091" + } ], "2613": [ { - name: "ezchain", - url: "https://testnet-cchain-explorer.ezchain.com", - standard: "EIP3091", - }, + "name": "ezchain", + "url": "https://testnet-cchain-explorer.ezchain.com", + "standard": "EIP3091" + } ], "2625": [ { - name: "whitechain-testnet-explorer", - url: "https://testnet.whitechain.io", - standard: "EIP3091", - }, + "name": "whitechain-testnet-explorer", + "url": "https://testnet.whitechain.io", + "standard": "EIP3091" + } ], "2648": [ { - name: "blockscout", - url: "https://testnet-explorer.ailayer.xyz", - icon: "ailayer", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Nanon Rollup Explorer", + "url": "https://explorer.nanon.network", + "standard": "EIP3091" + } ], "2777": [ { - name: "GM Network Mainnet Explorer", - url: "https://scan.gmnetwork.ai", - standard: "EIP3091", - }, + "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", - }, + "name": "Morph Holesky Testnet Explorer", + "url": "https://explorer-holesky.morphl2.io", + "standard": "EIP3091" + } ], "2907": [ { - name: "blockscout", - url: "https://eluxscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://eluxscan.com", + "standard": "none" + } ], "2911": [ { - name: "blockscout", - url: "https://explorer.hychain.com", - icon: "hychain", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } ], "2941": [ { - name: "Xenon testnet Explorer", - url: "https://testnet.xenonchain.com", - standard: "none", - }, + "name": "Xenon testnet Explorer", + "url": "https://testnet.xenonchain.com", + "standard": "none" + } ], "2999": [ { - name: "BitYuan Block Chain Explorer", - url: "https://mainnet.bityuan.com", - standard: "none", - }, + "name": "BitYuan Block Chain Explorer", + "url": "https://mainnet.bityuan.com", + "standard": "none" + } ], "3001": [ { - name: "UNcover", - url: "https://www.uncoverexplorer.com/?network=Nikau", - standard: "none", - }, + "name": "UNcover", + "url": "https://www.uncoverexplorer.com/?network=Nikau", + "standard": "none" + } ], "3003": [ { - name: "canxium explorer", - url: "https://explorer.canxium.org", - standard: "none", - }, + "name": "canxium explorer", + "url": "https://explorer.canxium.org", + "standard": "none" + } ], "3011": [ { - name: "PLAYA3ULL GAMES Explorer", - url: "https://3011.routescan.io", - icon: "playa3ull", - standard: "EIP3091", - }, + "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", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://evm.testnet.rebus.money", + "icon": "rebus", + "standard": "none" }, { - name: "Rebus Cosmos Explorer (ping.pub)", - url: "https://testnet.rebus.money/rebustestnet", - icon: "rebus", - standard: "none", - }, + "name": "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", - }, + "name": "explorer-thebifrost", + "url": "https://explorer.mainnet.bifrostnetwork.com", + "standard": "EIP3091" + } ], "3073": [ { - name: "mevm explorer", - url: "https://explorer.movementlabs.xyz", - standard: "none", - }, + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } ], "3306": [ { - name: "Debounce Devnet Explorer", - url: "https://explorer.debounce.network", - standard: "EIP3091", - }, + "name": "Debounce Devnet Explorer", + "url": "https://explorer.debounce.network", + "standard": "EIP3091" + } ], "3334": [ { - name: "w3q-galileo", - url: "https://explorer.galileo.web3q.io", - standard: "EIP3091", - }, + "name": "w3q-galileo", + "url": "https://explorer.galileo.web3q.io", + "standard": "EIP3091" + } ], "3400": [ { - name: "Paribu Net Explorer", - url: "https://explorer.paribu.network", - standard: "EIP3091", - }, + "name": "Paribu Net Explorer", + "url": "https://explorer.paribu.network", + "standard": "EIP3091" + } ], "3424": [ { - name: "Evolve Mainnet Explorer", - url: "https://evoexplorer.com", - standard: "EIP3091", - }, + "name": "Evolve Mainnet Explorer", + "url": "https://evoexplorer.com", + "standard": "EIP3091" + } ], "3434": [ { - name: "SecureChain", - url: "https://testnet.securechain.ai", - standard: "EIP3091", - }, + "name": "SecureChain", + "url": "https://testnet.securechain.ai", + "standard": "EIP3091" + } ], "3456": [ { - name: "LayerEdge Testnet Explorer", - url: "https://testnet-explorer.layeredge.io", - icon: "layerEdge", - standard: "EIP3091", - }, + "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", - }, + "name": "GTCScan Explorer", + "url": "https://gtcscan.io", + "standard": "none", + "icon": "gtc" + } ], "3500": [ { - name: "Paribu Net Testnet Explorer", - url: "https://testnet.paribuscan.com", - standard: "EIP3091", - }, + "name": "Paribu Net Testnet Explorer", + "url": "https://testnet.paribuscan.com", + "standard": "EIP3091" + } ], "3501": [ { - name: "JFIN Chain Explorer", - url: "https://exp.jfinchain.com", - standard: "EIP3091", - }, + "name": "JFIN Chain Explorer", + "url": "https://exp.jfinchain.com", + "standard": "EIP3091" + } ], "3601": [ { - name: "Pando Mainnet Explorer", - url: "https://explorer.pandoproject.org", - standard: "none", - }, + "name": "Pando Mainnet Explorer", + "url": "https://explorer.pandoproject.org", + "standard": "none" + } ], "3602": [ { - name: "Pando Testnet Explorer", - url: "https://testnet.explorer.pandoproject.org", - standard: "none", - }, + "name": "Pando Testnet Explorer", + "url": "https://testnet.explorer.pandoproject.org", + "standard": "none" + } ], "3636": [ { - name: "3xpl", - url: "https://3xpl.com/botanix", - standard: "EIP3091", + "name": "3xpl", + "url": "https://3xpl.com/botanix", + "standard": "EIP3091" }, { - name: "Blockscout", - url: "https://blockscout.botanixlabs.dev", - standard: "EIP3091", - }, + "name": "Blockscout", + "url": "https://blockscout.botanixlabs.dev", + "standard": "EIP3091" + } ], "3637": [ { - name: "Botanix", - url: "https://btxtestchain.com", - standard: "EIP3091", - }, + "name": "Botanix", + "url": "https://btxtestchain.com", + "standard": "EIP3091" + } ], "3639": [ { - name: "iChainscan", - url: "https://ichainscan.com", - standard: "EIP3091", - }, + "name": "iChainscan", + "url": "https://ichainscan.com", + "standard": "EIP3091" + } ], "3645": [ { - name: "iChainscan", - url: "https://test.ichainscan.com", - standard: "EIP3091", - }, + "name": "iChainscan", + "url": "https://test.ichainscan.com", + "standard": "EIP3091" + } ], "3666": [ { - name: "jscan", - url: "https://jscan.jnsdao.com", - standard: "EIP3091", - }, + "name": "jscan", + "url": "https://jscan.jnsdao.com", + "standard": "EIP3091" + } ], "3690": [ { - name: "bittexscan", - url: "https://bittexscan.com", - standard: "EIP3091", - }, + "name": "bittexscan", + "url": "https://bittexscan.com", + "standard": "EIP3091" + } ], "3693": [ { - name: "Empire Explorer", - url: "https://explorer.empirenetwork.io", - standard: "none", - }, + "name": "Empire Explorer", + "url": "https://explorer.empirenetwork.io", + "standard": "none" + } ], "3698": [ { - name: "SenjePowers", - url: "https://testnet.senjepowersscan.com", - standard: "EIP3091", - }, + "name": "SenjePowers", + "url": "https://testnet.senjepowersscan.com", + "standard": "EIP3091" + } ], "3699": [ { - name: "SenjePowers", - url: "https://senjepowersscan.com", - standard: "EIP3091", - }, + "name": "SenjePowers", + "url": "https://senjepowersscan.com", + "standard": "EIP3091" + } ], "3737": [ { - name: "Crossbell Explorer", - url: "https://scan.crossbell.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "AlveyScan", + "url": "https://alveyscan.com", + "icon": "alveychain", + "standard": "EIP3091" + } ], "3799": [ { - name: "ttntscan", - url: "https://testnet-explorer.tangle.tools", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "ttntscan", + "url": "https://testnet-explorer.tangle.tools", + "icon": "blockscout", + "standard": "EIP3091" + } ], "3888": [ { - name: "KalyScan", - url: "https://kalyscan.io", - standard: "EIP3091", - }, + "name": "KalyScan", + "url": "https://kalyscan.io", + "standard": "EIP3091" + } ], "3889": [ { - name: "KalyScan", - url: "https://testnet.kalyscan.io", - standard: "EIP3091", - }, + "name": "KalyScan", + "url": "https://testnet.kalyscan.io", + "standard": "EIP3091" + } ], "3912": [ { - name: "DRAC_Network Scan", - url: "https://www.dracscan.io", - standard: "EIP3091", - }, + "name": "DRAC_Network Scan", + "url": "https://www.dracscan.io", + "standard": "EIP3091" + } ], "3939": [ { - name: "DOScan-Test", - url: "https://test.doscan.io", - icon: "doschain", - standard: "EIP3091", - }, + "name": "DOScan-Test", + "url": "https://test.doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } ], "3966": [ { - name: "DYNO Explorer", - url: "https://dynoscan.io", - standard: "EIP3091", - }, + "name": "DYNO Explorer", + "url": "https://dynoscan.io", + "standard": "EIP3091" + } ], "3967": [ { - name: "DYNO Explorer", - url: "https://testnet.dynoscan.io", - standard: "EIP3091", - }, + "name": "DYNO Explorer", + "url": "https://testnet.dynoscan.io", + "standard": "EIP3091" + } ], "3993": [ { - name: "blockscout", - url: "https://exp-testnet.apexlayer.xyz", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://exp-testnet.apexlayer.xyz", + "standard": "EIP3091" + } ], "3999": [ { - name: "YuanChain Explorer", - url: "https://mainnet.yuan.org", - standard: "none", - }, + "name": "YuanChain Explorer", + "url": "https://mainnet.yuan.org", + "standard": "none" + } ], "4000": [ { - name: "OZONE Scan", - url: "https://ozonescan.io", - standard: "EIP3091", - }, + "name": "OZONE Scan", + "url": "https://ozonescan.io", + "standard": "EIP3091" + } ], "4001": [ { - name: "Peperium Chain Explorer", - url: "https://scan-testnet.peperium.io", - icon: "peperium", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Carbonium Network tesnet Explorer", + "icon": "cbr", + "url": "https://testnet.carboniumscan.com", + "standard": "none" + } ], "4048": [ { - name: "ganscan", - url: "https://ganscan.gpu.net", - standard: "none", - }, + "name": "ganscan", + "url": "https://ganscan.gpu.net", + "standard": "none" + } ], "4058": [ { - name: "blockscout", - url: "https://ocean.ftnscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://ocean.ftnscan.com", + "standard": "none" + } ], "4061": [ { - name: "Nahmii 3 Mainnet Explorer", - url: "https://explorer.nahmii.io", - icon: "nahmii", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Musterscan", + "url": "https://muster-explorer.alt.technology", + "standard": "EIP3091" + } ], "4080": [ { - name: "tobescan", - url: "https://tobescan.com", - standard: "EIP3091", - }, + "name": "tobescan", + "url": "https://tobescan.com", + "standard": "EIP3091" + } ], "4090": [ { - name: "blockscout", - url: "https://oasis.ftnscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://oasis.ftnscan.com", + "standard": "none" + } ], "4096": [ { - name: "Bitindi", - url: "https://testnet.bitindiscan.com", - standard: "EIP3091", - }, + "name": "Bitindi", + "url": "https://testnet.bitindiscan.com", + "standard": "EIP3091" + } ], "4099": [ { - name: "Bitindi", - url: "https://bitindiscan.com", - standard: "EIP3091", - }, + "name": "Bitindi", + "url": "https://bitindiscan.com", + "standard": "EIP3091" + } ], "4102": [ { - name: "AIOZ Network Testnet Explorer", - url: "https://testnet.explorer.aioz.network", - standard: "EIP3091", - }, + "name": "AIOZ Network Testnet Explorer", + "url": "https://testnet.explorer.aioz.network", + "standard": "EIP3091" + } ], "4141": [ { - name: "Tipboxcoin", - url: "https://testnet.tipboxcoin.net", - standard: "EIP3091", - }, + "name": "Tipboxcoin", + "url": "https://testnet.tipboxcoin.net", + "standard": "EIP3091" + } ], "4157": [ { - name: "CrossFi Testnet Scan", - url: "https://test.xfiscan.com", - standard: "EIP3091", - icon: "crossfi", - }, + "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", - }, + "name": "PHI Explorer", + "url": "https://explorer.phi.network", + "icon": "phi", + "standard": "none" + } ], "4200": [ { - name: "L2scan", - url: "https://scan.merlinchain.io", - icon: "merlin", - standard: "EIP3091", - }, + "name": "L2scan", + "url": "https://scan.merlinchain.io", + "icon": "merlin", + "standard": "EIP3091" + } ], "4201": [ { - name: "Blockscout", - url: "https://explorer.execution.testnet.lukso.network", - standard: "none", - }, + "name": "Blockscout", + "url": "https://explorer.execution.testnet.lukso.network", + "standard": "none" + } ], "4202": [ { - name: "liskscout", - url: "https://sepolia-blockscout.lisk.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "liskscout", + "url": "https://sepolia-blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "4242": [ { - name: "nexiscan", - url: "https://www.nexiscan.com", - standard: "EIP3091", - }, + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } ], "4243": [ { - name: "nexiscan", - url: "https://www.nexiscan.com", - standard: "EIP3091", - }, + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } ], "4337": [ { - name: "Beam Explorer", - url: "https://subnets.avax.network/beam", - standard: "EIP3091", - }, + "name": "Beam Explorer", + "url": "https://subnets.avax.network/beam", + "standard": "EIP3091" + } ], "4400": [ { - name: "Creditscan", - url: "https://scan.creditsmartchain.com", - icon: "credit", - standard: "EIP3091", - }, + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "standard": "EIP3091" + } ], "4444": [ { - name: "htmlcoin", - url: "https://explorer.htmlcoin.com", - icon: "htmlcoin", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "EMoney ethscan", + "url": "https://ethscan.emoney.network", + "icon": "emoney", + "standard": "EIP3091" + } ], "4613": [ { - name: "VERY explorer", - url: "https://www.veryscan.io", - standard: "none", - }, + "name": "VERY explorer", + "url": "https://www.veryscan.io", + "standard": "none" + } ], "4689": [ { - name: "iotexscan", - url: "https://iotexscan.io", - standard: "EIP3091", - }, + "name": "iotexscan", + "url": "https://iotexscan.io", + "standard": "EIP3091" + } ], "4690": [ { - name: "testnet iotexscan", - url: "https://testnet.iotexscan.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://testnet-explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], "4893": [ { - name: "blockscout", - url: "https://gcscan.io", - standard: "none", - }, + "name": "blockscout", + "url": "https://gcscan.io", + "standard": "none" + } ], "4918": [ { - name: "Venidium EVM Testnet Explorer", - url: "https://evm-testnet.venidiumexplorer.com", - standard: "EIP3091", - }, + "name": "Venidium EVM Testnet Explorer", + "url": "https://evm-testnet.venidiumexplorer.com", + "standard": "EIP3091" + } ], "4919": [ { - name: "Venidium Explorer", - url: "https://evm.venidiumexplorer.com", - standard: "EIP3091", - }, + "name": "Venidium Explorer", + "url": "https://evm.venidiumexplorer.com", + "standard": "EIP3091" + } ], "4999": [ { - name: "blockscout", - url: "https://explorer.blackfort.network", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], "5000": [ { - name: "Mantle Explorer", - url: "https://explorer.mantle.xyz", - standard: "EIP3091", - }, + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", + "standard": "EIP3091" + } ], "5001": [ { - name: "Mantle Testnet Explorer", - url: "https://explorer.testnet.mantle.xyz", - standard: "EIP3091", - }, + "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", - }, + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.treasurenet.io", + "icon": "treasurenet", + "standard": "none" + } ], "5003": [ { - name: "blockscout", - url: "https://explorer.sepolia.mantle.xyz", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ONIGIRI Explorer", + "url": "https://subnets-test.avax.network/onigiri", + "standard": "EIP3091" + } ], "5040": [ { - name: "ONIGIRI Explorer", - url: "https://subnets.avax.network/onigiri", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://explorer.ham.fun", + "icon": "blockscout", + "standard": "EIP3091" + } ], "5165": [ { - name: "blockscout", - url: "https://ftnscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://ftnscan.com", + "standard": "none" + } ], "5169": [ { - name: "SLN Mainnet Explorer", - url: "https://explorer.main.smartlayer.network", - standard: "EIP3091", - }, + "name": "SLN Mainnet Explorer", + "url": "https://explorer.main.smartlayer.network", + "standard": "EIP3091" + } ], "5177": [ { - name: "TLChain Explorer", - url: "https://explorer.tlchain.network", - standard: "none", - }, + "name": "TLChain Explorer", + "url": "https://explorer.tlchain.network", + "standard": "none" + } ], "5234": [ { - name: "Subscan", - url: "https://humanode.subscan.io", - standard: "EIP3091", - icon: "subscan", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "TRITANIUM Testnet Explorer", + "icon": "tritanium", + "url": "https://testnet.tritanium.network", + "standard": "none" + } ], "5372": [ { - name: "Settlus Scan", - url: "https://testnet.settlus.network", - standard: "EIP3091", - }, + "name": "Settlus Scan", + "url": "https://testnet.settlus.network", + "standard": "EIP3091" + } ], "5424": [ { - name: "edexa-mainnet", - url: "https://explorer.edexa.network", - standard: "EIP3091", - }, + "name": "edexa-mainnet", + "url": "https://explorer.edexa.network", + "standard": "EIP3091" + } ], "5439": [ { - name: "egoscan", - url: "https://egoscan.io", - standard: "EIP3091", - }, + "name": "egoscan", + "url": "https://egoscan.io", + "standard": "EIP3091" + } ], "5522": [ { - name: "Vexascan-EVM-TestNet", - url: "https://testnet.vexascan.com/evmexplorer", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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": "bscscan-opbnb-testnet", + "url": "https://opbnb-testnet.bscscan.com", + "standard": "EIP3091" }, { - name: "opbnbscan", - url: "https://opbnbscan.com", - standard: "EIP3091", - }, + "name": "opbnbscan", + "url": "https://opbnbscan.com", + "standard": "EIP3091" + } ], "5615": [ { - name: "explorer-arcturus-testnet", - url: "https://testnet.arcscan.net", - standard: "EIP3091", - }, + "name": "explorer-arcturus-testnet", + "url": "https://testnet.arcscan.net", + "standard": "EIP3091" + } ], "5656": [ { - name: "QIE Explorer", - url: "https://mainnet.qiblockchain.online", - standard: "EIP3091", - }, + "name": "QIE Explorer", + "url": "https://mainnet.qiblockchain.online", + "standard": "EIP3091" + } ], "5675": [ { - name: "filenova testnet explorer", - url: "https://scantest.filenova.org", - icon: "filenova", - standard: "none", - }, + "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", - }, + "name": "BlockScout", + "url": "https://3001-blockscout.a.dancebox.tanssi.network", + "standard": "EIP3091" + } ], "5700": [ { - name: "Syscoin Testnet Block Explorer", - url: "https://tanenbaum.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Tangle EVM Explorer", + "url": "https://explorer.tangle.tools", + "standard": "EIP3091", + "icon": "tangle" + } ], "5851": [ { - name: "explorer", - url: "https://explorer.ont.io/testnet", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.ont.io/testnet", + "standard": "EIP3091" + } ], "5869": [ { - name: "wegoscan2", - url: "https://scan2.wegochain.io", - standard: "EIP3091", - }, + "name": "wegoscan2", + "url": "https://scan2.wegochain.io", + "standard": "EIP3091" + } ], "6000": [ { - name: "BBScan Testnet Explorer", - url: "https://bbscan.io", - standard: "none", - }, + "name": "BBScan Testnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } ], "6001": [ { - name: "BBScan Mainnet Explorer", - url: "https://bbscan.io", - standard: "none", - }, + "name": "BBScan Mainnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } ], "6065": [ { - name: "treslechesexplorer", - url: "https://explorer-test.tresleches.finance", - icon: "treslechesexplorer", - standard: "EIP3091", - }, + "name": "treslechesexplorer", + "url": "https://explorer-test.tresleches.finance", + "icon": "treslechesexplorer", + "standard": "EIP3091" + } ], "6066": [ { - name: "treslechesexplorer", - url: "https://explorer.tresleches.finance", - icon: "treslechesexplorer", - standard: "EIP3091", - }, + "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 EVM Explorer", + "url": "https://explorer.cascadia.foundation", + "standard": "none", + "icon": "cascadia" }, { - name: "Cascadia Cosmos Explorer", - url: "https://validator.cascadia.foundation", - standard: "none", - icon: "cascadia", - }, + "name": "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", - }, + "name": "UPTN Testnet Explorer", + "url": "https://testnet.explorer.uptn.io", + "standard": "EIP3091" + } ], "6119": [ { - name: "UPTN Explorer", - url: "https://explorer.uptn.io", - standard: "EIP3091", - }, + "name": "UPTN Explorer", + "url": "https://explorer.uptn.io", + "standard": "EIP3091" + } ], "6321": [ { - name: "Aurascan Explorer", - url: "https://euphoria.aurascan.io", - standard: "none", - icon: "aura", - }, + "name": "Aurascan Explorer", + "url": "https://euphoria.aurascan.io", + "standard": "none", + "icon": "aura" + } ], "6322": [ { - name: "Aurascan Explorer", - url: "https://aurascan.io", - standard: "none", - icon: "aura", - }, + "name": "Aurascan Explorer", + "url": "https://aurascan.io", + "standard": "none", + "icon": "aura" + } ], "6552": [ { - name: "Scolscan Testnet Explorer", - url: "https://testnet-explorer.scolcoin.com", - standard: "EIP3091", - }, + "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", - }, + "name": "FOX Testnet Explorer", + "icon": "fox", + "url": "https://testnet.foxscan.app", + "standard": "none" + } ], "6626": [ { - name: "blockscout", - url: "https://scan.chain.pixie.xyz", - standard: "none", - }, + "name": "blockscout", + "url": "https://scan.chain.pixie.xyz", + "standard": "none" + } ], "6660": [ { - name: "Latest Chain", - url: "http://testnet.latestchain.io", - standard: "EIP3091", - }, + "name": "Latest Chain", + "url": "http://testnet.latestchain.io", + "standard": "EIP3091" + } ], "6661": [ { - name: "Cybria Explorer", - url: "https://cybascan.io", - icon: "cybascan", - standard: "EIP3091", - }, + "name": "Cybria Explorer", + "url": "https://cybascan.io", + "icon": "cybascan", + "standard": "EIP3091" + } ], "6666": [ { - name: "Cybria Explorer", - url: "https://explorer.cybascan.io", - icon: "cybascan", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "PAXB Explorer", + "url": "https://scan.paxb.io", + "icon": "paxb", + "standard": "EIP3091" + } ], "6779": [ { - name: "cpvscan", - url: "https://scan.compverse.io", - standard: "EIP3091", - }, + "name": "cpvscan", + "url": "https://scan.compverse.io", + "standard": "EIP3091" + } ], "6789": [ { - name: "Gold Smart Chain", - url: "https://mainnet.goldsmartchain.com", - standard: "EIP3091", - }, + "name": "Gold Smart Chain", + "url": "https://mainnet.goldsmartchain.com", + "standard": "EIP3091" + } ], "6868": [ { - name: "poolsscan", - url: "https://scan.poolsmobility.com", - icon: "POOLS", - standard: "EIP3091", - }, + "name": "poolsscan", + "url": "https://scan.poolsmobility.com", + "icon": "POOLS", + "standard": "EIP3091" + } ], "6969": [ { - name: "tombscout", - url: "https://tombscout.com", - standard: "none", - }, + "name": "tombscout", + "url": "https://tombscout.com", + "standard": "none" + } ], "7000": [ { - name: "ZetaChain Mainnet Explorer", - url: "https://explorer.zetachain.com", - standard: "none", - }, + "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": "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", - }, + "name": "blockscout", + "url": "https://zetachain-athens-3.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "7007": [ { - name: "blockscout", - url: "https://bstscan.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://bstscan.com", + "standard": "EIP3091" + } ], "7027": [ { - name: "Ella", - url: "https://ella.network", - standard: "EIP3091", - }, + "name": "Ella", + "url": "https://ella.network", + "standard": "EIP3091" + } ], "7070": [ { - name: "Planq EVM Explorer (Blockscout)", - url: "https://evm.planq.network", - standard: "none", + "name": "Planq EVM Explorer (Blockscout)", + "url": "https://evm.planq.network", + "standard": "none" }, { - name: "Planq Cosmos Explorer (BigDipper)", - url: "https://explorer.planq.network", - standard: "none", - }, + "name": "Planq Cosmos Explorer (BigDipper)", + "url": "https://explorer.planq.network", + "standard": "none" + } ], "7100": [ { - name: "numeexplorer", - url: "https://explorer.numecrypto.com", - icon: "nume", - standard: "none", - }, + "name": "numeexplorer", + "url": "https://explorer.numecrypto.com", + "icon": "nume", + "standard": "none" + } ], "7171": [ { - name: "Bitrock Explorer", - url: "https://explorer.bit-rock.io", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Shyft BX", + "url": "https://bx.shyft.network", + "standard": "EIP3091" + } ], "7484": [ { - name: "raba", - url: "https://x.raba.app/explorer", - standard: "none", - }, + "name": "raba", + "url": "https://x.raba.app/explorer", + "standard": "none" + } ], "7518": [ { - name: "MEVerse Chain Explorer", - url: "https://www.meversescan.io", - standard: "none", - icon: "meverse", - }, + "name": "MEVerse Chain Explorer", + "url": "https://www.meversescan.io", + "standard": "none", + "icon": "meverse" + } ], "7560": [ { - name: "Cyber Mainnet Explorer", - url: "https://cyberscan.co", - standard: "EIP3091", - }, + "name": "Cyber Mainnet Explorer", + "url": "https://cyberscan.co", + "standard": "EIP3091" + } ], "7575": [ { - name: "ADIL Testnet Explorer", - url: "https://testnet.adilchain-scan.io", - standard: "EIP3091", - }, + "name": "ADIL Testnet Explorer", + "url": "https://testnet.adilchain-scan.io", + "standard": "EIP3091" + } ], "7576": [ { - name: "ADIL Mainnet Explorer", - url: "https://adilchain-scan.io", - standard: "EIP3091", - }, + "name": "ADIL Mainnet Explorer", + "url": "https://adilchain-scan.io", + "standard": "EIP3091" + } ], "7668": [ { - name: "rootnet", - url: "https://explorer.rootnet.live", - standard: "EIP3091", - }, + "name": "rootnet", + "url": "https://explorer.rootnet.live", + "standard": "EIP3091" + } ], "7672": [ { - name: "rootnet", - url: "https://explorer.rootnet.cloud", - standard: "EIP3091", - }, + "name": "rootnet", + "url": "https://explorer.rootnet.cloud", + "standard": "EIP3091" + } ], "7700": [ { - name: "Canto Explorer (OKLink)", - url: "https://www.oklink.com/canto", - standard: "EIP3091", + "name": "Canto Explorer (OKLink)", + "url": "https://www.oklink.com/canto", + "standard": "EIP3091" }, { - name: "Canto EVM Explorer (Blockscout)", - url: "https://tuber.build", - standard: "EIP3091", + "name": "Canto EVM Explorer (Blockscout)", + "url": "https://tuber.build", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://canto.dex.guru", - icon: "dexguru", - 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": "Canto Testnet EVM Explorer (Blockscout)", + "url": "https://testnet.tuber.build", + "standard": "none" }, { - name: "dexguru", - url: "https://canto-test.dex.guru", - icon: "dexguru", - standard: "EIP3091", - }, + "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", - }, + "name": "Bitrock Testnet Explorer", + "url": "https://testnetscan.bit-rock.io", + "standard": "EIP3091" + } ], "7775": [ { - name: "GDCC", - url: "https://testnet.gdccscan.io", - standard: "none", - }, + "name": "GDCC", + "url": "https://testnet.gdccscan.io", + "standard": "none" + } ], "7777": [ { - name: "avascan", - url: "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - standard: "none", - }, + "name": "avascan", + "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", + "standard": "none" + } ], "7778": [ { - name: "ORE Mainnet Explorer", - icon: "ore", - url: "https://oreniumscan.org", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "maalscan testnet", + "url": "https://testnet.maalscan.io", + "standard": "EIP3091" + } ], "7878": [ { - name: "Hazlor Testnet Explorer", - url: "https://explorer.hazlor.com", - standard: "none", - }, + "name": "Hazlor Testnet Explorer", + "url": "https://explorer.hazlor.com", + "standard": "none" + } ], "7887": [ { - name: "Kinto Explorer", - url: "https://explorer.kinto.xyz", - icon: "kinto", - standard: "EIP3091", - }, + "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", - }, + "name": "ARDENIUM Athena Explorer", + "icon": "ard", + "url": "https://testnet.ardscan.com", + "standard": "none" + } ], "7923": [ { - name: "blockscout", - url: "https://explorer.dotblox.io", - standard: "none", - }, + "name": "blockscout", + "url": "https://explorer.dotblox.io", + "standard": "none" + } ], "7924": [ { - name: "MO Explorer", - url: "https://moscan.app", - standard: "none", - }, + "name": "MO Explorer", + "url": "https://moscan.app", + "standard": "none" + } ], "7979": [ { - name: "DOScan", - url: "https://doscan.io", - icon: "doschain", - standard: "EIP3091", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://evm-explorer.teleport.network", + "standard": "none", + "icon": "teleport" }, { - name: "Teleport Cosmos Explorer (Big Dipper)", - url: "https://explorer.teleport.network", - standard: "none", - icon: "teleport", - }, + "name": "Teleport 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 EVM Explorer (Blockscout)", + "url": "https://evm-explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" }, { - name: "Teleport Cosmos Explorer (Big Dipper)", - url: "https://explorer.testnet.teleport.network", - standard: "none", - icon: "teleport", - }, + "name": "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", - }, + "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", - }, + "name": "Karak Sepolia Explorer", + "url": "https://explorer.sepolia.karak.network", + "standard": "EIP3091" + } ], "8080": [ { - name: "Shardeum Scan", - url: "https://explorer-liberty10.shardeum.org", - standard: "EIP3091", - }, + "name": "Shardeum Scan", + "url": "https://explorer-liberty10.shardeum.org", + "standard": "EIP3091" + } ], "8081": [ { - name: "Shardeum Scan", - url: "https://explorer-liberty20.shardeum.org", - standard: "EIP3091", - }, + "name": "Shardeum Scan", + "url": "https://explorer-liberty20.shardeum.org", + "standard": "EIP3091" + } ], "8082": [ { - name: "Shardeum Scan", - url: "https://explorer-sphinx.shardeum.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Testnet BeOne Chain", + "url": "https://testnet.beonescan.com", + "icon": "beonechain", + "standard": "none" + } ], "8192": [ { - name: "blockscout", - url: "https://toruscan.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "8194": [ { - name: "blockscout", - url: "https://testnet.toruscan.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "8217": [ { - name: "Klaytnscope", - url: "https://scope.klaytn.com", - standard: "EIP3091", + "name": "Klaytnscope", + "url": "https://scope.klaytn.com", + "standard": "EIP3091" }, { - name: "Klaytnfinder", - url: "https://klaytnfinder.io", - standard: "EIP3091", - }, + "name": "Klaytnfinder", + "url": "https://klaytnfinder.io", + "standard": "EIP3091" + } ], "8227": [ { - name: "SPACE Explorer", - url: "https://subnets.avax.network/space", - standard: "EIP3091", - }, + "name": "SPACE Explorer", + "url": "https://subnets.avax.network/space", + "standard": "EIP3091" + } ], "8272": [ { - name: "Blockton Explorer", - url: "https://blocktonscan.com", - standard: "none", - }, + "name": "Blockton Explorer", + "url": "https://blocktonscan.com", + "standard": "none" + } ], "8329": [ { - name: "Lorenzo Explorer", - url: "https://scan.lorenzo-protocol.xyz", - standard: "none", - icon: "lorenzo", - }, + "name": "Lorenzo Explorer", + "url": "https://scan.lorenzo-protocol.xyz", + "standard": "none", + "icon": "lorenzo" + } ], "8453": [ { - name: "basescan", - url: "https://basescan.org", - standard: "none", + "name": "basescan", + "url": "https://basescan.org", + "standard": "none" }, { - name: "basescout", - url: "https://base.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "basescout", + "url": "https://base.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://base.dex.guru", - icon: "dexguru", - 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", - }, + "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", - }, + "name": "OLO Block Explorer", + "url": "https://www.olo.network", + "standard": "EIP3091" + } ], "8726": [ { - name: "Storscan", - url: "https://explorer-storagechain.invo.zone/?network=StorageChain", - standard: "none", - }, + "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", - }, + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", + "standard": "none" + } ], "8738": [ { - name: "alphscan", - url: "https://explorer.alph.network", - standard: "EIP3091", - }, + "name": "alphscan", + "url": "https://explorer.alph.network", + "standard": "EIP3091" + } ], "8822": [ { - name: "explorer", - url: "https://explorer.evm.iota.org", - icon: "iotaevm", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "MARO Scan", + "url": "https://scan.ma.ro/#", + "standard": "none" + } ], "8866": [ { - name: "Lumio explorer", - url: "https://explorer.lumio.io", - standard: "none", - }, + "name": "Lumio explorer", + "url": "https://explorer.lumio.io", + "standard": "none" + } ], "8880": [ { - name: "Unique Scan", - url: "https://uniquescan.io/unique", - standard: "none", - }, + "name": "Unique Scan", + "url": "https://uniquescan.io/unique", + "standard": "none" + } ], "8881": [ { - name: "Unique Scan / Quartz", - url: "https://uniquescan.io/quartz", - standard: "none", - }, + "name": "Unique Scan / Quartz", + "url": "https://uniquescan.io/quartz", + "standard": "none" + } ], "8882": [ { - name: "Unique Scan / Opal", - url: "https://uniquescan.io/opal", - standard: "none", - }, + "name": "Unique Scan / Opal", + "url": "https://uniquescan.io/opal", + "standard": "none" + } ], "8883": [ { - name: "Unique Scan / Sapphire", - url: "https://uniquescan.io/sapphire", - standard: "none", - }, + "name": "Unique Scan / Sapphire", + "url": "https://uniquescan.io/sapphire", + "standard": "none" + } ], "8888": [ { - name: "XANAChain", - url: "https://xanachain.xana.net", - standard: "EIP3091", - }, + "name": "XANAChain", + "url": "https://xanachain.xana.net", + "standard": "EIP3091" + } ], "8890": [ { - name: "ORE Testnet Explorer", - icon: "ore", - url: "https://testnet.oreniumscan.org", - standard: "none", - }, + "name": "ORE Testnet Explorer", + "icon": "ore", + "url": "https://testnet.oreniumscan.org", + "standard": "none" + } ], "8898": [ { - name: "mmtscan", - url: "https://mmtscan.io", - standard: "EIP3091", - icon: "mmt", - }, + "name": "mmtscan", + "url": "https://mmtscan.io", + "standard": "EIP3091", + "icon": "mmt" + } ], "8899": [ { - name: "JIBCHAIN Explorer", - url: "https://exp-l1.jibchain.net", - standard: "EIP3091", - }, + "name": "JIBCHAIN Explorer", + "url": "https://exp-l1.jibchain.net", + "standard": "EIP3091" + } ], "8911": [ { - name: "algscan", - url: "https://scan.algen.network", - icon: "alg", - standard: "EIP3091", - }, + "name": "algscan", + "url": "https://scan.algen.network", + "icon": "alg", + "standard": "EIP3091" + } ], "8912": [ { - name: "algscan", - url: "https://scan.test.algen.network", - icon: "alg", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Shidoblock Mainnet Explorer", + "url": "https://shidoscan.com", + "standard": "none", + "icon": "shidoChain" + } ], "9012": [ { - name: "berylbit-explorer", - url: "https://explorer.berylbit.io", - standard: "EIP3091", - }, + "name": "berylbit-explorer", + "url": "https://explorer.berylbit.io", + "standard": "EIP3091" + } ], "9024": [ { - name: "Nexablock Testnet Explorer", - url: "https://testnet.nexablockscan.io", - standard: "none", - icon: "nexaChain", - }, + "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", - }, + "name": "Nexablock Mainnet Explorer", + "url": "https://nexablockscan.io", + "standard": "none", + "icon": "nexaChain" + } ], "9223": [ { - name: "Codefin Net Explorer", - url: "https://explorer.codefin.pro", - standard: "EIP3091", - }, + "name": "Codefin Net Explorer", + "url": "https://explorer.codefin.pro", + "standard": "EIP3091" + } ], "9339": [ { - name: "Dogcoin", - url: "https://testnet.dogcoin.network", - standard: "EIP3091", - }, + "name": "Dogcoin", + "url": "https://testnet.dogcoin.network", + "standard": "EIP3091" + } ], "9393": [ { - name: "basescout", - url: "https://sepolia-delascan.deperp.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "basescout", + "url": "https://sepolia-delascan.deperp.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "9395": [ { - name: "Evoke SmartChain Explorer", - url: "https://explorer.evokescan.org", - standard: "EIP3091", - }, + "name": "Evoke SmartChain Explorer", + "url": "https://explorer.evokescan.org", + "standard": "EIP3091" + } ], "9527": [ { - name: "rangersscan-robin", - url: "https://robin-rangersscan.rangersprotocol.com", - standard: "none", - }, + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } ], "9528": [ { - name: "QEasyWeb3 Explorer", - url: "https://www.qeasyweb3.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Boba BNB Testnet block explorer", + "url": "https://testnet.bobascan.com", + "standard": "none" + } ], "9768": [ { - name: "MainnetZ", - url: "https://testnet.mainnetz.io", - standard: "EIP3091", - }, + "name": "MainnetZ", + "url": "https://testnet.mainnetz.io", + "standard": "EIP3091" + } ], "9779": [ { - name: "Pepe Explorer", - url: "https://explorer.pepenetwork.io", - icon: "pepenetwork", - standard: "none", - }, + "name": "Pepe Explorer", + "url": "https://explorer.pepenetwork.io", + "icon": "pepenetwork", + "standard": "none" + } ], "9789": [ { - name: "Tabi Testnet Explorer", - url: "https://testnet.tabiscan.com", - standard: "none", - }, + "name": "Tabi Testnet Explorer", + "url": "https://testnet.tabiscan.com", + "standard": "none" + } ], "9797": [ { - name: "OptimusZ7 Mainnet Explorer", - url: "https://explorer.optimusz7.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "IMPERIUM Explorer", + "icon": "imp", + "url": "https://impscan.com", + "standard": "none" + } ], "9888": [ { - name: "Dogelayer mainnet explorer", - url: "https://dl-explorer.dogelayer.org", - standard: "EIP3091", - }, + "name": "Dogelayer mainnet explorer", + "url": "https://dl-explorer.dogelayer.org", + "standard": "EIP3091" + } ], "9898": [ { - name: "Larissa Scan", - url: "https://scan.larissa.network", - standard: "EIP3091", - }, + "name": "Larissa Scan", + "url": "https://scan.larissa.network", + "standard": "EIP3091" + } ], "9911": [ { - name: "escscan", - url: "https://escscan.com", - icon: "espento", - standard: "EIP3091", - }, + "name": "escscan", + "url": "https://escscan.com", + "icon": "espento", + "standard": "EIP3091" + } ], "9977": [ { - name: "Mind Chain explorer", - url: "https://testnet.mindscan.info", - standard: "EIP3091", - }, + "name": "Mind Chain explorer", + "url": "https://testnet.mindscan.info", + "standard": "EIP3091" + } ], "9980": [ { - name: "combotrace explorer", - url: "https://combotrace.nodereal.io", - standard: "EIP3091", - }, + "name": "combotrace explorer", + "url": "https://combotrace.nodereal.io", + "standard": "EIP3091" + } ], "9981": [ { - name: "Volley Mainnet Explorer", - url: "https://volleyscan.io", - standard: "EIP3091", - }, + "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": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", + "standard": "none" }, { - name: "Subscan", - url: "https://agung.subscan.io", - standard: "none", - }, + "name": "Subscan", + "url": "https://agung.subscan.io", + "standard": "none" + } ], "9996": [ { - name: "Mind Chain explorer", - url: "https://mainnet.mindscan.info", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://testnet-rollup-explorer.altlayer.io", + "icon": "blockscout", + "standard": "EIP3091" + } ], "10024": [ { - name: "Gon Explorer", - url: "https://gonscan.com", - standard: "none", - }, + "name": "Gon Explorer", + "url": "https://gonscan.com", + "standard": "none" + } ], "10081": [ { - name: "Testnet Block Explorer", - url: "https://explorer.testnet.japanopenchain.org", - standard: "EIP3091", - }, + "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-chiadochain", + "url": "https://blockscout.chiadochain.net", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://gnosis-chiado.blockscout.com", - 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", - }, + "name": "MaxxChain Block Explorer", + "url": "https://explorer.maxxchain.org", + "standard": "EIP3091" + } ], "10222": [ { - name: "GLScan Explorer", - url: "https://glscan.io", - standard: "none", - icon: "glc", - }, + "name": "GLScan Explorer", + "url": "https://glscan.io", + "standard": "none", + "icon": "glc" + } ], "10242": [ { - name: "blockscout", - url: "https://explorer.arthera.net", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } ], "10243": [ { - name: "blockscout", - url: "https://explorer-test.arthera.net", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer-test.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } ], "10248": [ { - name: "0xtrade Scan", - url: "https://www.0xtscan.com", - standard: "none", - }, + "name": "0xtrade Scan", + "url": "https://www.0xtscan.com", + "standard": "none" + } ], "10321": [ { - name: "TAO Mainnet Explorer", - url: "https://taoscan.org", - standard: "EIP3091", - }, + "name": "TAO Mainnet Explorer", + "url": "https://taoscan.org", + "standard": "EIP3091" + } ], "10324": [ { - name: "TAO Testnet Explorer", - url: "https://testnet.taoscan.org", - standard: "EIP3091", - }, + "name": "TAO Testnet Explorer", + "url": "https://testnet.taoscan.org", + "standard": "EIP3091" + } ], "10395": [ { - name: "Worldland Explorer", - url: "https://testscan.worldland.foundation", - standard: "EIP3091", - }, + "name": "Worldland Explorer", + "url": "https://testscan.worldland.foundation", + "standard": "EIP3091" + } ], "10507": [ { - name: "ethernal", - url: "https://mainnet.num.network", - standard: "EIP3091", - }, + "name": "ethernal", + "url": "https://mainnet.num.network", + "standard": "EIP3091" + } ], "10508": [ { - name: "ethernal", - url: "https://testnet.num.network", - standard: "EIP3091", - }, + "name": "ethernal", + "url": "https://testnet.num.network", + "standard": "EIP3091" + } ], "10823": [ { - name: "CCP Explorer", - url: "https://cryptocoinpay.info", - standard: "EIP3091", - }, + "name": "CCP Explorer", + "url": "https://cryptocoinpay.info", + "standard": "EIP3091" + } ], "10849": [ { - name: "Lamina1 Explorer", - url: "https://subnets.avax.network/lamina1", - standard: "EIP3091", - }, + "name": "Lamina1 Explorer", + "url": "https://subnets.avax.network/lamina1", + "standard": "EIP3091" + } ], "10850": [ { - name: "Lamina1 Identity Explorer", - url: "https://subnets.avax.network/lamina1id", - standard: "EIP3091", - }, + "name": "Lamina1 Identity Explorer", + "url": "https://subnets.avax.network/lamina1id", + "standard": "EIP3091" + } ], "10946": [ { - name: "explorer", - url: "https://explorer.quadrans.io", - icon: "quadrans", - standard: "EIP3091", - }, + "name": "explorer", + "url": "https://explorer.quadrans.io", + "icon": "quadrans", + "standard": "EIP3091" + } ], "10947": [ { - name: "explorer", - url: "https://explorer.testnet.quadrans.io", - icon: "quadrans", - standard: "EIP3091", - }, + "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 EVM Explorer (Blockscout)", + "url": "https://explorer.astranaut.io", + "standard": "none", + "icon": "astra" }, { - name: "Astra PingPub Explorer", - url: "https://ping.astranaut.io/astra", - standard: "none", - icon: "astra", - }, + "name": "Astra 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", - }, + "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 EVM Explorer", + "url": "https://explorer.astranaut.dev", + "standard": "EIP3091", + "icon": "astra" }, { - name: "Astra PingPub Explorer", - url: "https://ping.astranaut.dev/astra", - standard: "none", - icon: "astra", - }, + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.dev/astra", + "standard": "none", + "icon": "astra" + } ], "11119": [ { - name: "hashbitscan", - url: "https://explorer.hashbit.org", - standard: "EIP3091", - }, + "name": "hashbitscan", + "url": "https://explorer.hashbit.org", + "standard": "EIP3091" + } ], "11221": [ { - name: "shinescan", - url: "https://shinescan.io", - icon: "shine", - standard: "none", - }, + "name": "shinescan", + "url": "https://shinescan.io", + "icon": "shine", + "standard": "none" + } ], "11227": [ { - name: "JIRITSUTES Explorer", - url: "https://subnets-test.avax.network/jiritsutes", - standard: "EIP3091", - }, + "name": "JIRITSUTES Explorer", + "url": "https://subnets-test.avax.network/jiritsutes", + "standard": "EIP3091" + } ], "11235": [ { - name: "Mainnet HAQQ Explorer", - url: "https://explorer.haqq.network", - standard: "EIP3091", - }, + "name": "Mainnet HAQQ Explorer", + "url": "https://explorer.haqq.network", + "standard": "EIP3091" + } ], "11437": [ { - name: "Shyft Testnet BX", - url: "https://bx.testnet.shyft.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "bevm testnet scan", + "url": "https://scan-testnet.bevm.io", + "standard": "none" + } ], "11612": [ { - name: "Sardis", - url: "https://testnet.sardisnetwork.com", - standard: "EIP3091", - }, + "name": "Sardis", + "url": "https://testnet.sardisnetwork.com", + "standard": "EIP3091" + } ], "11822": [ { - name: "ArtelaScan", - url: "https://betanet-scan.artela.network", - standard: "EIP3091", - }, + "name": "ArtelaScan", + "url": "https://betanet-scan.artela.network", + "standard": "EIP3091" + } ], "11891": [ { - name: "Polygon Supernet Arianee Explorer", - url: "https://polygonsupernet.explorer.arianee.net", - standard: "EIP3091", - }, + "name": "Polygon Supernet Arianee Explorer", + "url": "https://polygonsupernet.explorer.arianee.net", + "standard": "EIP3091" + } ], "12009": [ { - name: "SatoshiChain Explorer", - url: "https://satoshiscan.io", - standard: "EIP3091", - }, + "name": "SatoshiChain Explorer", + "url": "https://satoshiscan.io", + "standard": "EIP3091" + } ], "12020": [ { - name: "blockscout", - url: "https://explorer.aternoschain.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.aternoschain.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "12051": [ { - name: "zeroscan", - url: "https://betaenv.singularity.gold:18002", - standard: "EIP3091", - }, + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", + "standard": "EIP3091" + } ], "12052": [ { - name: "zeroscan", - url: "https://zeroscan.singularity.gold", - standard: "EIP3091", - }, + "name": "zeroscan", + "url": "https://zeroscan.singularity.gold", + "standard": "EIP3091" + } ], "12123": [ { - name: "BRC Chain Explorer", - url: "https://scan.brcchain.io", - standard: "EIP3091", - }, + "name": "BRC Chain Explorer", + "url": "https://scan.brcchain.io", + "standard": "EIP3091" + } ], "12306": [ { - name: "fiboscan", - url: "https://scan.fibochain.org", - standard: "EIP3091", - }, + "name": "fiboscan", + "url": "https://scan.fibochain.org", + "standard": "EIP3091" + } ], "12324": [ { - name: "L3X Mainnet Explorer", - url: "https://explorer.l3x.com", - standard: "EIP3091", - }, + "name": "L3X Mainnet Explorer", + "url": "https://explorer.l3x.com", + "standard": "EIP3091" + } ], "12325": [ { - name: "L3X Testnet Explorer", - url: "https://explorer-testnet.l3x.com", - standard: "EIP3091", - }, + "name": "L3X Testnet Explorer", + "url": "https://explorer-testnet.l3x.com", + "standard": "EIP3091" + } ], "12345": [ { - name: "StepScan", - url: "https://testnet.stepscan.io", - icon: "step", - standard: "EIP3091", - }, + "name": "StepScan", + "url": "https://testnet.stepscan.io", + "icon": "step", + "standard": "EIP3091" + } ], "12553": [ { - name: "RSS3 VSL Scan", - url: "https://scan.rss3.io", - standard: "EIP3091", - }, + "name": "RSS3 VSL Scan", + "url": "https://scan.rss3.io", + "standard": "EIP3091" + } ], "12715": [ { - name: "Rikeza Blockchain explorer", - url: "https://testnet.rikscan.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/letsplayfair", + "standard": "EIP3091" + } ], "13000": [ { - name: "SPS Explorer", - url: "http://spsscan.ssquad.games", - standard: "EIP3091", - }, + "name": "SPS Explorer", + "url": "http://spsscan.ssquad.games", + "standard": "EIP3091" + } ], "13308": [ { - name: "Creditscan", - url: "https://scan.creditsmartchain.com", - icon: "credit", - standard: "EIP3091", - }, + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "standard": "EIP3091" + } ], "13337": [ { - name: "Beam Explorer", - url: "https://subnets-test.avax.network/beam", - standard: "EIP3091", - }, + "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", - }, + "name": "Immutable explorer", + "url": "https://explorer.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } ], "13381": [ { - name: "phoenixplorer", - url: "https://phoenixplorer.com", - standard: "EIP3091", - }, + "name": "phoenixplorer", + "url": "https://phoenixplorer.com", + "standard": "EIP3091" + } ], "13396": [ { - name: "Masa Explorer", - url: "https://subnets.avax.network/masa", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "qbitscan", + "url": "https://explorer.qbitscan.com", + "icon": "kronobit", + "standard": "EIP3091" + } ], "13812": [ { - name: "Susono", - url: "http://explorer.opn.network", - standard: "none", - }, + "name": "Susono", + "url": "http://explorer.opn.network", + "standard": "none" + } ], "14000": [ { - name: "SPS Test Explorer", - url: "https://explorer.3sps.net", - standard: "EIP3091", - }, + "name": "SPS Test Explorer", + "url": "https://explorer.3sps.net", + "standard": "EIP3091" + } ], "14324": [ { - name: "Evolve Testnet Explorer", - url: "https://testnet.evolveblockchain.io", - standard: "EIP3091", - }, + "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", - }, + "name": "Vitruveo Testnet Explorer", + "url": "https://test-explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } ], "14801": [ { - name: "satoriscan", - url: "https://satori.vanascan.io", - standard: "EIP3091", - }, + "name": "satoriscan", + "url": "https://satori.vanascan.io", + "standard": "EIP3091" + } ], "15003": [ { - name: "Immutable Devnet explorer", - url: "https://explorer.dev.immutable.com", - standard: "EIP3091", - icon: "immutable", - }, + "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", - }, + "name": "Poodl Testnet Explorer", + "url": "https://testnet.poodl.org", + "standard": "EIP3091" + } ], "15259": [ { - name: "Poodl Mainnet Explorer", - url: "https://explorer.poodl.org", - standard: "EIP3091", - }, + "name": "Poodl Mainnet Explorer", + "url": "https://explorer.poodl.org", + "standard": "EIP3091" + } ], "15551": [ { - name: "loopscan", - url: "http://explorer.mainnetloop.com", - standard: "none", - }, + "name": "loopscan", + "url": "http://explorer.mainnetloop.com", + "standard": "none" + } ], "15555": [ { - name: "Trust EVM Explorer", - url: "https://trustscan.one", - standard: "EIP3091", - }, + "name": "Trust EVM Explorer", + "url": "https://trustscan.one", + "standard": "EIP3091" + } ], "15557": [ { - name: "EOS EVM Explorer", - url: "https://explorer.testnet.evm.eosnetwork.com", - standard: "EIP3091", - }, + "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", - }, + "name": "DeFiVerse Explorer", + "url": "https://scan.defi-verse.org", + "icon": "defiverse", + "standard": "EIP3091" + } ], "16507": [ { - name: "GchainExplorer", - url: "https://gchainexplorer.genesys.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "AirDAO Network Explorer", + "url": "https://airdao.io/explorer", + "standard": "none" + } ], "16888": [ { - name: "ivarscan", - url: "https://testnet.ivarscan.com", - standard: "EIP3091", - }, + "name": "ivarscan", + "url": "https://testnet.ivarscan.com", + "standard": "EIP3091" + } ], "17000": [ { - name: "Holesky Explorer", - url: "https://holesky.beaconcha.in", - icon: "ethereum", - standard: "EIP3091", + "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": "otterscan-holesky", + "url": "https://holesky.otterscan.io", + "icon": "ethereum", + "standard": "EIP3091" }, { - name: "Holesky Etherscan", - url: "https://holesky.etherscan.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", - }, + "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", - }, + "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", - }, + "name": "G8Chain", + "url": "https://mainnet.oneg8.network", + "standard": "EIP3091" + } ], "17172": [ { - name: "ECLIPSE Explorer", - url: "https://subnets-test.avax.network/eclipse", - standard: "EIP3091", - }, + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipse", + "standard": "EIP3091" + } ], "17180": [ { - name: "Palettescan", - url: "https://testnet.palettescan.com", - icon: "PLT", - standard: "none", - }, + "name": "Palettescan", + "url": "https://testnet.palettescan.com", + "icon": "PLT", + "standard": "none" + } ], "17217": [ { - name: "konet-explorer", - url: "https://explorer.kon-wallet.com", - standard: "EIP3091", - }, + "name": "konet-explorer", + "url": "https://explorer.kon-wallet.com", + "standard": "EIP3091" + } ], "17777": [ { - name: "EOS EVM Explorer", - url: "https://explorer.evm.eosnetwork.com", - standard: "EIP3091", - }, + "name": "EOS EVM Explorer", + "url": "https://explorer.evm.eosnetwork.com", + "standard": "EIP3091" + } ], "18000": [ { - name: "Game Network", - url: "https://explorer.fod.games", - standard: "EIP3091", - }, + "name": "Game Network", + "url": "https://explorer.fod.games", + "standard": "EIP3091" + } ], "18122": [ { - name: "stnscan", - url: "https://stnscan.com", - icon: "stn", - standard: "none", - }, + "name": "stnscan", + "url": "https://stnscan.com", + "icon": "stn", + "standard": "none" + } ], "18159": [ { - name: "explorer-proofofmemes", - url: "https://memescan.io", - standard: "EIP3091", - }, + "name": "explorer-proofofmemes", + "url": "https://memescan.io", + "standard": "EIP3091" + } ], "18181": [ { - name: "G8Chain", - url: "https://testnet.oneg8.network", - standard: "EIP3091", - }, + "name": "G8Chain", + "url": "https://testnet.oneg8.network", + "standard": "EIP3091" + } ], "18233": [ { - name: "blockscout", - url: "https://unreal.blockscout.com", - icon: "unreal", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } ], "18686": [ { - name: "MXC zkEVM Moonchain", - url: "https://explorer.moonchain.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "HOME Verse Explorer", + "url": "https://explorer.oasys.homeverse.games", + "standard": "EIP3091" + } ], "19224": [ { - name: "Decentraconnect Social", - url: "https://decentraconnect.io", - standard: "EIP3091", - }, + "name": "Decentraconnect Social", + "url": "https://decentraconnect.io", + "standard": "EIP3091" + } ], "19600": [ { - name: "LBRY Block Explorer", - url: "https://explorer.lbry.com", - icon: "lbry", - standard: "none", - }, + "name": "LBRY Block Explorer", + "url": "https://explorer.lbry.com", + "icon": "lbry", + "standard": "none" + } ], "19845": [ { - name: "BTCIXScan", - url: "https://btcixscan.com", - standard: "none", - }, + "name": "BTCIXScan", + "url": "https://btcixscan.com", + "standard": "none" + } ], "20001": [ { - name: "CamelarkScan", - url: "https://scan.camelark.com", - standard: "EIP3091", - }, + "name": "CamelarkScan", + "url": "https://scan.camelark.com", + "standard": "EIP3091" + } ], "20041": [ { - name: "NizaScan", - url: "https://nizascan.io", - standard: "EIP3091", - }, + "name": "NizaScan", + "url": "https://nizascan.io", + "standard": "EIP3091" + } ], "20073": [ { - name: "NizaScan", - url: "https://testnet.nizascan.io", - standard: "EIP3091", - }, + "name": "NizaScan", + "url": "https://testnet.nizascan.io", + "standard": "EIP3091" + } ], "20736": [ { - name: "P12 Chain Explorer", - url: "https://explorer.p12.games", - standard: "EIP3091", - }, + "name": "P12 Chain Explorer", + "url": "https://explorer.p12.games", + "standard": "EIP3091" + } ], "20765": [ { - name: "JONO11 Explorer", - url: "https://subnets-test.avax.network/jono11", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "AAH Blockscout", + "url": "https://exp.c4ex.net", + "icon": "aah", + "standard": "EIP3091" + } ], "21223": [ { - name: "DCpay Mainnet Explorer", - url: "https://mainnet.dcpay.io", - standard: "EIP3091", - }, + "name": "DCpay Mainnet Explorer", + "url": "https://mainnet.dcpay.io", + "standard": "EIP3091" + } ], "21224": [ { - name: "DCpay Testnet Explorer", - url: "https://testnet.dcpay.io", - standard: "EIP3091", - }, + "name": "DCpay Testnet Explorer", + "url": "https://testnet.dcpay.io", + "standard": "EIP3091" + } ], "21337": [ { - name: "UNcover", - url: "https://uncoverexplorer.com", - standard: "none", - }, + "name": "UNcover", + "url": "https://uncoverexplorer.com", + "standard": "none" + } ], "21816": [ { - name: "omChain Explorer", - url: "https://explorer.omchain.io", - standard: "EIP3091", - }, + "name": "omChain Explorer", + "url": "https://explorer.omchain.io", + "standard": "EIP3091" + } ], "21912": [ { - name: "BSL Mainnet Explorer", - url: "https://scan.nftruth.io", - standard: "EIP3091", - }, + "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 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", - }, + "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", - }, + "name": "AirDAO Network Explorer", + "url": "https://testnet.airdao.io/explorer", + "standard": "none" + } ], "22222": [ { - name: "Nautscan", - url: "https://nautscan.com", - standard: "EIP3091", - icon: "nautilus", - }, + "name": "Nautscan", + "url": "https://nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } ], "22324": [ { - name: "GoldXChain Testnet Explorer", - url: "https://testnet-explorer.goldxchain.io", - standard: "EIP3091", - }, + "name": "GoldXChain Testnet Explorer", + "url": "https://testnet-explorer.goldxchain.io", + "standard": "EIP3091" + } ], "22776": [ { - name: "maposcan", - url: "https://maposcan.io", - standard: "EIP3091", - }, + "name": "maposcan", + "url": "https://maposcan.io", + "standard": "EIP3091" + } ], "23006": [ { - name: "Antofy Testnet", - url: "https://test.antofyscan.com", - standard: "EIP3091", - }, + "name": "Antofy Testnet", + "url": "https://test.antofyscan.com", + "standard": "EIP3091" + } ], "23118": [ { - name: "opsideInfo", - url: "https://opside.info", - standard: "EIP3091", - }, + "name": "opsideInfo", + "url": "https://opside.info", + "standard": "EIP3091" + } ], "23294": [ { - name: "Oasis Sapphire Explorer", - url: "https://explorer.oasis.io/mainnet/sapphire", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "drxscan", + "url": "https://scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } ], "23452": [ { - name: "drxscan", - url: "https://testnet-scan.dreyerx.com", - icon: "dreyerx", - standard: "EIP3091", - }, + "name": "drxscan", + "url": "https://testnet-scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } ], "23888": [ { - name: "Blast Testnet", - url: "http://testnet-explorer.blastblockchain.com", - standard: "EIP3091", - }, + "name": "Blast Testnet", + "url": "http://testnet-explorer.blastblockchain.com", + "standard": "EIP3091" + } ], "25186": [ { - name: "LiquidLayer Mainnet Explorer", - url: "https://scan.liquidlayer.network", - standard: "EIP3091", - }, + "name": "LiquidLayer Mainnet Explorer", + "url": "https://scan.liquidlayer.network", + "standard": "EIP3091" + } ], "25839": [ { - name: "AlveyScan Testnet", - url: "https://alveytestnet.com", - icon: "alveychain", - standard: "EIP3091", - }, + "name": "AlveyScan Testnet", + "url": "https://alveytestnet.com", + "icon": "alveychain", + "standard": "EIP3091" + } ], "25888": [ { - name: "Hammer Chain Explorer", - url: "https://www.hammerchain.io", - standard: "none", - }, + "name": "Hammer Chain Explorer", + "url": "https://www.hammerchain.io", + "standard": "none" + } ], "25925": [ { - name: "bkcscan-testnet", - url: "https://testnet.bkcscan.com", - standard: "none", - icon: "bkc", - }, + "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", - }, + "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", - }, + "name": "Hertz Scan", + "url": "https://hertzscan.com", + "icon": "hertz-network", + "standard": "EIP3091" + } ], "26863": [ { - name: "OasisChain Explorer", - url: "https://scan.oasischain.io", - standard: "EIP3091", - }, + "name": "OasisChain Explorer", + "url": "https://scan.oasischain.io", + "standard": "EIP3091" + } ], "27181": [ { - name: "blockscout", - url: "https://blockscout.klaosnova.laosfoundation.io", - icon: "k-laos", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ZEROONEMAI Explorer", + "url": "https://subnets.avax.network/zeroonemai", + "standard": "EIP3091" + } ], "28516": [ { - name: "blockscout", - url: "https://explorer-sepolia.vizing.com", - icon: "vizing", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer-sepolia.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } ], "28518": [ { - name: "blockscout", - url: "https://explorer.vizing.com", - icon: "vizing", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } ], "28528": [ { - name: "blockscout", - url: "https://blockscout.com/optimism/bedrock-alpha", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockscout.com/optimism/bedrock-alpha", + "standard": "EIP3091" + } ], "28882": [ { - name: "Bobascan", - url: "https://testnet.bobascan.com", - standard: "none", - }, + "name": "Bobascan", + "url": "https://testnet.bobascan.com", + "standard": "none" + } ], "29112": [ { - name: "blockscout", - url: "https://testnet.explorer.hychain.com", - icon: "hychain", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } ], "29536": [ { - name: "KaiChain Explorer", - url: "https://testnet-explorer.kaichain.net", - standard: "EIP3091", - }, + "name": "KaiChain Explorer", + "url": "https://testnet-explorer.kaichain.net", + "standard": "EIP3091" + } ], "29548": [ { - name: "MCH Verse Explorer", - url: "https://explorer.oasys.mycryptoheroes.net", - standard: "EIP3091", - }, + "name": "MCH Verse Explorer", + "url": "https://explorer.oasys.mycryptoheroes.net", + "standard": "EIP3091" + } ], "30067": [ { - name: "Piece Scan", - url: "https://testnet-scan.piecenetwork.com", - standard: "EIP3091", - }, + "name": "Piece Scan", + "url": "https://testnet-scan.piecenetwork.com", + "standard": "EIP3091" + } ], "30088": [ { - name: "MiYou block explorer", - url: "https://myscan.miyou.io", - standard: "EIP3091", - }, + "name": "MiYou block explorer", + "url": "https://myscan.miyou.io", + "standard": "EIP3091" + } ], "30103": [ { - name: "canxium explorer", - url: "https://cerium-explorer.canxium.net", - standard: "none", - }, + "name": "canxium explorer", + "url": "https://cerium-explorer.canxium.net", + "standard": "none" + } ], "30730": [ { - name: "mevm explorer", - url: "https://explorer.movementlabs.xyz", - standard: "none", - }, + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } ], "30731": [ { - name: "mevm explorer", - url: "https://explorer.movementlabs.xyz", - standard: "none", - }, + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } ], "30732": [ { - name: "mevm explorer", - url: "https://explorer.movementlabs.xyz", - standard: "none", - }, + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } ], "31223": [ { - name: "cloudtxscan", - url: "https://scan.cloudtx.finance", - standard: "EIP3091", - }, + "name": "cloudtxscan", + "url": "https://scan.cloudtx.finance", + "standard": "EIP3091" + } ], "31224": [ { - name: "cloudtxexplorer", - url: "https://explorer.cloudtx.finance", - standard: "EIP3091", - }, + "name": "cloudtxexplorer", + "url": "https://explorer.cloudtx.finance", + "standard": "EIP3091" + } ], "31337": [ { - name: "GoChain Testnet Explorer", - url: "https://testnet-explorer.gochain.io", - standard: "EIP3091", - }, + "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", - }, + "name": "Evoke SmartChain Testnet Explorer", + "url": "https://testnet-explorer.evokescan.org", + "standard": "EIP3091" + } ], "31753": [ { - name: "Xchain Mainnet Explorer", - url: "https://xchainscan.com", - standard: "EIP3091", - }, + "name": "Xchain Mainnet Explorer", + "url": "https://xchainscan.com", + "standard": "EIP3091" + } ], "31754": [ { - name: "Xchain Testnet Explorer", - url: "https://xchaintest.net", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Brise Scan", + "url": "https://brisescan.com", + "icon": "brise", + "standard": "EIP3091" + } ], "32659": [ { - name: "fsnscan", - url: "https://fsnscan.com", - icon: "fsnscan", - standard: "EIP3091", - }, + "name": "fsnscan", + "url": "https://fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } ], "32769": [ { - name: "Zilliqa EVM Explorer", - url: "https://evmx.zilliqa.com", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "Entangle Mainnet Explorer", + "url": "https://explorer.entangle.fi", + "standard": "none" + } ], "33101": [ { - name: "Zilliqa EVM Explorer", - url: "https://evmx.zilliqa.com", - standard: "none", - }, + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } ], "33210": [ { - name: "CLOUDVERSE Explorer", - url: "https://subnets.avax.network/cloudverse", - standard: "EIP3091", - }, + "name": "CLOUDVERSE Explorer", + "url": "https://subnets.avax.network/cloudverse", + "standard": "EIP3091" + } ], "33333": [ { - name: "avescan", - url: "https://avescan.io", - icon: "avescan", - standard: "EIP3091", - }, + "name": "avescan", + "url": "https://avescan.io", + "icon": "avescan", + "standard": "EIP3091" + } ], "33385": [ { - name: "Zilliqa EVM Devnet Explorer", - url: "https://otterscan.devnet.zilliqa.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Funki Mainnet Explorer", + "url": "https://mainnet.funkichain.com", + "standard": "none" + } ], "34443": [ { - name: "modescout", - url: "https://explorer.mode.network", - standard: "none", - }, + "name": "modescout", + "url": "https://explorer.mode.network", + "standard": "none" + } ], "35011": [ { - name: "J2O Taro Explorer", - url: "https://exp.j2o.io", - icon: "j2otaro", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Q explorer", + "url": "https://explorer.qtestnet.org", + "icon": "q", + "standard": "EIP3091" + } ], "38400": [ { - name: "rangersscan", - url: "https://scan.rangersprotocol.com", - standard: "none", - }, + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } ], "38401": [ { - name: "rangersscan-robin", - url: "https://robin-rangersscan.rangersprotocol.com", - standard: "none", - }, + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } ], "39656": [ { - name: "Primal Network", - url: "https://prmscan.org", - standard: "EIP3091", - }, + "name": "Primal Network", + "url": "https://prmscan.org", + "standard": "EIP3091" + } ], "39815": [ { - name: "ohoscan", - url: "https://ohoscan.com", - icon: "ohoscan", - standard: "EIP3091", - }, + "name": "ohoscan", + "url": "https://ohoscan.com", + "icon": "ohoscan", + "standard": "EIP3091" + } ], "41500": [ { - name: "Opulent-X BETA Explorer", - url: "https://explorer.opulent-x.com", - standard: "none", - }, + "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", - }, + "name": "AgentLayer Testnet Explorer", + "url": "https://testnet-explorer.agentlayer.xyz", + "standard": "EIP3091" + } ], "42161": [ { - name: "Arbiscan", - url: "https://arbiscan.io", - standard: "EIP3091", + "name": "Arbiscan", + "url": "https://arbiscan.io", + "standard": "EIP3091" }, { - name: "Arbitrum Explorer", - url: "https://explorer.arbitrum.io", - standard: "EIP3091", + "name": "Arbitrum Explorer", + "url": "https://explorer.arbitrum.io", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://arbitrum.dex.guru", - icon: "dexguru", - 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": "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", - }, + "name": "dexguru", + "url": "https://nova.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], "42220": [ { - name: "Celoscan", - url: "https://celoscan.io", - standard: "EIP3091", + "name": "Celoscan", + "url": "https://celoscan.io", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://explorer.celo.org", - standard: "none", - }, + "name": "blockscout", + "url": "https://explorer.celo.org", + "standard": "none" + } ], "42261": [ { - name: "Oasis Emerald Testnet Explorer", - url: "https://explorer.oasis.io/testnet/emerald", - standard: "EIP3091", - }, + "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", - }, + "name": "Oasis Emerald Explorer", + "url": "https://explorer.oasis.io/mainnet/emerald", + "standard": "EIP3091" + } ], "42355": [ { - name: "GoldXChain Explorer", - url: "https://explorer.goldxchain.io", - standard: "EIP3091", - }, + "name": "GoldXChain Explorer", + "url": "https://explorer.goldxchain.io", + "standard": "EIP3091" + } ], "42766": [ { - name: "blockscout", - url: "https://scan.zkfair.io", - icon: "zkfair", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://scan.zkfair.io", + "icon": "zkfair", + "standard": "EIP3091" + } ], "42793": [ { - name: "Etherlink Explorer", - url: "https://explorer.etherlink.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "kintoscan", + "url": "http://35.215.120.180:4000", + "standard": "EIP3091" + } ], "43113": [ { - name: "snowtrace", - url: "https://testnet.snowtrace.io", - standard: "EIP3091", - }, + "name": "snowtrace", + "url": "https://testnet.snowtrace.io", + "standard": "EIP3091" + } ], "43114": [ { - name: "snowtrace", - url: "https://snowtrace.io", - standard: "EIP3091", - }, + "name": "snowtrace", + "url": "https://snowtrace.io", + "standard": "EIP3091" + } ], "43851": [ { - name: "ZKFair Testnet Info", - url: "https://testnet-scan.zkfair.io", - icon: "zkfair", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://frenscan.io", + "icon": "fren", + "standard": "EIP3091" + } ], "44445": [ { - name: "Quantum Explorer", - url: "https://qtm.avescoin.io", - icon: "quantum", - standard: "EIP3091", - }, + "name": "Quantum Explorer", + "url": "https://qtm.avescoin.io", + "icon": "quantum", + "standard": "EIP3091" + } ], "44787": [ { - name: "Alfajoresscan", - url: "https://alfajores.celoscan.io", - standard: "EIP3091", - }, + "name": "Alfajoresscan", + "url": "https://alfajores.celoscan.io", + "standard": "EIP3091" + } ], "45000": [ { - name: "autobahn explorer", - url: "https://explorer.autobahn.network", - icon: "autobahn", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://swamps-explorer.tc.l2aas.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "45510": [ { - name: "Deelance Mainnet Explorer", - url: "https://deescan.com", - standard: "EIP3091", - }, + "name": "Deelance Mainnet Explorer", + "url": "https://deescan.com", + "standard": "EIP3091" + } ], "46688": [ { - name: "fsnscan", - url: "https://testnet.fsnscan.com", - icon: "fsnscan", - standard: "EIP3091", - }, + "name": "fsnscan", + "url": "https://testnet.fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } ], "47805": [ { - name: "rei-scan", - url: "https://scan.rei.network", - standard: "none", - }, + "name": "rei-scan", + "url": "https://scan.rei.network", + "standard": "none" + } ], "48795": [ { - name: "SPACE Explorer", - url: "https://subnets-test.avax.network/space", - standard: "EIP3091", - }, + "name": "SPACE Explorer", + "url": "https://subnets-test.avax.network/space", + "standard": "EIP3091" + } ], "48899": [ { - name: "Zircuit", - url: "https://explorer.zircuit.com", - icon: "zircuit", - standard: "none", - }, + "name": "Zircuit", + "url": "https://explorer.zircuit.com", + "icon": "zircuit", + "standard": "none" + } ], "49049": [ { - name: "Wire Explorer", - url: "https://floripa-explorer.wireshape.org", - standard: "EIP3091", - }, + "name": "Wire Explorer", + "url": "https://floripa-explorer.wireshape.org", + "standard": "EIP3091" + } ], "49088": [ { - name: "explorer-thebifrost", - url: "https://explorer.testnet.bifrostnetwork.com", - standard: "EIP3091", - }, + "name": "explorer-thebifrost", + "url": "https://explorer.testnet.bifrostnetwork.com", + "standard": "EIP3091" + } ], "49321": [ { - name: "blockscout", - url: "https://testnet.gunzscan.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.gunzscan.io", + "standard": "EIP3091" + } ], "50005": [ { - name: "Yooldo Verse Explorer", - url: "https://explorer.yooldo-verse.xyz", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "LumozTestnetInfo", + "url": "https://lumoz.info", + "icon": "opside-new", + "standard": "EIP3091" + } ], "51712": [ { - name: "Sardis", - url: "https://contract-mainnet.sardisnetwork.com", - standard: "EIP3091", - }, + "name": "Sardis", + "url": "https://contract-mainnet.sardisnetwork.com", + "standard": "EIP3091" + } ], "52014": [ { - name: "blockscout", - url: "https://blockexplorer.electroneum.com", - icon: "electroneum", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockexplorer.electroneum.com", + "icon": "electroneum", + "standard": "EIP3091" + } ], "53277": [ { - name: "DOID Scan", - url: "https://scan.doid.tech", - icon: "doid", - standard: "EIP3091", - }, + "name": "DOID Scan", + "url": "https://scan.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } ], "53302": [ { - name: "seedscout", - url: "https://sepolia-explorer.superseed.xyz", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ethernal", + "url": "https://explorer.dfkchain.com", + "icon": "ethereum", + "standard": "none" + } ], "54211": [ { - name: "TestEdge HAQQ Explorer", - url: "https://explorer.testedge2.haqq.network", - standard: "EIP3091", - }, + "name": "TestEdge HAQQ Explorer", + "url": "https://explorer.testedge2.haqq.network", + "standard": "EIP3091" + } ], "54321": [ { - name: "toronet_explorer", - url: "https://testnet.toronet.org", - standard: "none", - }, + "name": "toronet_explorer", + "url": "https://testnet.toronet.org", + "standard": "none" + } ], "54555": [ { - name: "photon_testnet_explorer", - url: "https://testnet.photonchain.io", - standard: "none", - }, + "name": "photon_testnet_explorer", + "url": "https://testnet.photonchain.io", + "standard": "none" + } ], "55004": [ { - name: "blockscout", - url: "https://explorer.titan.tokamak.network", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.titan.tokamak.network", + "standard": "EIP3091" + } ], "55555": [ { - name: "reiscan", - url: "https://reiscan.com", - standard: "EIP3091", - }, + "name": "reiscan", + "url": "https://reiscan.com", + "standard": "EIP3091" + } ], "55556": [ { - name: "reiscan", - url: "https://testnet.reiscan.com", - standard: "EIP3091", - }, + "name": "reiscan", + "url": "https://testnet.reiscan.com", + "standard": "EIP3091" + } ], "56026": [ { - name: "Lambda Chain Mainnet Explorer", - url: "https://scan.lambda.im", - standard: "EIP3091", - }, + "name": "Lambda Chain Mainnet Explorer", + "url": "https://scan.lambda.im", + "standard": "EIP3091" + } ], "56288": [ { - name: "Boba BNB block explorer", - url: "https://bobascan.com", - standard: "none", - }, + "name": "Boba BNB block explorer", + "url": "https://bobascan.com", + "standard": "none" + } ], "56400": [ { - name: "TESTNETZER Explorer", - url: "https://subnets-test.avax.network/testnetzer", - standard: "EIP3091", - }, + "name": "TESTNETZER Explorer", + "url": "https://subnets-test.avax.network/testnetzer", + "standard": "EIP3091" + } ], "56789": [ { - name: "novascan", - url: "https://novascan.velo.org", - standard: "EIP3091", - }, + "name": "novascan", + "url": "https://novascan.velo.org", + "standard": "EIP3091" + } ], "56797": [ { - name: "DOID Testnet Scan", - url: "https://scan.testnet.doid.tech", - icon: "doid", - standard: "EIP3091", - }, + "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", - }, + "name": "Rollux Testnet Explorer", + "url": "https://rollux.tanenbaum.io", + "standard": "EIP3091" + } ], "57451": [ { - name: "coinsecnetwork", - url: "https://explorer.coinsec.network", - standard: "EIP3091", - }, + "name": "coinsecnetwork", + "url": "https://explorer.coinsec.network", + "standard": "EIP3091" + } ], "58008": [ { - name: "blockscout", - url: "https://explorer.sepolia.publicgoods.network", - icon: "blockscout", - standard: "EIP3091", - }, + "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": "Etherscan", + "url": "https://goerli.lineascan.build", + "standard": "EIP3091", + "icon": "linea" }, { - name: "Blockscout", - url: "https://explorer.goerli.linea.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": "Etherscan", + "url": "https://sepolia.lineascan.build", + "standard": "EIP3091", + "icon": "linea" }, { - name: "Blockscout", - url: "https://explorer.sepolia.linea.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": "Etherscan", + "url": "https://lineascan.build", + "standard": "EIP3091", + "icon": "linea" }, { - name: "Blockscout", - url: "https://explorer.linea.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", - }, + "name": "L2scan", + "url": "https://linea.l2scan.co", + "standard": "EIP3091", + "icon": "linea" + } ], "59971": [ { - name: "Genesys Scan", - url: "https://genesysscan.io", - icon: "genesyscode", - standard: "none", - }, + "name": "Genesys Scan", + "url": "https://genesysscan.io", + "icon": "genesyscode", + "standard": "none" + } ], "60000": [ { - name: "thinkiumscan", - url: "https://test0.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net", + "standard": "EIP3091" + } ], "60001": [ { - name: "thinkiumscan", - url: "https://test1.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net", + "standard": "EIP3091" + } ], "60002": [ { - name: "thinkiumscan", - url: "https://test2.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net", + "standard": "EIP3091" + } ], "60103": [ { - name: "thinkiumscan", - url: "https://test103.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + } ], "60808": [ { - name: "bobscout", - url: "https://explorer.gobob.xyz", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "bobscout", + "url": "https://explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], "61406": [ { - name: "KaiChain Explorer", - url: "https://explorer.kaichain.net", - standard: "EIP3091", - }, + "name": "KaiChain Explorer", + "url": "https://explorer.kaichain.net", + "standard": "EIP3091" + } ], "61800": [ { - name: "AxelChain Dev-Net Explorer", - url: "https://devexplorer2.viacube.com", - standard: "EIP3091", - }, + "name": "AxelChain Dev-Net Explorer", + "url": "https://devexplorer2.viacube.com", + "standard": "EIP3091" + } ], "61803": [ { - name: "eticascan", - url: "https://eticascan.org", - standard: "EIP3091", + "name": "eticascan", + "url": "https://eticascan.org", + "standard": "EIP3091" }, { - name: "eticastats", - url: "http://explorer.etica-stats.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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Scolscan Explorer", + "url": "https://explorer.scolcoin.com", + "standard": "EIP3091" + } ], "66988": [ { - name: "JanusNetwork Testnet Explorer", - url: "https://beta.scan.janusnetwork.io", - standard: "none", - }, + "name": "JanusNetwork Testnet Explorer", + "url": "https://beta.scan.janusnetwork.io", + "standard": "none" + } ], "68770": [ { - name: "DM2Verse Explorer", - url: "https://explorer.dm2verse.dmm.com", - standard: "EIP3091", - }, + "name": "DM2Verse Explorer", + "url": "https://explorer.dm2verse.dmm.com", + "standard": "EIP3091" + } ], "69420": [ { - name: "Condrieu explorer", - url: "https://explorer.condrieu.ethdevops.io", - standard: "none", - }, + "name": "Condrieu explorer", + "url": "https://explorer.condrieu.ethdevops.io", + "standard": "none" + } ], "70000": [ { - name: "thinkiumscan", - url: "https://chain0.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net", + "standard": "EIP3091" + } ], "70001": [ { - name: "thinkiumscan", - url: "https://chain1.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net", + "standard": "EIP3091" + } ], "70002": [ { - name: "thinkiumscan", - url: "https://chain2.thinkiumscan.net", - standard: "EIP3091", - }, + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net", + "standard": "EIP3091" + } ], "70103": [ { - name: "thinkiumscan", - url: "https://chain103.thinkiumscan.net", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "GWScan Block Explorer", + "url": "https://v1.testnet.gwscan.com", + "standard": "none" + } ], "71402": [ { - name: "GWScan Block Explorer", - url: "https://v1.gwscan.com", - standard: "none", - }, + "name": "GWScan Block Explorer", + "url": "https://v1.gwscan.com", + "standard": "none" + } ], "72778": [ { - name: "ankara", - url: "https://explorer.ankara-cagacrypto.com", - standard: "EIP3091", - }, + "name": "ankara", + "url": "https://explorer.ankara-cagacrypto.com", + "standard": "EIP3091" + } ], "72992": [ { - name: "GrokScan", - url: "https://mainnet-explorer.grokchain.dev", - standard: "none", - }, + "name": "GrokScan", + "url": "https://mainnet-explorer.grokchain.dev", + "standard": "none" + } ], "73114": [ { - name: "ICB Tesnet Explorer", - url: "https://testnet.icbscan.io", - standard: "EIP3091", - }, + "name": "ICB Tesnet Explorer", + "url": "https://testnet.icbscan.io", + "standard": "EIP3091" + } ], "73115": [ { - name: "ICB Explorer", - url: "https://icbscan.io", - standard: "EIP3091", - }, + "name": "ICB Explorer", + "url": "https://icbscan.io", + "standard": "EIP3091" + } ], "73927": [ { - name: "mvmscan", - url: "https://scan.mvm.dev", - icon: "mvm", - standard: "EIP3091", - }, + "name": "mvmscan", + "url": "https://scan.mvm.dev", + "icon": "mvm", + "standard": "EIP3091" + } ], "75000": [ { - name: "ResinScan", - url: "https://explorer.resincoin.dev", - standard: "none", - }, + "name": "ResinScan", + "url": "https://explorer.resincoin.dev", + "standard": "none" + } ], "75512": [ { - name: "Geek Explorer", - url: "https://explorer.geekout-pte.com", - standard: "EIP3091", - }, + "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", - }, + "name": "Geek Testnet Explorer", + "url": "https://explorer-testnet.geekout-pte.com", + "standard": "EIP3091" + } ], "77001": [ { - name: "BORAchainscope", - url: "https://scope.boraportal.com", - standard: "EIP3091", - }, + "name": "BORAchainscope", + "url": "https://scope.boraportal.com", + "standard": "EIP3091" + } ], "77238": [ { - name: "Foundry Scan Testnet", - url: "https://testnet-explorer.foundryscan.org", - standard: "EIP3091", - }, + "name": "Foundry Scan Testnet", + "url": "https://testnet-explorer.foundryscan.org", + "standard": "EIP3091" + } ], "77612": [ { - name: "ventionscan", - url: "https://ventionscan.io", - standard: "EIP3091", - }, + "name": "ventionscan", + "url": "https://ventionscan.io", + "standard": "EIP3091" + } ], "77777": [ { - name: "toronet_explorer", - url: "https://toronet.org/explorer", - standard: "none", - }, + "name": "toronet_explorer", + "url": "https://toronet.org/explorer", + "standard": "none" + } ], "78281": [ { - name: "Dragonfly Blockscout", - url: "https://blockscout.dragonfly.hexapod.network", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Gold Smart Chain", + "url": "https://testnet.goldsmartchain.com", + "standard": "EIP3091" + } ], "80001": [ { - name: "polygonscan", - url: "https://mumbai.polygonscan.com", - standard: "EIP3091", - }, + "name": "polygonscan", + "url": "https://mumbai.polygonscan.com", + "standard": "EIP3091" + } ], "80002": [ { - name: "polygonamoy", - url: "https://www.oklink.com/amoy", - standard: "EIP3091", - }, + "name": "polygonamoy", + "url": "https://www.oklink.com/amoy", + "standard": "EIP3091" + } ], "80084": [ { - name: "Beratrail", - url: "https://bartio.beratrail.io", - icon: "berachain", - standard: "none", - }, + "name": "Beratrail", + "url": "https://bartio.beratrail.io", + "icon": "berachain", + "standard": "none" + } ], "80085": [ { - name: "Beratrail", - url: "https://artio.beratrail.io", - icon: "berachain", - standard: "none", - }, + "name": "Beratrail", + "url": "https://artio.beratrail.io", + "icon": "berachain", + "standard": "none" + } ], "80096": [ { - name: "blockscout", - url: "https://hizoco.net:38443", - standard: "none", - }, + "name": "blockscout", + "url": "https://hizoco.net:38443", + "standard": "none" + } ], "81041": [ { - name: "nordek", - url: "https://nordekscan.com", - standard: "EIP3091", - }, + "name": "nordek", + "url": "https://nordekscan.com", + "standard": "EIP3091" + } ], "81457": [ { - name: "Blastscan", - url: "https://blastscan.io", - icon: "blast", - standard: "EIP3091", + "name": "Blastscan", + "url": "https://blastscan.io", + "icon": "blast", + "standard": "EIP3091" }, { - name: "Blast Explorer", - url: "https://blastexplorer.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", - }, + "name": "Quantum Scan Mainnet", + "url": "https://quantumscan.org", + "standard": "EIP3091" + } ], "82459": [ { - name: "SLN Testnet Explorer", - url: "https://explorer.test.smartlayer.network", - standard: "EIP3091", - }, + "name": "SLN Testnet Explorer", + "url": "https://explorer.test.smartlayer.network", + "standard": "EIP3091" + } ], "83872": [ { - name: "Zedscan", - url: "http://zedscan.net", - standard: "EIP3091", - }, + "name": "Zedscan", + "url": "http://zedscan.net", + "standard": "EIP3091" + } ], "84531": [ { - name: "basescan", - url: "https://goerli.basescan.org", - standard: "none", + "name": "basescan", + "url": "https://goerli.basescan.org", + "standard": "none" }, { - name: "basescout", - url: "https://base-goerli.blockscout.com", - icon: "blockscout", - standard: "EIP3091", + "name": "basescout", + "url": "https://base-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: "dexguru", - url: "https://base-goerli.dex.guru", - icon: "dexguru", - 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", - }, + "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", - }, + "name": "Aerie Explorer", + "url": "https://explorer.aerielab.io", + "icon": "aerie", + "standard": "EIP3091" + } ], "88002": [ { - name: "Nautscan", - url: "https://proteus.nautscan.com", - standard: "EIP3091", - icon: "nautilus", - }, + "name": "Nautscan", + "url": "https://proteus.nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } ], "88559": [ { - name: "inoai live", - url: "https://inoai.live", - standard: "none", - }, + "name": "inoai live", + "url": "https://inoai.live", + "standard": "none" + } ], "88817": [ { - name: "explorer-testnet", - url: "https://explorer-testnet.unit0.dev", - standard: "EIP3091", - }, + "name": "explorer-testnet", + "url": "https://explorer-testnet.unit0.dev", + "standard": "EIP3091" + } ], "88819": [ { - name: "explorer-stagenet", - url: "https://explorer-stagenet.unit0.dev", - standard: "EIP3091", - }, + "name": "explorer-stagenet", + "url": "https://explorer-stagenet.unit0.dev", + "standard": "EIP3091" + } ], "88882": [ { - name: "spicy-explorer", - url: "https://testnet.chiliscan.com", - standard: "EIP3091", - }, + "name": "spicy-explorer", + "url": "https://testnet.chiliscan.com", + "standard": "EIP3091" + } ], "88888": [ { - name: "chiliscan", - url: "https://chiliscan.com", - standard: "EIP3091", + "name": "chiliscan", + "url": "https://chiliscan.com", + "standard": "EIP3091" }, { - name: "chilizscan", - url: "https://scan.chiliz.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", - }, + "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", - }, + "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", - }, + "name": "Nautscan", + "url": "https://triton.nautscan.com", + "standard": "EIP3091" + } ], "91120": [ { - name: "MetaDAP Enterprise Mainnet explorer", - url: "https://explorer.chain.metadap.io", - standard: "none", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Green Chain Explorer", + "url": "https://explorer.greenchain.app", + "standard": "EIP3091" + } ], "97970": [ { - name: "OptimusZ7 Testnet Explorer", - url: "https://testnet.optimusz7.com", - standard: "EIP3091", - }, + "name": "OptimusZ7 Testnet Explorer", + "url": "https://testnet.optimusz7.com", + "standard": "EIP3091" + } ], "99099": [ { - name: "eLiberty Testnet", - url: "https://testnet.eliberty.ngo", - standard: "EIP3091", - }, + "name": "eLiberty Testnet", + "url": "https://testnet.eliberty.ngo", + "standard": "EIP3091" + } ], "100001": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/0", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/0", + "standard": "EIP3091" + } ], "100002": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/1", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/1", + "standard": "EIP3091" + } ], "100003": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/2", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/2", + "standard": "EIP3091" + } ], "100004": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/3", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/3", + "standard": "EIP3091" + } ], "100005": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/4", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/4", + "standard": "EIP3091" + } ], "100006": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/5", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/5", + "standard": "EIP3091" + } ], "100007": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/6", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/6", + "standard": "EIP3091" + } ], "100008": [ { - name: "quarkchain-mainnet", - url: "https://mainnet.quarkchain.io/7", - standard: "EIP3091", - }, + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/7", + "standard": "EIP3091" + } ], "100009": [ { - name: "VeChain Stats", - url: "https://vechainstats.com", - standard: "none", + "name": "VeChain Stats", + "url": "https://vechainstats.com", + "standard": "none" }, { - name: "VeChain Explorer", - url: "https://explore.vechain.org", - standard: "none", - }, + "name": "VeChain Explorer", + "url": "https://explore.vechain.org", + "standard": "none" + } ], "100010": [ { - name: "VeChain Explorer", - url: "https://explore-testnet.vechain.org", - standard: "none", - }, + "name": "VeChain Explorer", + "url": "https://explore-testnet.vechain.org", + "standard": "none" + } ], "101010": [ { - name: "blockscout", - url: "https://stability.blockscout.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://stability.blockscout.com", + "standard": "EIP3091" + } ], "102031": [ { - name: "blockscout", - url: "https://creditcoin-testnet.blockscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://creditcoin-testnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "103090": [ { - name: "blockscout", - url: "https://scan.crystaleum.org", - icon: "crystal", - standard: "EIP3091", - }, + "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", - }, + "name": "Masa Testnet Explorer", + "url": "https://subnets-test.avax.network/masatestnet", + "standard": "EIP3091" + } ], "104566": [ { - name: "KaspaClassic Explorer", - url: "https://explorer.kaspaclassic.world", - standard: "none", - }, + "name": "KaspaClassic Explorer", + "url": "https://explorer.kaspaclassic.world", + "standard": "none" + } ], "105105": [ { - name: "Stratis Explorer", - url: "https://explorer.stratisevm.com", - standard: "EIP3091", - }, + "name": "Stratis Explorer", + "url": "https://explorer.stratisevm.com", + "standard": "EIP3091" + } ], "108801": [ { - name: "BROChain Explorer", - url: "https://explorer.brochain.org", - standard: "EIP3091", - }, + "name": "BROChain Explorer", + "url": "https://explorer.brochain.org", + "standard": "EIP3091" + } ], "110001": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/0", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/0", + "standard": "EIP3091" + } ], "110002": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/1", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/1", + "standard": "EIP3091" + } ], "110003": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/2", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/2", + "standard": "EIP3091" + } ], "110004": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/3", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/3", + "standard": "EIP3091" + } ], "110005": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/4", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/4", + "standard": "EIP3091" + } ], "110006": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/5", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/5", + "standard": "EIP3091" + } ], "110007": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/6", - standard: "EIP3091", - }, + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/6", + "standard": "EIP3091" + } ], "110008": [ { - name: "quarkchain-devnet", - url: "https://devnet.quarkchain.io/7", - standard: "EIP3091", - }, + "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", - }, + "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 - 1", + "url": "https://explorer.main.siberium.net", + "icon": "siberium", + "standard": "EIP3091" }, { - name: "Siberium Mainnet Explorer - blockscout - 2", - url: "https://explorer.main.siberium.net.ru", - icon: "siberium", - standard: "EIP3091", - }, + "name": "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", - }, + "name": "blockscout", + "url": "https://explorer.re.al", + "icon": "real", + "standard": "EIP3091" + } ], "112358": [ { - name: "blockscout", - url: "https://explorer.metachain.one", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Etherlink Testnet Explorer", + "url": "https://testnet-explorer.etherlink.com", + "standard": "EIP3091" + } ], "131419": [ { - name: "etndscan", - url: "https://scan.etnd.pro", - icon: "ETND", - standard: "none", - }, + "name": "etndscan", + "url": "https://scan.etnd.pro", + "icon": "ETND", + "standard": "none" + } ], "132902": [ { - name: "Form Testnet explorer", - url: "https://testnet-explorer.form.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ICPlaza", + "url": "https://browsemainnet.ic-plaza.org/index", + "standard": "none" + } ], "165279": [ { - name: "Eclat Mainnet Explorer", - url: "https://eclatscan.com", - standard: "EIP3091", - }, + "name": "Eclat Mainnet Explorer", + "url": "https://eclatscan.com", + "standard": "EIP3091" + } ], "167000": [ { - name: "etherscan", - url: "https://taikoscan.io", - standard: "EIP3091", - }, + "name": "etherscan", + "url": "https://taikoscan.io", + "standard": "EIP3091" + } ], "167008": [ { - name: "blockscout", - url: "https://explorer.katla.taiko.xyz", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.katla.taiko.xyz", + "standard": "EIP3091" + } ], "167009": [ { - name: "blockscout", - url: "https://blockscoutapi.hekla.taiko.xyz", - standard: "EIP3091", + "name": "blockscout", + "url": "https://blockscoutapi.hekla.taiko.xyz", + "standard": "EIP3091" }, { - name: "routescan", - url: "https://hekla.taikoscan.network", - standard: "EIP3091", - }, + "name": "routescan", + "url": "https://hekla.taikoscan.network", + "standard": "EIP3091" + } ], "188710": [ { - name: "Bitica DPOS Blockchain Explorer", - url: "https://biticablockchain.com", - standard: "none", - }, + "name": "Bitica DPOS Blockchain Explorer", + "url": "https://biticablockchain.com", + "standard": "none" + } ], "188881": [ { - name: "CondorScan", - url: "https://explorer.condor.systems", - standard: "none", - }, + "name": "CondorScan", + "url": "https://explorer.condor.systems", + "standard": "none" + } ], "200101": [ { - name: "Blockscout", - url: "https://explorer-devnet-cardano-evm.c1.milkomeda.com", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "bitlayer testnet scan", + "url": "https://testnet.btrscan.com", + "standard": "EIP3091" + } ], "200901": [ { - name: "bitlayer mainnet scan", - url: "https://www.btrscan.com", - standard: "EIP3091", - }, + "name": "bitlayer mainnet scan", + "url": "https://www.btrscan.com", + "standard": "EIP3091" + } ], "201018": [ { - name: "alaya explorer", - url: "https://scan.alaya.network", - standard: "none", - }, + "name": "alaya explorer", + "url": "https://scan.alaya.network", + "standard": "none" + } ], "201030": [ { - name: "alaya explorer", - url: "https://devnetscan.alaya.network", - standard: "none", - }, + "name": "alaya explorer", + "url": "https://devnetscan.alaya.network", + "standard": "none" + } ], "201804": [ { - name: "Mythical Chain Explorer", - url: "https://explorer.mythicalgames.com", - icon: "mythical", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Auroria Testnet Explorer", + "url": "https://auroria.explorer.stratisevm.com", + "standard": "EIP3091" + } ], "210425": [ { - name: "PlatON explorer", - url: "https://scan.platon.network", - standard: "none", - }, + "name": "PlatON explorer", + "url": "https://scan.platon.network", + "standard": "none" + } ], "220315": [ { - name: "explorer masnet", - url: "https://explorer.masnet.ai", - standard: "EIP3091", - }, + "name": "explorer masnet", + "url": "https://explorer.masnet.ai", + "standard": "EIP3091" + } ], "221230": [ { - name: "Reapchain Dashboard", - url: "https://dashboard.reapchain.org", - icon: "reapchain", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://explorer.evm.hydration.cloud", + "standard": "EIP3091" + } ], "222555": [ { - name: "DeepL Mainnet Explorer", - url: "https://scan.deeplnetwork.org", - icon: "deepl", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "Taf ECO Chain Mainnet", + "url": "https://ecoscan.tafchain.com", + "standard": "EIP3091" + } ], "224422": [ { - name: "CONET Scan", - url: "https://scan.conet.network", - standard: "EIP3091", - }, + "name": "CONET Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } ], "224433": [ { - name: "CONET Holesky Scan", - url: "https://scan.conet.network", - standard: "EIP3091", - }, + "name": "CONET Holesky Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } ], "230315": [ { - name: "HashKey Chain Testnet Explorer", - url: "https://testnet.hashkeyscan.io", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "saakuru-explorer-testnet", + "url": "https://explorer-testnet.saakuru.network", + "standard": "EIP3091" + } ], "256256": [ { - name: "Mainnet Scan", - url: "https://mainnet.scan.caduceus.foundation", - standard: "none", - }, + "name": "Mainnet Scan", + "url": "https://mainnet.scan.caduceus.foundation", + "standard": "none" + } ], "262371": [ { - name: "Eclat Testnet Explorer", - url: "https://testnet-explorer.eclatscan.com", - standard: "EIP3091", - }, + "name": "Eclat Testnet Explorer", + "url": "https://testnet-explorer.eclatscan.com", + "standard": "EIP3091" + } ], "271271": [ { - name: "EgonCoin Testnet", - url: "https://testnet.egonscan.com", - standard: "EIP3091", - }, + "name": "EgonCoin Testnet", + "url": "https://testnet.egonscan.com", + "standard": "EIP3091" + } ], "282828": [ { - name: "zillscout", - url: "https://sepolia.zillnet.io", - icon: "zillion", - standard: "EIP3091", - }, + "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", - }, + "name": "One World Chain Mainnet Explorer", + "url": "https://mainnet.oneworldchain.org", + "standard": "EIP3091" + } ], "313313": [ { - name: "Testnet Scan", - url: "https://explorer.saharaa.info", - standard: "EIP3091", - }, + "name": "Testnet Scan", + "url": "https://explorer.saharaa.info", + "standard": "EIP3091" + } ], "314159": [ { - name: "Filscan - Calibration", - url: "https://calibration.filscan.io", - standard: "none", + "name": "Filscan - Calibration", + "url": "https://calibration.filscan.io", + "standard": "none" }, { - name: "Filscout - Calibration", - url: "https://calibration.filscout.com/en", - standard: "none", + "name": "Filscout - Calibration", + "url": "https://calibration.filscout.com/en", + "standard": "none" }, { - name: "Filfox - Calibration", - url: "https://calibration.filfox.info", - 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": "Glif Explorer - Calibration", + "url": "https://explorer.glif.io/?network=calibration", + "standard": "none" }, { - name: "Beryx", - url: "https://beryx.zondax.ch", - 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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Bloom Genesis Mainnet", + "url": "https://explorer.bloomgenesis.com", + "standard": "EIP3091" + } ], "333331": [ { - name: "avescan", - url: "https://testnet.avescoin.io", - icon: "avescan", - standard: "EIP3091", - }, + "name": "avescan", + "url": "https://testnet.avescoin.io", + "icon": "avescan", + "standard": "EIP3091" + } ], "333333": [ { - name: "Nativ3 Test Explorer", - url: "https://scantest.nativ3.network", - standard: "EIP3091", - }, + "name": "Nativ3 Test Explorer", + "url": "https://scantest.nativ3.network", + "standard": "EIP3091" + } ], "333666": [ { - name: "blockscout", - url: "https://testnet.oonescan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://testnet.oonescan.com", + "standard": "none" + } ], "333777": [ { - name: "blockscout", - url: "https://dev.oonescan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://dev.oonescan.com", + "standard": "none" + } ], "336655": [ { - name: "UPchain Testnet Explorer", - url: "https://explorer-testnet.uniport.network", - icon: "up", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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://explorer.testnet.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" }, { - name: "Bitfinity Testnet Block Explorer", - url: "https://bitfinity-test.dex.guru", - icon: "dexguru", - 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", - }, + "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", - }, + "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", - }, + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout-test.hap.land", + "standard": "none", + "icon": "hap" + } ], "381931": [ { - name: "metalscan", - url: "https://metalscan.io", - standard: "EIP3091", - }, + "name": "metalscan", + "url": "https://metalscan.io", + "standard": "EIP3091" + } ], "381932": [ { - name: "metalscan", - url: "https://tahoe.metalscan.io", - standard: "EIP3091", - }, + "name": "metalscan", + "url": "https://tahoe.metalscan.io", + "standard": "EIP3091" + } ], "404040": [ { - name: "Tipboxcoin", - url: "https://tipboxcoin.net", - standard: "EIP3091", - }, + "name": "Tipboxcoin", + "url": "https://tipboxcoin.net", + "standard": "EIP3091" + } ], "413413": [ { - name: "aiescan-testnet", - icon: "aie", - url: "https://testnet.aiescan.io", - standard: "none", - }, + "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", - }, + "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", - }, + "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", - }, + "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": "arbiscan-testnet", + "url": "https://testnet.arbiscan.io", + "standard": "EIP3091" }, { - name: "arbitrum-rinkeby", - url: "https://rinkeby-explorer.arbitrum.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", - }, + "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", - }, + "name": "Arbitrum Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.arbitrum.io", + "standard": "EIP3091" + } ], "424242": [ { - name: "blockscout", - url: "https://testnet.ftnscan.com", - standard: "none", - }, + "name": "blockscout", + "url": "https://testnet.ftnscan.com", + "standard": "none" + } ], "432201": [ { - name: "Avalanche Subnet Testnet Explorer", - url: "https://subnets-test.avax.network/dexalot", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "weelink-testnet", + "url": "https://weelink.cloud/#/blockView/overview", + "standard": "none" + } ], "473861": [ { - name: "ultraproscan", - url: "https://ultraproscan.io", - icon: "ultrapro", - standard: "EIP3091", - }, + "name": "ultraproscan", + "url": "https://ultraproscan.io", + "icon": "ultrapro", + "standard": "EIP3091" + } ], "474142": [ { - name: "SIDE SCAN", - url: "https://sidescan.luniverse.io/1641349324562974539", - standard: "none", - }, + "name": "SIDE SCAN", + "url": "https://sidescan.luniverse.io/1641349324562974539", + "standard": "none" + } ], "504441": [ { - name: "Playdapp Explorer", - url: "https://subnets.avax.network/playdappne", - standard: "EIP3091", - }, + "name": "Playdapp Explorer", + "url": "https://subnets.avax.network/playdappne", + "standard": "EIP3091" + } ], "512512": [ { - name: "Galaxy Scan", - url: "https://galaxy.scan.caduceus.foundation", - standard: "none", - }, + "name": "Galaxy Scan", + "url": "https://galaxy.scan.caduceus.foundation", + "standard": "none" + } ], "513100": [ { - name: "DisChain", - url: "https://www.oklink.com/dis", - standard: "EIP3091", - }, + "name": "DisChain", + "url": "https://www.oklink.com/dis", + "standard": "EIP3091" + } ], "526916": [ { - name: "DoCoin Community Chain Explorer", - url: "https://explorer.docoin.shop", - standard: "EIP3091", - }, + "name": "DoCoin Community Chain Explorer", + "url": "https://explorer.docoin.shop", + "standard": "EIP3091" + } ], "534351": [ { - name: "Scroll Sepolia Etherscan", - url: "https://sepolia.scrollscan.com", - standard: "EIP3091", - }, + "name": "Scroll Sepolia Etherscan", + "url": "https://sepolia.scrollscan.com", + "standard": "EIP3091" + } ], "534352": [ { - name: "Scrollscan", - url: "https://scrollscan.com", - standard: "EIP3091", - }, + "name": "Scrollscan", + "url": "https://scrollscan.com", + "standard": "EIP3091" + } ], "534849": [ { - name: "shinascan", - url: "https://shinascan.shinarium.org", - standard: "EIP3091", - }, + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } ], "535037": [ { - name: "bescscan", - url: "https://Bescscan.io", - standard: "EIP3091", - }, + "name": "bescscan", + "url": "https://Bescscan.io", + "standard": "EIP3091" + } ], "552981": [ { - name: "One World Chain Testnet Explorer", - url: "https://testnet.oneworldchain.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipsecha", + "standard": "EIP3091" + } ], "622277": [ { - name: "hypra", - url: "https://explorer.hypra.network", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "name": "Atlas Testnet Scan", + "url": "https://explorer.testnet.atl.network", + "icon": "atlas", + "standard": "EIP3091" + } ], "641230": [ { - name: "brnkscan", - url: "https://brnkscan.bearnetwork.net", - standard: "EIP3091", - }, + "name": "brnkscan", + "url": "https://brnkscan.bearnetwork.net", + "standard": "EIP3091" + } ], "651940": [ { - name: "Alltra SmartChain Explorer", - url: "https://alltra.global", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Won Explorer", + "url": "https://scan.wonnetwork.org", + "standard": "EIP3091" + } ], "696969": [ { - name: "Galadriel Explorer", - url: "https://explorer.galadriel.com", - standard: "none", - }, + "name": "Galadriel Explorer", + "url": "https://explorer.galadriel.com", + "standard": "none" + } ], "710420": [ { - name: "TILTYARD Explorer", - url: "https://subnets.avax.network/tiltyard", - standard: "EIP3091", - }, + "name": "TILTYARD Explorer", + "url": "https://subnets.avax.network/tiltyard", + "standard": "EIP3091" + } ], "713715": [ { - name: "Seistream", - url: "https://seistream.app", - standard: "none", + "name": "Seistream", + "url": "https://seistream.app", + "standard": "none" }, { - name: "Seitrace", - url: "https://seitrace.com", - standard: "EIP3091", - }, + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } ], "721529": [ { - name: "Eramscan", - url: "https://eramscan.com", - standard: "EIP3091", - }, + "name": "Eramscan", + "url": "https://eramscan.com", + "standard": "EIP3091" + } ], "743111": [ { - name: "blockscout", - url: "https://testnet.explorer.hemi.xyz", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://testnet.explorer.hemi.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], "751230": [ { - name: "brnktestscan", - url: "https://brnktest-scan.bearnetwork.net", - standard: "EIP3091", - }, + "name": "brnktestscan", + "url": "https://brnktest-scan.bearnetwork.net", + "standard": "EIP3091" + } ], "761412": [ { - name: "Miexs Smartchain Explorer", - url: "https://miexs.com", - standard: "EIP3091", - }, + "name": "Miexs Smartchain Explorer", + "url": "https://miexs.com", + "standard": "EIP3091" + } ], "764984": [ { - name: "Lamina1 Test Explorer", - url: "https://subnets-test.avax.network/lamina1tes", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "tscscan", + "url": "https://testnet.tscscan.io", + "icon": "netxscan", + "standard": "none" + } ], "827431": [ { - name: "CURVE Mainnet", - url: "https://curvescan.io", - standard: "EIP3091", - }, + "name": "CURVE Mainnet", + "url": "https://curvescan.io", + "standard": "EIP3091" + } ], "839320": [ { - name: "Primal Network Testnet", - url: "https://testnet-explorer.prmscan.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "name": "BlocX Mainnet Explorer", + "url": "https://explorer.blxscan.com", + "icon": "blx", + "standard": "none" + } ], "888882": [ { - name: "REXX Mainnet Explorer", - url: "https://rexxnetwork.com", - standard: "EIP3091", - }, + "name": "REXX Mainnet Explorer", + "url": "https://rexxnetwork.com", + "standard": "EIP3091" + } ], "888888": [ { - name: "Visionscan", - url: "https://www.visionscan.org", - standard: "EIP3091", - }, + "name": "Visionscan", + "url": "https://www.visionscan.org", + "standard": "EIP3091" + } ], "900000": [ { - name: "Posichain Explorer", - url: "https://explorer.posichain.org", - standard: "EIP3091", - }, + "name": "Posichain Explorer", + "url": "https://explorer.posichain.org", + "standard": "EIP3091" + } ], "910000": [ { - name: "Posichain Explorer Testnet", - url: "https://explorer-testnet.posichain.org", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "JONO12 Explorer", + "url": "https://subnets-test.avax.network/jono12", + "standard": "EIP3091" + } ], "955305": [ { - name: "blockscout", - url: "https://explorer.eluv.io", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://explorer.eluv.io", + "standard": "EIP3091" + } ], "978657": [ { - name: "treasurescan", - url: "https://testnet.treasurescan.io", - icon: "treasure", - standard: "EIP3091", - }, + "name": "treasurescan", + "url": "https://testnet.treasurescan.io", + "icon": "treasure", + "standard": "EIP3091" + } ], "984122": [ { - name: "blockscout", - url: "https://explorer.forma.art", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "name": "blockscout", + "url": "https://explorer.sketchpad-1.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } ], "988207": [ { - name: "Ecrox Chain Explorer", - url: "https://ecroxscan.com", - standard: "EIP3091", - }, + "name": "Ecrox Chain Explorer", + "url": "https://ecroxscan.com", + "standard": "EIP3091" + } ], "998899": [ { - name: "supernet-testnet-explorer", - url: "https://testnet-explorer.supernet.chaingames.io", - standard: "EIP3091", - }, + "name": "supernet-testnet-explorer", + "url": "https://testnet-explorer.supernet.chaingames.io", + "standard": "EIP3091" + } ], "999999": [ { - name: "AMCAmChain explorer", - url: "https://explorer.amchain.net", - standard: "none", - }, + "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", - }, + "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", - }, + "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": "Blockscout zKatana chain explorer", + "url": "https://zkatana.blockscout.com", + "standard": "EIP3091" }, { - name: "Startale zKatana chain explorer", - url: "https://zkatana.explorer.startale.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", - }, + "name": "blockscout", + "url": "https://explorer.ethoprotocol.com", + "standard": "none" + } ], "1337702": [ { - name: "kintsugi explorer", - url: "https://explorer.kintsugi.themerge.dev", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "PlayFi Block Explorer", + "url": "https://albireo-explorer.playfi.ai", + "standard": "EIP3091" + } ], "1637450": [ { - name: "Xterio Testnet Explorer", - url: "https://testnet.xterscan.io", - standard: "EIP3091", - }, + "name": "Xterio Testnet Explorer", + "url": "https://testnet.xterscan.io", + "standard": "EIP3091" + } ], "2021398": [ { - name: "DeBank Chain Explorer", - url: "https://explorer.testnet.debank.com", - standard: "EIP3091", - }, + "name": "DeBank Chain Explorer", + "url": "https://explorer.testnet.debank.com", + "standard": "EIP3091" + } ], "2099156": [ { - name: "piscan", - url: "https://piscan.plian.org/pchain", - standard: "EIP3091", - }, + "name": "piscan", + "url": "https://piscan.plian.org/pchain", + "standard": "EIP3091" + } ], "2206132": [ { - name: "PlatON explorer", - url: "https://devnet2scan.platon.network", - standard: "none", - }, + "name": "PlatON explorer", + "url": "https://devnet2scan.platon.network", + "standard": "none" + } ], "3397901": [ { - name: "Funki Sepolia Sandbox Explorer", - url: "https://sepolia-sandbox.funkichain.com", - standard: "none", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Moonchain Geneva Testnet", + "url": "https://geneva-explorer.moonchain.com", + "standard": "EIP3091" + } ], "5201420": [ { - name: "blockscout", - url: "https://blockexplorer.thesecurityteam.rocks", - icon: "electroneum", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://blockexplorer.thesecurityteam.rocks", + "icon": "electroneum", + "standard": "EIP3091" + } ], "5318008": [ { - name: "reactscan", - url: "https://kopli.reactscan.net", - standard: "none", - }, + "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 EVM explorer (Blockscout)", + "url": "https://txe.imversed.network", + "icon": "imversed", + "standard": "EIP3091" }, { - name: "Imversed Cosmos Explorer (Big Dipper)", - url: "https://tex-c.imversed.com", - icon: "imversed", - standard: "none", - }, + "name": "Imversed 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 EVM Explorer (Blockscout)", + "url": "https://txe-test.imversed.network", + "icon": "imversed", + "standard": "EIP3091" }, { - name: "Imversed Cosmos Explorer (Big Dipper)", - url: "https://tex-t.imversed.com", - icon: "imversed", - standard: "none", - }, + "name": "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "saakuru-explorer", + "url": "https://explorer.saakuru.network", + "standard": "EIP3091" + } ], "7355310": [ { - name: "openvessel-mainnet", - url: "https://mainnet-explorer.openvessel.io", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "Zora Network Explorer", + "url": "https://explorer.zora.energy", + "standard": "EIP3091" + } ], "8007736": [ { - name: "piscan", - url: "https://piscan.plian.org/child_0", - standard: "EIP3091", - }, + "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", - }, + "name": "Fhenix Helium Explorer (Blockscout)", + "url": "https://explorer.helium.fhenix.zone", + "standard": "EIP3091" + } ], "8080808": [ { - name: "Hokum Explorer", - url: "https://explorer.hokum.gg", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "piscan", + "url": "https://testnet.plian.org/child_test", + "standard": "EIP3091" + } ], "10101010": [ { - name: "Soverun", - url: "https://explorer.soverun.com", - standard: "EIP3091", - }, + "name": "Soverun", + "url": "https://explorer.soverun.com", + "standard": "EIP3091" + } ], "10241025": [ { - name: "Hal Explorer", - url: "https://hal-explorer.alienxchain.io", - standard: "EIP3091", - }, + "name": "Hal Explorer", + "url": "https://hal-explorer.alienxchain.io", + "standard": "EIP3091" + } ], "11155111": [ { - name: "etherscan-sepolia", - url: "https://sepolia.etherscan.io", - standard: "EIP3091", + "name": "etherscan-sepolia", + "url": "https://sepolia.etherscan.io", + "standard": "EIP3091" }, { - name: "otterscan-sepolia", - url: "https://sepolia.otterscan.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", - }, + "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", - }, + "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", - }, + "name": "anduschain explorer", + "url": "https://explorer.anduschain.io", + "icon": "daon", + "standard": "none" + } ], "16658437": [ { - name: "piscan", - url: "https://testnet.plian.org/testnet", - standard: "EIP3091", - }, + "name": "piscan", + "url": "https://testnet.plian.org/testnet", + "standard": "EIP3091" + } ], "17000920": [ { - name: "Lambda Chain Testnet Explorer", - url: "https://testscan.lambda.im", - standard: "EIP3091", - }, + "name": "Lambda Chain Testnet Explorer", + "url": "https://testscan.lambda.im", + "standard": "EIP3091" + } ], "20180427": [ { - name: "blockscout", - url: "https://stability-testnet.blockscout.com", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://stability-testnet.blockscout.com", + "standard": "EIP3091" + } ], "20180430": [ { - name: "spectrum", - url: "https://spectrum.pub", - standard: "none", - }, + "name": "spectrum", + "url": "https://spectrum.pub", + "standard": "none" + } ], "20181205": [ { - name: "qkiscan", - url: "https://qkiscan.io", - standard: "EIP3091", - }, + "name": "qkiscan", + "url": "https://qkiscan.io", + "standard": "EIP3091" + } ], "20201022": [ { - name: "Pego Network Explorer", - url: "https://scan.pego.network", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "Hokum Explorer", + "url": "https://testnet-explorer.hokum.gg", + "standard": "EIP3091" + } ], "22052002": [ { - name: "Excelon explorer", - url: "https://explorer.excelon.io", - standard: "EIP3091", - }, + "name": "Excelon explorer", + "url": "https://explorer.excelon.io", + "standard": "EIP3091" + } ], "27082017": [ { - name: "exlscan", - url: "https://testnet-explorer.exlscan.com", - icon: "exl", - standard: "EIP3091", - }, + "name": "exlscan", + "url": "https://testnet-explorer.exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } ], "27082022": [ { - name: "exlscan", - url: "https://exlscan.com", - icon: "exl", - standard: "EIP3091", - }, + "name": "exlscan", + "url": "https://exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } ], "28122024": [ { - name: "scan-testnet", - url: "https://scanv2-testnet.ancient8.gg", - standard: "EIP3091", - }, + "name": "scan-testnet", + "url": "https://scanv2-testnet.ancient8.gg", + "standard": "EIP3091" + } ], "29032022": [ { - name: "FLXExplorer", - url: "https://explorer.flaexchange.top", - standard: "EIP3091", - }, + "name": "FLXExplorer", + "url": "https://explorer.flaexchange.top", + "standard": "EIP3091" + } ], "37084624": [ { - name: "Blockscout", - url: "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", - standard: "EIP3091", - }, + "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", - }, + "name": "TravelSong", + "url": "https://www.beastkingdom.io/travelsong", + "standard": "EIP3091" + } ], "43214913": [ { - name: "maistesntet", - url: "http://174.138.9.169:3006/?network=maistesntet", - standard: "none", - }, + "name": "maistesntet", + "url": "http://174.138.9.169:3006/?network=maistesntet", + "standard": "none" + } ], "65010002": [ { - name: "autonity-blockscout", - url: "https://bakerloo.autonity.org", - standard: "EIP3091", - }, + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } ], "65100002": [ { - name: "autonity-blockscout", - url: "https://piccadilly.autonity.org", - standard: "EIP3091", - }, + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } ], "68840142": [ { - name: "Frame Testnet Explorer", - url: "https://explorer.testnet.frame.xyz", - standard: "EIP3091", - }, + "name": "Frame Testnet Explorer", + "url": "https://explorer.testnet.frame.xyz", + "standard": "EIP3091" + } ], "77787778": [ { - name: "blockscout", - url: "https://test.0xhashscan.io", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://test.0xhashscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } ], "88888888": [ { - name: "teamscan", - url: "https://teamblockchain.team", - standard: "EIP3091", - }, + "name": "teamscan", + "url": "https://teamblockchain.team", + "standard": "EIP3091" + } ], "94204209": [ { - name: "blockscout", - url: "https://polygon-blackberry.gelatoscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://polygon-blackberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "111557560": [ { - name: "Cyber Testnet Explorer", - url: "https://testnet.cyberscan.co", - standard: "EIP3091", - }, + "name": "Cyber Testnet Explorer", + "url": "https://testnet.cyberscan.co", + "standard": "EIP3091" + } ], "123420111": [ { - name: "blockscout", - url: "https://opcelestia-raspberry.gelatoscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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://testnet.meldscan.io", + "icon": "meld", + "standard": "EIP3091" }, { - name: "explorer", - url: "https://subnets-test.avax.network/meld", - 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": "neonscan", + "url": "https://devnet.neonscan.org", + "standard": "EIP3091" }, { - name: "blockscout", - url: "https://neon-devnet.blockscout.com", - icon: "blockscout", - standard: "EIP3091", - }, + "name": "blockscout", + "url": "https://neon-devnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "245022934": [ { - name: "neonscan", - url: "https://neonscan.org", - standard: "EIP3091", + "name": "neonscan", + "url": "https://neonscan.org", + "standard": "EIP3091" }, { - name: "native", - url: "https://neon.blockscout.com", - 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", - }, + "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", - }, + "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", - }, + "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://meldscan.io", + "icon": "meld", + "standard": "EIP3091" }, { - name: "explorer", - url: "https://subnets.avax.network/meld", - 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", - }, + "name": "Blockscout", + "url": "https://testnet-explorer.gather.network", + "icon": "gather", + "standard": "none" + } ], "486217935": [ { - name: "Blockscout", - url: "https://devnet-explorer.gather.network", - standard: "none", - }, + "name": "Blockscout", + "url": "https://devnet-explorer.gather.network", + "standard": "none" + } ], "888888888": [ { - name: "Ancient8 Explorer", - url: "https://scan.ancient8.gg", - standard: "EIP3091", - }, + "name": "Ancient8 Explorer", + "url": "https://scan.ancient8.gg", + "standard": "EIP3091" + } ], "889910245": [ { - name: "PTCESCAN Testnet Explorer", - url: "https://explorer-testnet.ptcscan.io", - standard: "EIP3091", - }, + "name": "PTCESCAN Testnet Explorer", + "url": "https://explorer-testnet.ptcscan.io", + "standard": "EIP3091" + } ], "889910246": [ { - name: "PTCESCAN Explorer", - url: "https://ptcscan.io", - standard: "EIP3091", - }, + "name": "PTCESCAN Explorer", + "url": "https://ptcscan.io", + "standard": "EIP3091" + } ], "974399131": [ { - name: "Blockscout", - url: "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "aurorascan.dev", + "url": "https://aurorascan.dev", + "standard": "EIP3091" + } ], "1313161555": [ { - name: "aurorascan.dev", - url: "https://testnet.aurorascan.dev", - standard: "EIP3091", - }, + "name": "aurorascan.dev", + "url": "https://testnet.aurorascan.dev", + "standard": "EIP3091" + } ], "1313161560": [ { - name: "PowerGold explorer", - url: "https://explorer.powergold.aurora.dev", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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", - }, + "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 Scan", + "url": "https://sepolia.kakarotscan.org", + "standard": "EIP3091" }, { - name: "Kakarot Explorer", - url: "https://sepolia-explorer.kakarot.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", - }, + "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", - }, + "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", - }, + "name": "OneLedger Block Explorer", + "url": "https://frankenstein-explorer.oneledger.network", + "standard": "EIP3091" + } ], "11297108109": [ { - name: "Chainlens", - url: "https://palm.chainlens.com", - standard: "EIP3091", + "name": "Chainlens", + "url": "https://palm.chainlens.com", + "standard": "EIP3091" }, { - name: "Dora", - url: "https://www.ondora.xyz/network/palm", - standard: "none", - }, + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm", + "standard": "none" + } ], "11297108099": [ { - name: "Chainlens", - url: "https://testnet.palm.chainlens.com", - standard: "EIP3091", + "name": "Chainlens", + "url": "https://testnet.palm.chainlens.com", + "standard": "EIP3091" }, { - name: "Dora", - url: "https://www.ondora.xyz/network/palm-testnet", - standard: "none", - }, + "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", - }, + "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", - }, + "name": "blockscout", + "url": "https://arb-blueberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], "111222333444": [ { - name: "Alphabet Explorer", - url: "https://scan.alphabetnetwork.org", - standard: "EIP3091", - }, + "name": "Alphabet Explorer", + "url": "https://scan.alphabetnetwork.org", + "standard": "EIP3091" + } ], "197710212030": [ { - name: "Ntity Blockscout", - url: "https://blockscout.ntity.io", - icon: "ntity", - standard: "EIP3091", - }, + "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", - }, + "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", - }, + "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", - }, + "name": "zeniq-smart-chain-explorer", + "url": "https://smart.zeniq.net", + "standard": "EIP3091" + } ], "666301171999": [ { - name: "ipdcscan", - url: "https://scan.ipdc.io", - standard: "EIP3091", - }, + "name": "ipdcscan", + "url": "https://scan.ipdc.io", + "standard": "EIP3091" + } ], "2713017997578000": [ { - name: "dchaint scan", - url: "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", - standard: "EIP3091", - }, + "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_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"], + "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"], + "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": [], @@ -24495,12 +13633,18 @@ export const NETWORK_FAUCETS = { "13": [], "14": [], "15": [], - "16": ["https://faucet.flare.network"], + "16": [ + "https://faucet.flare.network" + ], "17": [], - "18": ["https://faucet-testnet.thundercore.com"], + "18": [ + "https://faucet-testnet.thundercore.com" + ], "19": [], "20": [], - "21": ["https://esc-faucet.elastos.io/"], + "21": [ + "https://esc-faucet.elastos.io/" + ], "22": [], "23": [], "24": [], @@ -24509,7 +13653,9 @@ export const NETWORK_FAUCETS = { "27": [], "29": [], "30": [], - "31": ["https://faucet.rsk.co/"], + "31": [ + "https://faucet.rsk.co/" + ], "32": [], "33": [], "34": [], @@ -24519,37 +13665,60 @@ export const NETWORK_FAUCETS = { "38": [], "39": [], "40": [], - "41": ["https://app.telos.net/testnet/developers"], + "41": [ + "https://app.telos.net/testnet/developers" + ], "42": [], - "43": ["https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a"], + "43": [ + "https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a" + ], "44": [], - "45": ["https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2"], + "45": [ + "https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2" + ], "46": [], "47": [], "48": [], "49": [], "50": [], - "51": ["https://faucet.apothem.network"], + "51": [ + "https://faucet.apothem.network" + ], "52": [], "53": [], "54": [], "55": [], "56": [], - "57": ["https://faucet.syscoin.org"], + "57": [ + "https://faucet.syscoin.org" + ], "58": [], "60": [], "61": [], - "63": ["https://easy.hebeswap.com/#/faucet", "https://faucet.mordortest.net"], + "63": [ + "https://easy.hebeswap.com/#/faucet", + "https://faucet.mordortest.net" + ], "64": [], - "65": ["https://www.okex.com/drawdex"], + "65": [ + "https://www.okex.com/drawdex" + ], "66": [], "67": [], "68": [], - "69": ["http://fauceth.komputing.org?chain=69&address=${ADDRESS}"], + "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"], + "71": [ + "https://faucet.confluxnetwork.org" + ], + "72": [ + "https://faucet.dxscan.io" + ], + "73": [ + "https://faucet-testnet.fncy.world" + ], "74": [], "75": [], "76": [], @@ -24558,11 +13727,19 @@ export const NETWORK_FAUCETS = { "79": [], "80": [], "81": [], - "82": ["https://faucet.meter.io"], - "83": ["https://faucet-warringstakes.meter.io"], + "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"], + "85": [ + "https://www.gatescan.org/testnet/faucet" + ], + "86": [ + "https://www.gatescan.org/faucet" + ], "87": [], "88": [], "89": [], @@ -24571,35 +13748,57 @@ export const NETWORK_FAUCETS = { "92": [], "93": [], "94": [], - "95": ["https://faucet.camdl.gov.kh/"], + "95": [ + "https://faucet.camdl.gov.kh/" + ], "96": [], - "97": ["https://testnet.bnbchain.org/faucet-smart"], + "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"], + "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"], + "107": [ + "https://faucet.novanetwork.io" + ], "108": [], "109": [], "110": [], - "111": ["https://etherlite.org/faucets"], + "111": [ + "https://etherlite.org/faucets" + ], "112": [], - "113": ["https://buy.dehvo.com"], - "114": ["https://faucet.flare.network"], + "113": [ + "https://buy.dehvo.com" + ], + "114": [ + "https://faucet.flare.network" + ], "117": [], "118": [], "119": [], - "120": ["http://faucet.nuls.io"], + "120": [ + "http://faucet.nuls.io" + ], "121": [], "122": [], - "123": ["https://get.fusespark.io"], + "123": [ + "https://get.fusespark.io" + ], "124": [], - "125": ["https://faucet.oychain.io"], + "125": [ + "https://faucet.oychain.io" + ], "126": [], "127": [], "128": [], @@ -24608,7 +13807,9 @@ export const NETWORK_FAUCETS = { "132": [], "133": [], "134": [], - "135": ["https://faucet.alyxchain.com"], + "135": [ + "https://faucet.alyxchain.com" + ], "136": [], "137": [], "138": [], @@ -24620,27 +13821,39 @@ export const NETWORK_FAUCETS = { "145": [], "147": [], "148": [], - "150": ["https://faucet.sixprotocol.net"], + "150": [ + "https://faucet.sixprotocol.net" + ], "151": [], "152": [], "153": [], "154": [], - "155": ["https://faucet.testnet.tenet.org"], + "155": [ + "https://faucet.testnet.tenet.org" + ], "156": [], - "157": ["https://beta.shibariumtech.com/faucet"], + "157": [ + "https://beta.shibariumtech.com/faucet" + ], "158": [], "159": [], "160": [], "161": [], - "162": ["https://discuss.lightstreams.network/t/request-test-tokens"], + "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"], + "170": [ + "https://faucet-testnet.hscscan.com/" + ], + "172": [ + "https://faucet.latam-blockchain.com" + ], "176": [], "180": [], "181": [], @@ -24650,9 +13863,13 @@ export const NETWORK_FAUCETS = { "189": [], "191": [], "193": [], - "195": ["https://www.okx.com/xlayer/faucet"], + "195": [ + "https://www.okx.com/xlayer/faucet" + ], "196": [], - "197": ["https://neutrinoschain.com/faucet"], + "197": [ + "https://neutrinoschain.com/faucet" + ], "198": [], "199": [], "200": [], @@ -24663,63 +13880,95 @@ export const NETWORK_FAUCETS = { "207": [], "208": [], "210": [], - "211": ["http://faucet.freight.sh"], - "212": ["https://faucet.mapprotocol.io"], + "211": [ + "http://faucet.freight.sh" + ], + "212": [ + "https://faucet.mapprotocol.io" + ], "213": [], "214": [], "217": [], - "220": ["https://faucet.scalind.com"], + "220": [ + "https://faucet.scalind.com" + ], "223": [], - "224": ["https://faucet.vrd.network"], + "224": [ + "https://faucet.vrd.network" + ], "225": [], "226": [], "228": [], "230": [], - "234": ["https://protojumbo.jumbochain.org/faucet-smart"], - "236": ["https://faucet.deamchain.com"], + "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"], + "256": [ + "https://scan-testnet.hecochain.com/faucet" + ], "258": [], "259": [], "262": [], "266": [], - "267": ["https://testnet.neuraprotocol.io/faucet"], + "267": [ + "https://testnet.neuraprotocol.io/faucet" + ], "268": [], - "269": ["https://myhpbwallet.com/"], + "269": [ + "https://myhpbwallet.com/" + ], "271": [], "274": [], "278": [], "279": [], - "282": ["https://zkevm.cronos.org/faucet"], + "282": [ + "https://zkevm.cronos.org/faucet" + ], "288": [], "291": [], "295": [], - "296": ["https://portal.hedera.com"], - "297": ["https://portal.hedera.com"], + "296": [ + "https://portal.hedera.com" + ], + "297": [ + "https://portal.hedera.com" + ], "298": [], "300": [], "302": [], "303": [], "305": [], - "307": ["https://faucet.lovely.network"], + "307": [ + "https://faucet.lovely.network" + ], "308": [], "309": [], - "311": ["https://faucet.omaxray.com/"], + "311": [ + "https://faucet.omaxray.com/" + ], "313": [], "314": [], "321": [], - "322": ["https://faucet-testnet.kcc.network"], + "322": [ + "https://faucet-testnet.kcc.network" + ], "323": [], "324": [], "333": [], "335": [], "336": [], - "338": ["https://cronos.org/faucet"], + "338": [ + "https://cronos.org/faucet" + ], "345": [], "361": [], "363": [], @@ -24729,17 +13978,25 @@ export const NETWORK_FAUCETS = { "371": [], "380": [], "381": [], - "385": ["https://pipa.lisinski.online"], - "395": ["https://faucet.testnet.camdl.gov.kh/"], + "385": [ + "https://pipa.lisinski.online" + ], + "395": [ + "https://faucet.testnet.camdl.gov.kh/" + ], "397": [], "398": [], "399": [], - "400": ["https://faucet.hyperonchain.com"], + "400": [ + "https://faucet.hyperonchain.com" + ], "401": [], "404": [], "411": [], "416": [], - "418": ["https://faucet.lachain.network"], + "418": [ + "https://faucet.lachain.network" + ], "420": [], "422": [], "424": [], @@ -24756,19 +14013,29 @@ export const NETWORK_FAUCETS = { "501": [], "510": [], "512": [], - "513": ["https://scan-testnet.acuteangle.com/faucet"], + "513": [ + "https://scan-testnet.acuteangle.com/faucet" + ], "516": [], - "520": ["https://xsc.pub/faucet"], + "520": [ + "https://xsc.pub/faucet" + ], "529": [], "530": [], "534": [], "537": [], "542": [], - "545": ["https://testnet-faucet.onflow.org"], + "545": [ + "https://testnet-faucet.onflow.org" + ], "555": [], "558": [], - "568": ["https://faucet.dogechain.dog"], - "570": ["https://rollux.id/faucetapp"], + "568": [ + "https://faucet.dogechain.dog" + ], + "570": [ + "https://rollux.id/faucetapp" + ], "571": [], "579": [], "592": [], @@ -24776,74 +14043,118 @@ export const NETWORK_FAUCETS = { "596": [], "597": [], "600": [], - "601": ["https://vne.network/rose"], + "601": [ + "https://vne.network/rose" + ], "612": [], "614": [], "634": [], - "646": ["https://previewnet-faucet.onflow.org"], - "647": ["https://faucet.toronto.sx.technology"], + "646": [ + "https://previewnet-faucet.onflow.org" + ], + "647": [ + "https://faucet.toronto.sx.technology" + ], "648": [], "653": [], "654": [], "662": [], - "666": ["https://chain.pixie.xyz/faucet"], + "666": [ + "https://chain.pixie.xyz/faucet" + ], "667": [], "668": [], - "669": ["https://faucet-testnet.juncachain.com"], + "669": [ + "https://faucet-testnet.juncachain.com" + ], "686": [], "690": [], "700": [], "701": [], "707": [], - "708": ["https://faucet.bcsdev.io"], + "708": [ + "https://faucet.bcsdev.io" + ], "710": [], "713": [], "719": [], "721": [], "727": [], "730": [], - "741": ["https://faucet.vention.network"], + "741": [ + "https://faucet.vention.network" + ], "742": [], "747": [], "766": [], - "776": ["https://faucet.openchain.info/"], + "776": [ + "https://faucet.openchain.info/" + ], "777": [], "786": [], "787": [], - "788": ["https://faucet.aerochain.id/"], + "788": [ + "https://faucet.aerochain.id/" + ], "789": [], - "799": ["https://faucet.testnet.rupaya.io"], - "800": ["https://faucet.lucidcoin.io"], + "799": [ + "https://faucet.testnet.rupaya.io" + ], + "800": [ + "https://faucet.lucidcoin.io" + ], "803": [], "808": [], - "810": ["https://www.haven1.org/faucet"], + "810": [ + "https://www.haven1.org/faucet" + ], "813": [], "814": [], "818": [], "820": [], - "822": ["https://faucet.runic.build"], + "822": [ + "https://faucet.runic.build" + ], "831": [], "841": [], "842": [], "859": [], "868": [], "876": [], - "877": ["https://faucet.dexit.network"], + "877": [ + "https://faucet.dexit.network" + ], "880": [], "888": [], - "898": ["https://faucet.maxi.network"], + "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"], + "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/"], + "917": [ + "https://faucet.thefirechain.com" + ], + "919": [ + "https://sepoliafaucet.com/" + ], "927": [], - "943": ["https://faucet.v4.testnet.pulsechain.com/"], + "943": [ + "https://faucet.v4.testnet.pulsechain.com/" + ], "956": [], "957": [], "963": [], @@ -24851,17 +14162,27 @@ export const NETWORK_FAUCETS = { "970": [], "971": [], "972": [], - "977": ["https://faucet.nepalblockchain.network"], + "977": [ + "https://faucet.nepalblockchain.network" + ], "979": [], "980": [], - "985": ["https://faucet.metamemo.one/"], + "985": [ + "https://faucet.metamemo.one/" + ], "989": [], - "990": ["https://faucet.eliberty.ngo"], - "997": ["https://explorer.5ire.network/faucet"], + "990": [ + "https://faucet.eliberty.ngo" + ], + "997": [ + "https://explorer.5ire.network/faucet" + ], "998": [], "999": [], "1000": [], - "1001": ["https://baobab.wallet.klaytn.com/access?next=faucet"], + "1001": [ + "https://baobab.wallet.klaytn.com/access?next=faucet" + ], "1003": [], "1004": [], "1007": [], @@ -24876,10 +14197,17 @@ export const NETWORK_FAUCETS = { "1028": [], "1030": [], "1031": [], - "1038": ["https://faucet.bronos.org"], + "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"], + "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": [], @@ -24890,20 +14218,32 @@ export const NETWORK_FAUCETS = { "1107": [], "1108": [], "1111": [], - "1112": ["https://wallet.test.wemix.com/faucet"], + "1112": [ + "https://wallet.test.wemix.com/faucet" + ], "1113": [], - "1115": ["https://scan.test.btcs.network/faucet"], + "1115": [ + "https://scan.test.btcs.network/faucet" + ], "1116": [], - "1117": ["https://faucet.dogcoin.network"], + "1117": [ + "https://faucet.dogcoin.network" + ], "1123": [], "1130": [], "1131": [], - "1133": ["http://tc04.mydefichain.com/faucet"], + "1133": [ + "http://tc04.mydefichain.com/faucet" + ], "1135": [], "1138": [], "1139": [], - "1140": ["https://scan.boka.network/#/Galois/faucet"], - "1147": ["https://faucet.flagscan.xyz"], + "1140": [ + "https://scan.boka.network/#/Galois/faucet" + ], + "1147": [ + "https://faucet.flagscan.xyz" + ], "1149": [], "1170": [], "1177": [], @@ -24913,7 +14253,9 @@ export const NETWORK_FAUCETS = { "1201": [], "1202": [], "1209": [], - "1210": ["https://cuckoo.network/portal/faucet/"], + "1210": [ + "https://cuckoo.network/portal/faucet/" + ], "1213": [], "1214": [], "1221": [], @@ -24924,21 +14266,31 @@ export const NETWORK_FAUCETS = { "1234": [], "1235": [], "1243": [], - "1244": ["https://faucet.archiechain.io"], + "1244": [ + "https://faucet.archiechain.io" + ], "1246": [], "1248": [], - "1252": ["https://cicfaucet.com"], + "1252": [ + "https://cicfaucet.com" + ], "1280": [], "1284": [], "1285": [], "1287": [], "1288": [], - "1291": ["https://faucet.testnet.swisstronik.com"], + "1291": [ + "https://faucet.testnet.swisstronik.com" + ], "1311": [], "1314": [], "1319": [], - "1320": ["https://aia-faucet-testnet.aiachain.org"], - "1328": ["https://atlantic-2.app.sei.io/faucet"], + "1320": [ + "https://aia-faucet-testnet.aiachain.org" + ], + "1328": [ + "https://atlantic-2.app.sei.io/faucet" + ], "1329": [], "1337": [], "1338": [], @@ -24956,14 +14308,20 @@ export const NETWORK_FAUCETS = { "1440": [], "1442": [], "1452": [], - "1453": ["https://istanbul-faucet.metachain.dev"], - "1455": ["https://faucet.ctexscan.com"], + "1453": [ + "https://istanbul-faucet.metachain.dev" + ], + "1455": [ + "https://faucet.ctexscan.com" + ], "1490": [], "1499": [], "1501": [], "1506": [], "1507": [], - "1515": ["https://faucet.beagle.chat/"], + "1515": [ + "https://faucet.beagle.chat/" + ], "1559": [], "1617": [], "1618": [], @@ -24971,13 +14329,19 @@ export const NETWORK_FAUCETS = { "1625": [], "1657": [], "1662": [], - "1663": ["https://faucet.horizen.io"], + "1663": [ + "https://faucet.horizen.io" + ], "1686": [], "1687": [], "1688": [], - "1701": ["https://evm.anytype.io/faucet"], + "1701": [ + "https://evm.anytype.io/faucet" + ], "1707": [], - "1708": ["https://faucet.blockchain.or.th"], + "1708": [ + "https://faucet.blockchain.or.th" + ], "1717": [], "1718": [], "1729": [], @@ -24986,23 +14350,35 @@ export const NETWORK_FAUCETS = { "1773": [], "1777": [], "1789": [], - "1804": ["https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md"], - "1807": ["https://analogfaucet.com"], + "1804": [ + "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" + ], + "1807": [ + "https://analogfaucet.com" + ], "1818": [], - "1819": ["https://faucet.cube.network"], + "1819": [ + "https://faucet.cube.network" + ], "1821": [], "1856": [], "1875": [], "1881": [], "1890": [], - "1891": ["https://faucet.pegasus.lightlink.io/"], + "1891": [ + "https://faucet.pegasus.lightlink.io/" + ], "1898": [], "1904": [], "1907": [], - "1908": ["https://faucet.bitcichain.com"], + "1908": [ + "https://faucet.bitcichain.com" + ], "1909": [], "1911": [], - "1912": ["https://claim-faucet.rubychain.io/"], + "1912": [ + "https://claim-faucet.rubychain.io/" + ], "1918": [], "1945": [], "1951": [], @@ -25010,8 +14386,12 @@ export const NETWORK_FAUCETS = { "1954": [], "1956": [], "1961": [], - "1967": ["https://faucet.metatime.com/eleanor"], - "1969": ["https://testnet.scschain.com"], + "1967": [ + "https://faucet.metatime.com/eleanor" + ], + "1969": [ + "https://testnet.scschain.com" + ], "1970": [], "1971": [], "1972": [], @@ -25022,10 +14402,14 @@ export const NETWORK_FAUCETS = { "1987": [], "1992": [], "1994": [], - "1995": ["https://faucet.edexa.com/"], + "1995": [ + "https://faucet.edexa.com/" + ], "1996": [], "1997": [], - "1998": ["https://faucet.kyotoprotocol.io"], + "1998": [ + "https://faucet.kyotoprotocol.io" + ], "2000": [], "2001": [], "2002": [], @@ -25035,13 +14419,17 @@ export const NETWORK_FAUCETS = { "2013": [], "2014": [], "2016": [], - "2017": ["https://telcoin.network/faucet"], + "2017": [ + "https://telcoin.network/faucet" + ], "2018": [], "2019": [], "2020": [], "2021": [], "2022": [], - "2023": ["https://ttaycan-faucet.hupayx.io/"], + "2023": [ + "https://ttaycan-faucet.hupayx.io/" + ], "2024": [], "2025": [], "2026": [], @@ -25076,35 +14464,59 @@ export const NETWORK_FAUCETS = { "2152": [], "2153": [], "2154": [], - "2199": ["https://multiverse.moonsama.com/faucet"], - "2202": ["https://faucet.antofy.io"], + "2199": [ + "https://multiverse.moonsama.com/faucet" + ], + "2202": [ + "https://faucet.antofy.io" + ], "2203": [], "2213": [], - "2221": ["https://faucet.kava.io"], + "2221": [ + "https://faucet.kava.io" + ], "2222": [], "2223": [], "2241": [], "2300": [], "2306": [], "2309": [], - "2323": ["https://faucet.somanetwork.io"], + "2323": [ + "https://faucet.somanetwork.io" + ], "2330": [], "2331": [], - "2332": ["https://airdrop.somanetwork.io"], - "2340": ["https://app-olympia.atleta.network/faucet"], - "2342": ["https://www.omniaverse.io"], + "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/"], + "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"], + "2458": [ + "https://faucet-testnet.hybridchain.ai" + ], + "2468": [ + "https://faucet-testnet.hybridchain.ai" + ], + "2484": [ + "https://faucet.uniultra.xyz" + ], "2522": [], "2525": [], "2559": [], @@ -25112,8 +14524,12 @@ export const NETWORK_FAUCETS = { "2606": [], "2611": [], "2612": [], - "2613": ["https://testnet-faucet.ezchain.com"], - "2625": ["https://testnet.whitechain.io/faucet"], + "2613": [ + "https://testnet-faucet.ezchain.com" + ], + "2625": [ + "https://testnet.whitechain.io/faucet" + ], "2648": [], "2649": [], "2662": [], @@ -25126,10 +14542,16 @@ export const NETWORK_FAUCETS = { "2810": [], "2907": [], "2911": [], - "2941": ["https://xfaucet.xenonchain.com"], + "2941": [ + "https://xfaucet.xenonchain.com" + ], "2999": [], - "3000": ["https://app-faucet.centrality.me"], - "3001": ["https://app-faucet.centrality.me"], + "3000": [ + "https://app-faucet.centrality.me" + ], + "3001": [ + "https://app-faucet.centrality.me" + ], "3003": [], "3011": [], "3031": [], @@ -25141,78 +14563,134 @@ export const NETWORK_FAUCETS = { "3109": [], "3110": [], "3269": [], - "3270": ["https://faucet.arabianchain.org/"], + "3270": [ + "https://faucet.arabianchain.org/" + ], "3306": [], - "3331": ["https://faucet.zcore.cash"], + "3331": [ + "https://faucet.zcore.cash" + ], "3333": [], "3334": [], "3335": [], "3400": [], "3424": [], - "3434": ["https://faucet.securechain.ai"], - "3456": ["https://testnet-faucet.layeredge.io"], + "3434": [ + "https://faucet.securechain.ai" + ], + "3456": [ + "https://testnet-faucet.layeredge.io" + ], "3490": [], - "3500": ["https://faucet.paribuscan.com"], + "3500": [ + "https://faucet.paribuscan.com" + ], "3501": [], "3601": [], "3602": [], "3630": [], - "3636": ["https://faucet.botanixlabs.dev"], - "3637": ["https://faucet.btxtestchain.com"], + "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"], + "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"], + "3799": [ + "https://faucet.tangle.tools" + ], + "3885": [ + "zkevm-faucet.thefirechain.com" + ], "3888": [], "3889": [], - "3912": ["https://www.dracscan.io/faucet"], + "3912": [ + "https://www.dracscan.io/faucet" + ], "3939": [], - "3966": ["https://faucet.dynoscan.io"], - "3967": ["https://faucet.dynoscan.io"], - "3993": ["https://sepoliafaucet.com/"], + "3966": [ + "https://faucet.dynoscan.io" + ], + "3967": [ + "https://faucet.dynoscan.io" + ], + "3993": [ + "https://sepoliafaucet.com/" + ], "3999": [], "4000": [], "4001": [], - "4002": ["https://faucet.fantom.network"], + "4002": [ + "https://faucet.fantom.network" + ], "4003": [], - "4040": ["https://getfaucet.carbonium.network"], + "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"], + "4090": [ + "https://faucet.oasis.fastexchain.com" + ], + "4096": [ + "https://faucet.bitindi.org" + ], + "4099": [ + "https://faucet.bitindi.org" + ], "4102": [], "4139": [], - "4141": ["https://faucet.tipboxcoin.net"], + "4141": [ + "https://faucet.tipboxcoin.net" + ], "4157": [], "4181": [], "4200": [], - "4201": ["https://faucet.testnet.lukso.network"], - "4202": ["https://app.optimism.io/faucet"], + "4201": [ + "https://faucet.testnet.lukso.network" + ], + "4202": [ + "https://app.optimism.io/faucet" + ], "4242": [], "4243": [], - "4337": ["https://faucet.onbeam.com"], + "4337": [ + "https://faucet.onbeam.com" + ], "4400": [], - "4444": ["https://gruvin.me/htmlcoin"], + "4444": [ + "https://gruvin.me/htmlcoin" + ], "4460": [], "4488": [], - "4544": ["https://faucet.emoney.network/faucet"], + "4544": [ + "https://faucet.emoney.network/faucet" + ], "4613": [], "4653": [], "4689": [], - "4690": ["https://faucet.iotex.io/"], + "4690": [ + "https://faucet.iotex.io/" + ], "4759": [], "4777": [], "4893": [], @@ -25220,9 +14698,13 @@ export const NETWORK_FAUCETS = { "4919": [], "4999": [], "5000": [], - "5001": ["https://faucet.testnet.mantle.xyz"], + "5001": [ + "https://faucet.testnet.mantle.xyz" + ], "5002": [], - "5003": ["https://faucet.sepolia.mantle.xyz"], + "5003": [ + "https://faucet.sepolia.mantle.xyz" + ], "5005": [], "5039": [], "5040": [], @@ -25243,53 +14725,87 @@ export const NETWORK_FAUCETS = { "5315": [], "5317": [], "5321": [], - "5353": ["https://faucet.tritanium.network"], - "5372": ["https://faucet.settlus.io"], + "5353": [ + "https://faucet.tritanium.network" + ], + "5372": [ + "https://faucet.settlus.io" + ], "5424": [], "5439": [], - "5522": ["https://t.me/vexfaucetbot"], + "5522": [ + "https://t.me/vexfaucetbot" + ], "5551": [], "5555": [], - "5611": ["https://testnet.bnbchain.org/faucet-smart"], - "5615": ["https://faucet.arcturuschain.io"], + "5611": [ + "https://testnet.bnbchain.org/faucet-smart" + ], + "5615": [ + "https://faucet.arcturuschain.io" + ], "5616": [], "5656": [], "5675": [], "5678": [], - "5700": ["https://faucet.tanenbaum.io"], + "5700": [ + "https://faucet.tanenbaum.io" + ], "5729": [], - "5758": ["https://faucet.satoshichain.io"], + "5758": [ + "https://faucet.satoshichain.io" + ], "5777": [], "5845": [], - "5851": ["https://developer.ont.io/"], + "5851": [ + "https://developer.ont.io/" + ], "5869": [], "6000": [], "6001": [], - "6065": ["http://faucet.tresleches.finance:8080"], + "6065": [ + "http://faucet.tresleches.finance:8080" + ], "6066": [], - "6102": ["https://www.cascadia.foundation/faucet"], + "6102": [ + "https://www.cascadia.foundation/faucet" + ], "6118": [], "6119": [], - "6321": ["https://aura.faucetme.pro"], + "6321": [ + "https://aura.faucetme.pro" + ], "6322": [], "6363": [], "6502": [], - "6552": ["https://faucet.scolcoin.com"], - "6565": ["https://faucet.foxchain.app"], + "6552": [ + "https://faucet.scolcoin.com" + ], + "6565": [ + "https://faucet.foxchain.app" + ], "6626": [], - "6660": ["http://faucet.latestchain.io"], + "6660": [ + "http://faucet.latestchain.io" + ], "6661": [], - "6666": ["https://faucet.cybascan.io"], + "6666": [ + "https://faucet.cybascan.io" + ], "6688": [], "6699": [], "6701": [], "6779": [], - "6789": ["https://faucet.goldsmartchain.com"], + "6789": [ + "https://faucet.goldsmartchain.com" + ], "6868": [], "6969": [], "6999": [], "7000": [], - "7001": ["https://labs.zetachain.com/get-zeta"], + "7001": [ + "https://labs.zetachain.com/get-zeta" + ], "7007": [], "7027": [], "7070": [], @@ -25304,47 +14820,75 @@ export const NETWORK_FAUCETS = { "7484": [], "7518": [], "7560": [], - "7575": ["https://testnet-faucet.adil-scan.io"], + "7575": [ + "https://testnet-faucet.adil-scan.io" + ], "7576": [], "7668": [], "7672": [], "7700": [], "7701": [], - "7771": ["https://faucet.bit-rock.io"], + "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"], + "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/"], + "7895": [ + "https://faucet-athena.ardescan.com/" + ], "7923": [], - "7924": ["https://faucet.mochain.app/"], + "7924": [ + "https://faucet.mochain.app/" + ], "7979": [], "8000": [], - "8001": ["https://chain-docs.teleport.network/testnet/faucet.html"], + "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/"], + "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"], + "8131": [ + "https://faucet.qitmeer.io" + ], "8132": [], "8133": [], "8134": [], "8135": [], "8136": [], - "8181": ["https://testnet.beonescan.com/faucet"], + "8181": [ + "https://testnet.beonescan.com/faucet" + ], "8192": [], "8194": [], "8217": [], "8227": [], - "8272": ["https://faucet.blocktonscan.com/"], + "8272": [ + "https://faucet.blocktonscan.com/" + ], "8285": [], "8329": [], "8387": [], @@ -25353,59 +14897,99 @@ export const NETWORK_FAUCETS = { "8655": [], "8668": [], "8723": [], - "8724": ["https://testnet-explorer.wolot.io"], + "8724": [ + "https://testnet-explorer.wolot.io" + ], "8726": [], "8727": [], "8738": [], - "8768": ["https://faucet.tmychain.org/"], + "8768": [ + "https://faucet.tmychain.org/" + ], "8822": [], - "8844": ["https://app.testnet.hydrachain.org/faucet"], + "8844": [ + "https://app.testnet.hydrachain.org/faucet" + ], "8848": [], "8866": [], "8880": [], "8881": [], - "8882": ["https://t.me/unique2faucet_opal_bot"], + "8882": [ + "https://t.me/unique2faucet_opal_bot" + ], "8883": [], "8888": [], "8889": [], - "8890": ["https://faucetcoin.orenium.org"], - "8898": ["https://faucet.mmtscan.io/"], + "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"], + "8995": [ + "https://faucet.bloxberg.org/" + ], + "9000": [ + "https://faucet.evmos.dev" + ], "9001": [], - "9007": ["https://testnet.shidoscan.com/faucet"], + "9007": [ + "https://testnet.shidoscan.com/faucet" + ], "9008": [], - "9012": ["https://t.me/BerylBit"], - "9024": ["https://testnet.nexablockscan.io/faucet"], + "9012": [ + "https://t.me/BerylBit" + ], + "9024": [ + "https://testnet.nexablockscan.io/faucet" + ], "9025": [], "9100": [], "9223": [], - "9339": ["https://faucet.dogcoin.network"], + "9339": [ + "https://faucet.dogcoin.network" + ], "9393": [], "9395": [], - "9527": ["https://robin-faucet.rangersprotocol.com"], - "9528": ["http://faucet.qeasyweb3.com"], - "9559": ["https://faucet.neonlink.io/"], + "9527": [ + "https://robin-faucet.rangersprotocol.com" + ], + "9528": [ + "http://faucet.qeasyweb3.com" + ], + "9559": [ + "https://faucet.neonlink.io/" + ], "9700": [], "9728": [], - "9768": ["https://faucet.mainnetz.io"], + "9768": [ + "https://faucet.mainnetz.io" + ], "9779": [], - "9789": ["https://faucet.testnet.tabichain.com"], + "9789": [ + "https://faucet.testnet.tabichain.com" + ], "9790": [], "9792": [], "9797": [], - "9818": ["https://faucet.imperiumchain.com/"], - "9819": ["https://faucet.imperiumchain.com/"], + "9818": [ + "https://faucet.imperiumchain.com/" + ], + "9819": [ + "https://faucet.imperiumchain.com/" + ], "9888": [], "9898": [], "9911": [], - "9977": ["https://faucet.mindchain.info/"], + "9977": [ + "https://faucet.mindchain.info/" + ], "9980": [], "9981": [], "9990": [], @@ -25419,25 +15003,42 @@ export const NETWORK_FAUCETS = { "10081": [], "10086": [], "10101": [], - "10200": ["https://gnosisfaucet.com"], - "10201": ["https://faucet.maxxchain.org"], + "10200": [ + "https://gnosisfaucet.com" + ], + "10201": [ + "https://faucet.maxxchain.org" + ], "10222": [], "10242": [], - "10243": ["https://faucet.arthera.net"], + "10243": [ + "https://faucet.arthera.net" + ], "10248": [], "10321": [], - "10324": ["https://faucet.taoevm.io"], + "10324": [ + "https://faucet.taoevm.io" + ], "10395": [], "10507": [], - "10508": ["https://faucet.avax.network/?subnet=num", "https://faucet.num.network"], + "10508": [ + "https://faucet.avax.network/?subnet=num", + "https://faucet.num.network" + ], "10823": [], "10849": [], "10850": [], "10946": [], - "10947": ["https://faucetpage.quadrans.io"], + "10947": [ + "https://faucetpage.quadrans.io" + ], "11110": [], - "11111": ["https://faucet.avax.network/?subnet=wagmi"], - "11115": ["https://faucet.astranaut.dev"], + "11111": [ + "https://faucet.avax.network/?subnet=wagmi" + ], + "11115": [ + "https://faucet.astranaut.dev" + ], "11119": [], "11221": [], "11227": [], @@ -25445,19 +15046,35 @@ export const NETWORK_FAUCETS = { "11437": [], "11501": [], "11503": [], - "11612": ["https://faucet.sardisnetwork.com"], + "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"], + "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"], + "12345": [ + "https://faucet.step.network" + ], "12553": [], "12715": [], "12781": [], @@ -25465,36 +15082,66 @@ export const NETWORK_FAUCETS = { "12898": [], "13000": [], "13308": [], - "13337": ["https://faucet.avax.network/?subnet=beam", "https://faucet.onbeam.com"], - "13371": ["https://docs.immutable.com/docs/zkEVM/guides/faucet"], + "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"], + "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"], + "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/"], + "15555": [ + "https://faucet.testnet-dev.trust.one/" + ], "15557": [], "16000": [], - "16001": ["https://faucet.metadot.network/"], + "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"], + "16888": [ + "https://tfaucet.ivarex.com/" + ], + "17000": [ + "https://faucet.holesky.ethpandaops.io", + "https://holesky-faucet.pk910.de" + ], "17069": [], "17117": [], - "17171": ["https://faucet.oneg8.network"], + "17171": [ + "https://faucet.oneg8.network" + ], "17172": [], "17180": [], "17217": [], @@ -25502,7 +15149,9 @@ export const NETWORK_FAUCETS = { "18000": [], "18122": [], "18159": [], - "18181": ["https://faucet.oneg8.network"], + "18181": [ + "https://faucet.oneg8.network" + ], "18233": [], "18686": [], "18888": [], @@ -25515,23 +15164,37 @@ export const NETWORK_FAUCETS = { "20001": [], "20041": [], "20073": [], - "20729": ["https://faucet.callisto.network/"], + "20729": [ + "https://faucet.callisto.network/" + ], "20736": [], "20765": [], - "21004": ["https://play.google.com/store/apps/details?id=net.c4ei.fps2"], - "21133": ["https://t.me/c4eiAirdrop"], + "21004": [ + "https://play.google.com/store/apps/details?id=net.c4ei.fps2" + ], + "21133": [ + "https://t.me/c4eiAirdrop" + ], "21223": [], - "21224": ["https://faucet.dcpay.io"], + "21224": [ + "https://faucet.dcpay.io" + ], "21337": [], "21816": [], "21912": [], "22023": [], "22040": [], "22222": [], - "22324": ["https://faucet.goldxchain.io"], + "22324": [ + "https://faucet.goldxchain.io" + ], "22776": [], - "23006": ["https://faucet.antofy.io"], - "23118": ["https://faucet.opside.network"], + "23006": [ + "https://faucet.antofy.io" + ], + "23118": [ + "https://faucet.opside.network" + ], "23294": [], "23295": [], "23451": [], @@ -25540,23 +15203,37 @@ export const NETWORK_FAUCETS = { "24484": [], "24734": [], "25186": [], - "25839": ["https://faucet.alveytestnet.com"], + "25839": [ + "https://faucet.alveytestnet.com" + ], "25888": [], - "25925": ["https://faucet.bitkubchain.com"], - "26026": ["https://testnet.faucet.ferrumnetwork.io"], + "25925": [ + "https://faucet.bitkubchain.com" + ], + "26026": [ + "https://testnet.faucet.ferrumnetwork.io" + ], "26600": [], - "26863": ["http://faucet.oasischain.io"], + "26863": [ + "http://faucet.oasischain.io" + ], "27181": [], "27483": [], "27827": [], "28516": [], "28518": [], "28528": [], - "28882": ["https://www.l2faucet.com/boba"], + "28882": [ + "https://www.l2faucet.com/boba" + ], "29112": [], - "29536": ["https://faucet.kaichain.net"], + "29536": [ + "https://faucet.kaichain.net" + ], "29548": [], - "30067": ["https://piecenetwork.com/faucet"], + "30067": [ + "https://piecenetwork.com/faucet" + ], "30088": [], "30103": [], "30730": [], @@ -25564,31 +15241,47 @@ export const NETWORK_FAUCETS = { "30732": [], "31102": [], "31223": [], - "31224": ["https://faucet.cloudtx.finance"], + "31224": [ + "https://faucet.cloudtx.finance" + ], "31337": [], - "31414": ["https://faucet.evokescan.org"], + "31414": [ + "https://faucet.evokescan.org" + ], "31753": [], - "31754": ["https://xchainfaucet.net"], + "31754": [ + "https://xchainfaucet.net" + ], "32001": [], "32382": [], "32520": [], "32659": [], "32769": [], - "32990": ["https://dev-wallet.zilliqa.com/faucet?network=isolated_server"], + "32990": [ + "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" + ], "33033": [], - "33101": ["https://dev-wallet.zilliqa.com/faucet?network=testnet"], + "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"], + "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"], + "38401": [ + "https://robin-faucet.rangersprotocol.com" + ], "39656": [], "39797": [], "39815": [], @@ -25598,24 +15291,35 @@ export const NETWORK_FAUCETS = { "42161": [], "42170": [], "42220": [], - "42261": ["https://faucet.testnet.oasis.io/"], + "42261": [ + "https://faucet.testnet.oasis.io/" + ], "42262": [], "42355": [], "42766": [], "42793": [], "42801": [], "42888": [], - "43110": ["http://athfaucet.ava.network//?address=${ADDRESS}"], + "43110": [ + "http://athfaucet.ava.network//?address=${ADDRESS}" + ], "43111": [], - "43113": ["https://faucet.avax-test.network/"], + "43113": [ + "https://faucet.avax-test.network/" + ], "43114": [], "43851": [], "44444": [], "44445": [], - "44787": ["https://celo.org/developers/faucet", "https://cauldron.pretoriaresearchlab.io/alfajores-faucet"], + "44787": [ + "https://celo.org/developers/faucet", + "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" + ], "45000": [], "45454": [], - "45510": ["https://faucet.deelance.com"], + "45510": [ + "https://faucet.deelance.com" + ], "46688": [], "47805": [], "48795": [], @@ -25629,461 +15333,14828 @@ export const NETWORK_FAUCETS = { "50006": [], "50021": [], "51178": [], - "51712": ["https://faucet.sardisnetwork.com"], + "51712": [ + "https://faucet.sardisnetwork.com" + ], "52014": [], "53277": [], - "53302": ["https://sepoliafaucet.com"], + "53302": [ + "https://sepoliafaucet.com" + ], "53457": [], "53935": [], - "54211": ["https://testedge2.haqq.network"], + "54211": [ + "https://testedge2.haqq.network" + ], "54321": [], - "54555": ["https://photonchain.io/airdrop"], + "54555": [ + "https://photonchain.io/airdrop" + ], "55004": [], - "55555": ["http://kururu.finance/faucet?chainId=55555"], - "55556": ["http://kururu.finance/faucet?chainId=55556"], + "55555": [ + "http://kururu.finance/faucet?chainId=55555" + ], + "55556": [ + "http://kururu.finance/faucet?chainId=55556" + ], "56026": [], "56288": [], "56400": [], - "56789": ["https://nova-faucet.velo.org"], + "56789": [ + "https://nova-faucet.velo.org" + ], "56797": [], - "57000": ["https://rollux.id/faucetapp"], + "57000": [ + "https://rollux.id/faucetapp" + ], "57451": [], "58008": [], - "59140": ["https://faucetlink.to/goerli"], + "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"], + "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/"], + "61803": [ + "http://faucet.etica-stats.org/" + ], "61916": [], "62049": [], "62050": [], - "62298": ["https://citrea.xyz/bridge"], + "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://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", - "https://cauldron.pretoriaresearchlab.io/baklava-faucet", + "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" ], - "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", + "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" ], - "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": [], + "2713017997578000": [ + "https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io" + ], + "2716446429837000": [ + "https://dchain-2716446429837000-1.jsonrpc.sagarpc.io" + ] };