diff --git a/.github/workflows/jest-testing.yml b/.github/workflows/jest-testing.yml index 0f6ee5c..293dcde 100644 --- a/.github/workflows/jest-testing.yml +++ b/.github/workflows/jest-testing.yml @@ -28,9 +28,6 @@ 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/README.md b/README.md index 7cc02b6..6a688d6 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This packages leverages [Chainlist's](https://github.com/DefiLlama/chainlist) ne - Can re-test the cached RPCs by calling `handler.getFastestRpcProvider()` - Can be used in both the browser and Node.js - Fully configurable and extendable -- Only uses endpoints which Chainlist report as tracking _no_ data (see [`extraRpcs.js`](https://github.com/DefiLlama/chainlist/blob/main/constants/extraRpcs.js)) +- Uses endpoints from Chainlist (see [`extraRpcs.js`](https://github.com/DefiLlama/chainlist/blob/main/constants/extraRpcs.js)) ## Installation @@ -33,6 +33,7 @@ export function useHandler(networkId: number) { networkName: null, // the name will be deduced from the networkId, unless using a custom network networkRpcs: null, // same as networkName, but for injecting additional RPCs runtimeRpcs: null, // same as networkRpcs, although these are considered error-free + tracking: "yes", // accepted values: "yes" | "limited" | "none" }; // No RPCs are tested at this point return new RPCHandler(config); @@ -51,7 +52,7 @@ app.provider = await handler.getFastestRpcProvider(); - The RPCs are not tested on instantiation, but are tested on each call to `handler.getFastestRpcProvider()` or `handler.testRpcPerformance()` -- See the full [config](src\handler.ts) object (optionally passed in the constructor) for more options +- See the full [config](types/handler.ts) object (optionally passed in the constructor) for more options - Local storage is not enabled by default, but can be enabled by passing `autoStorage: true` in the config object diff --git a/build/dynamic-types.ts b/build/dynamic-types.ts index f400d1d..dcb567e 100644 --- a/build/dynamic-types.ts +++ b/build/dynamic-types.ts @@ -35,8 +35,7 @@ export async function createDynamicTypes() { } if (rpc && rpc.length > 0) { - const rpcs = rpc.filter((rpc: { url: string }) => rpc.url); - extraRpcs[chainId] = rpcs.map((rpc: { url: string }) => rpc.url); + extraRpcs[chainId] = rpc; } idToNativeCurrency[chainId] = nativeCurrency; diff --git a/build/esbuild-build-tests.ts b/build/esbuild-build-tests.ts deleted file mode 100644 index 4279b78..0000000 --- a/build/esbuild-build-tests.ts +++ /dev/null @@ -1,63 +0,0 @@ -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]; - -export const esBuildContext: esbuild.BuildOptions = { - entryPoints: entries, - bundle: true, - outdir: "dist", -}; - -async function main() { - try { - await buildForEnvironments(); - await buildIndex(); - } catch (err) { - console.error(err); - process.exit(1); - } -} - -async function buildForEnvironments() { - ensureDistDir(); - - await esbuild - .build({ - ...esBuildContext, - tsconfig: "tsconfig.tests.json", - platform: "node", - outdir: "dist/tests/mocks", - format: "cjs", - }) - .then(() => { - console.log("Node.js esbuild complete"); - }) - .catch((err) => { - console.error(err); - process.exit(1); - }); -} - -async function buildIndex() { - await esbuild.build({ - entryPoints: ["index.ts"], - bundle: true, - format: "cjs", - outfile: "dist/index.js", - }); - - console.log("Index build complete."); -} - -function ensureDistDir() { - const distPath = path.resolve(__dirname, "dist"); - if (!fs.existsSync(distPath)) { - fs.mkdirSync(distPath, { recursive: true }); - } -} - -createDynamicTypes().then(main).catch(console.error); diff --git a/package.json b/package.json index c0d51b7..cb79d98 100644 --- a/package.json +++ b/package.json @@ -24,9 +24,7 @@ "postinstall": "git submodule update --init --recursive", "build": "run-s clean build:types", "build:types": "tsx build/esbuild-build.ts && tsc --emitDeclarationOnly --declaration --outDir dist", - "build:tests": "tsx build/esbuild-build-tests.ts && tsc --emitDeclarationOnly --declaration --project tsconfig.tests.json", "postbuild": "rm -rf dist/src", - "pretest": "run-s clean build:tests", "test": "jest", "clean": "rm -rf dist" }, @@ -89,4 +87,4 @@ ] }, "packageManager": "yarn@4.2.2" -} \ No newline at end of file +} diff --git a/tests/benchmark.test.ts b/tests/benchmark.test.ts index 12aead6..e8b1025 100644 --- a/tests/benchmark.test.ts +++ b/tests/benchmark.test.ts @@ -1,5 +1,6 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { RPCHandler, HandlerConstructorConfig } from "../dist"; +import { RPCHandler } from "../types/rpc-handler"; +import { HandlerConstructorConfig } from "../types/handler"; export const testConfig: HandlerConstructorConfig = { networkId: "1", @@ -9,6 +10,7 @@ export const testConfig: HandlerConstructorConfig = { networkRpcs: null, rpcTimeout: 1500, runtimeRpcs: null, + tracking: "yes", }; describe("RPCHandler", () => { diff --git a/tests/env.test.ts b/tests/env.test.ts index 50e045c..c15e74e 100644 --- a/tests/env.test.ts +++ b/tests/env.test.ts @@ -1,4 +1,4 @@ -import { RPCHandler } from "../dist"; +import { RPCHandler } from "../types/rpc-handler"; import { testConfig } from "./rpc-handler.test"; describe("Browser env detection", () => { diff --git a/tests/mocks/handler.ts b/tests/mocks/handler.ts deleted file mode 100644 index 0de5e37..0000000 --- a/tests/mocks/handler.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { JsonRpcProvider } from "@ethersproject/providers"; -import { networkCurrencies, networkExplorers, networkRpcs } from "../../types/constants"; -import { CHAINS_IDS, EXTRA_RPCS } from "../../types/dynamic"; - -export type BlockExplorer = { - name: string; - url: string; - standard?: string; - icon?: string; -}; - -export type ValidBlockData = { - jsonrpc: string; - id: number; - result: { - number: string; - timestamp: string; - hash: string; - }; -}; - -export type Token = { - decimals: number; - address: string; - symbol: string; -}; - -export type NativeToken = { - name: string; - symbol: string; - decimals: number; -}; - -export type HandlerInterface = { - getProvider(): JsonRpcProvider | null; - clearInstance(): void; - getFastestRpcProvider(): Promise; - testRpcPerformance(): Promise; -}; - -export type HandlerConstructorConfig = { - networkId: NetworkId; - networkName: NetworkName | null; - networkRpcs: string[] | null; - autoStorage: boolean | null; - cacheRefreshCycles: number | null; - runtimeRpcs: string[] | null; - rpcTimeout: number | null; -}; - -export type NetworkRPCs = typeof networkRpcs; -export type NetworkCurrencies = typeof networkCurrencies; -export type NetworkExplorers = typeof networkExplorers; - -// filtered NetworkId union -export type NetworkId = keyof typeof EXTRA_RPCS | "31337" | "1337"; - -// unfiltered Record -type ChainsUnfiltered = { - -readonly [K in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[K]; -}; - -// filtered ChainName union -export type NetworkName = ChainsUnfiltered[NetworkId] | "anvil" | "hardhat"; diff --git a/tests/mocks/rpc-handler.ts b/tests/mocks/rpc-handler.ts deleted file mode 100644 index 9cb541e..0000000 --- a/tests/mocks/rpc-handler.ts +++ /dev/null @@ -1,171 +0,0 @@ -import { JsonRpcProvider } from "@ethersproject/providers"; -import { LOCAL_HOST, networkRpcs, networkIds } from "../../types/constants"; -import { HandlerInterface, HandlerConstructorConfig } from "./handler"; - -import { RPCService } from "./rpc-service"; -import { StorageService } from "./storage-service"; -import { NetworkId, NetworkName } from "../../types/handler"; - -export class RPCHandler implements HandlerInterface { - private static _instance: RPCHandler | null = null; - private _provider: JsonRpcProvider | null = null; - private _networkId: NetworkId; - private _networkName: NetworkName; - private _env: string = "node"; - - private _rpcTimeout: number = 999999; // ms - private _cacheRefreshCycles: number = 10; - private _refreshLatencies: number = 0; - private _autoStorage: boolean = false; - private _runtimeRpcs: string[] = []; - private _latencies: Record = {}; - private _networkRpcs: string[] = []; - constructor(config: HandlerConstructorConfig) { - this._networkId = config.networkId; - this._networkRpcs = networkRpcs[this._networkId]; - this._networkName = networkIds[this._networkId]; - this._initialize(config); - } - public async getFastestRpcProvider(): Promise { - 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") { - /** - * The JsonRpcProvider defaults erroneously to localhost:8545 - * this is a fix for that - * static defaultUrl(): string { - * return "http:/\/localhost:8545"; - * } - */ - this._provider = await this.testRpcPerformance(); - } - return this._provider; - } - - public async testRpcPerformance(): Promise { - const shouldRefreshRpcs = - Object.keys(this._latencies).filter((rpc) => rpc.startsWith(`${this._networkId}__`)).length <= 1 || this._refreshLatencies >= this._cacheRefreshCycles; - - if (shouldRefreshRpcs) { - this._runtimeRpcs = networkRpcs[this._networkId]; - this._refreshLatencies = 0; - } else { - this._runtimeRpcs = Object.keys(this._latencies).map((rpc) => { - return rpc.split("__")[1]; - }); - } - - await this._testRpcPerformance(); - - const fastestRpcUrl = await RPCService.findFastestRpc(this._latencies, this._networkId); - - if (!fastestRpcUrl) { - throw new Error("Failed to find fastest RPC"); - } - - const provider = new JsonRpcProvider(fastestRpcUrl, Number(this._networkId)); - this._provider = provider; - - if (this._autoStorage) { - StorageService.setLatencies(this._env, this._latencies); - StorageService.setRefreshLatencies(this._env, this._refreshLatencies); - } - if (!this._provider) { - throw new Error("Provider could not be initialized"); - } - return this._provider; - } - public getProvider(): JsonRpcProvider { - if (!this._provider) { - throw new Error("Provider is not initialized"); - } - return this._provider; - } - public static getInstance(config: HandlerConstructorConfig): RPCHandler { - if (!RPCHandler._instance) { - if (!config) { - throw new Error("Config is required to initialize RPCHandler"); - } - RPCHandler._instance = new RPCHandler(config); - } - return RPCHandler._instance; - } - public clearInstance(): void { - RPCHandler._instance = null; - } - public getRuntimeRpcs(): string[] { - return this._runtimeRpcs; - } - public getNetworkId(): NetworkId { - return this._networkId; - } - public getNetworkName(): string { - return this._networkName; - } - public getNetworkRpcs(): string[] { - return this._networkRpcs; - } - public getLatencies(): Record { - return this._latencies; - } - public getRefreshLatencies(): number { - return this._refreshLatencies; - } - public getCacheRefreshCycles(): number { - return this._cacheRefreshCycles; - } - private async _testRpcPerformance(): Promise { - const { latencies, runtimeRpcs } = await RPCService.testRpcPerformance( - this._networkId, - this._latencies, - this._runtimeRpcs, - { "Content-Type": "application/json" }, - JSON.stringify({ - jsonrpc: "2.0", - method: "eth_getBlockByNumber", - params: ["latest", false], - id: 1, - }), - this._rpcTimeout - ); - - this._runtimeRpcs = runtimeRpcs; - this._latencies = latencies; - this._refreshLatencies++; - - StorageService.setLatencies(this._env, this._latencies); - StorageService.setRefreshLatencies(this._env, this._refreshLatencies); - } - private _updateConfig(config: HandlerConstructorConfig): void { - if (config.networkName) { - this._networkName = config.networkName; - } - if (config.networkRpcs) { - this._networkRpcs = [...this._networkRpcs, ...config.networkRpcs]; - } - if (config.runtimeRpcs) { - this._runtimeRpcs = config.runtimeRpcs; - } - if (config.cacheRefreshCycles) { - this._cacheRefreshCycles = config.cacheRefreshCycles; - } - - if (config.rpcTimeout) { - this._rpcTimeout = config.rpcTimeout; - } - - if (config.autoStorage) { - this._autoStorage = true; - this._latencies = StorageService.getLatencies(this._env, this._networkId); - this._refreshLatencies = StorageService.getRefreshLatencies(this._env); - } - } - private _initialize(config: HandlerConstructorConfig): void { - this._env = typeof window === "undefined" ? "node" : "browser"; - this._updateConfig(config); - } -} diff --git a/tests/mocks/rpc-service.ts b/tests/mocks/rpc-service.ts deleted file mode 100644 index 6408216..0000000 --- a/tests/mocks/rpc-service.ts +++ /dev/null @@ -1,109 +0,0 @@ -import { NetworkId, ValidBlockData } from "./handler"; -type PromiseResult = { success: boolean; rpcUrl: string; duration: number }; - -export class RPCService { - static async testRpcPerformance( - networkId: NetworkId, - latencies: Record, - runtimeRpcs: string[], - rpcHeader: object, - rpcBody: string, - rpcTimeout: number - ): Promise<{ latencies: Record; runtimeRpcs: string[] }> { - const successfulPromises = runtimeRpcs.map>( - (rpcUrl) => - new Promise((resolve) => { - const abortController = new AbortController(); - const startTime = performance.now(); - const timeoutId = setTimeout(() => { - abortController.abort(); - resolve({ rpcUrl, success: false, duration: 0 }); - }, rpcTimeout); - - fetch(rpcUrl, { - method: "POST", - headers: Object.assign({}, rpcHeader, { "Content-Type": "application/json" }), - body: rpcBody, - signal: abortController.signal, - }) - .then(() => { - clearTimeout(timeoutId); - const endTime = performance.now(); - resolve({ - rpcUrl, - duration: endTime - startTime, - success: true, - } as PromiseResult); - }) - .catch(() => { - clearTimeout(timeoutId); - resolve({ rpcUrl, success: false, duration: 0 }); - }); - }) - ); - - const fastest = await Promise.race(successfulPromises); - - if (fastest.success) { - latencies[`${networkId}__${fastest.rpcUrl}`] = fastest.duration; - } - - try { - const allResults = await Promise.allSettled(successfulPromises); - - allResults.forEach((result) => { - if (result.status === "fulfilled" && (result.value as PromiseResult).success) { - latencies[`${networkId}__${(result.value as PromiseResult).rpcUrl}`] = (result.value as PromiseResult).duration; - } else if (result.status === "fulfilled") { - const fulfilledResult = result.value as PromiseResult; - const index = runtimeRpcs.indexOf(fulfilledResult.rpcUrl); - if (index > -1) { - runtimeRpcs.splice(index, 1); - } - } - }); - - return { latencies, runtimeRpcs }; - } catch (err) { - console.error("[RPCService] Failed to test RPC performance"); - } - return { latencies, runtimeRpcs }; - } - - static async findFastestRpc(latencies: Record, networkId: NetworkId): Promise { - if (Object.keys(latencies).length === 0) { - console.error("[RPCService] Latencies object is empty"); - } - - try { - const validLatencies: Record = Object.entries(latencies) - .filter(([key]) => key.startsWith(`${networkId}__`)) - .reduce( - (acc, [key, value]) => { - acc[key] = value; - return acc; - }, - {} as Record - ); // Add index signature for validLatencies object - - return Object.keys(validLatencies) - .reduce((a, b) => (validLatencies[a] < validLatencies[b] ? a : b)) - .split("__")[1]; - } catch (error) { - console.error("[RPCService] Failed to find fastest RPC"); - return null; - } - } - - static _verifyBlock(data: ValidBlockData): boolean { - try { - const { jsonrpc, id, result } = data; - const { number, timestamp, hash } = result; - return ( - jsonrpc === "2.0" && id === 1 && parseInt(number, 16) > 0 && parseInt(timestamp, 16) > 0 && hash.match(/[0-9|a-f|A-F|x]/gm)?.join("").length === 66 - ); - } catch (error) { - return false; - } - } -} diff --git a/tests/mocks/storage-service.ts b/tests/mocks/storage-service.ts deleted file mode 100644 index 99d076a..0000000 --- a/tests/mocks/storage-service.ts +++ /dev/null @@ -1,60 +0,0 @@ -import { NetworkId } from "./handler"; - -const LOCALSTORAGE_NOT_DEFINED = "Passing because localStorage is not available"; - -export class StorageService { - static getLatencies(env: string, networkId: NetworkId): Record { - if (env === "browser") { - if (typeof localStorage === "undefined") { - console.log(LOCALSTORAGE_NOT_DEFINED); - return {}; - } - const latencies: Record = JSON.parse(localStorage.getItem("rpcLatencies") || "{}"); - return Object.keys(latencies).reduce((acc: Record, key) => { - if (key.startsWith(`${networkId}__`)) { - acc[key] = latencies[key]; - } - return acc; - }, {}); - } - - return {}; - } - - static getRefreshLatencies(env: string): number { - if (env === "browser") { - if (typeof localStorage === "undefined") { - console.log(LOCALSTORAGE_NOT_DEFINED); - return 0; - } - const refresh = JSON.parse(localStorage.getItem("refreshLatencies") || "0"); - - if (typeof refresh === "number") { - return refresh; - } else { - return 0; - } - } - return 0; - } - - static setLatencies(env: string, latencies: Record): void { - if (env === "browser") { - if (typeof localStorage === "undefined") { - console.log(LOCALSTORAGE_NOT_DEFINED); - return; - } - localStorage.setItem("rpcLatencies", JSON.stringify(latencies)); - } - } - - static setRefreshLatencies(env: string, refreshLatencies: number): void { - if (env === "browser") { - if (typeof localStorage === "undefined") { - console.log(LOCALSTORAGE_NOT_DEFINED); - return; - } - localStorage.setItem("refreshLatencies", JSON.stringify(refreshLatencies)); - } - } -} diff --git a/tests/rpc-handler.test.ts b/tests/rpc-handler.test.ts index 8dfcd09..a4f1f28 100644 --- a/tests/rpc-handler.test.ts +++ b/tests/rpc-handler.test.ts @@ -1,5 +1,7 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { HandlerConstructorConfig, RPCHandler, networkRpcs } from "../dist"; +import { networkRpcs } from "../types/constants"; +import { RPCHandler } from "../types/rpc-handler"; +import { HandlerConstructorConfig, getRpcUrls, Rpc, Tracking } from "../types/handler"; export const testConfig: HandlerConstructorConfig = { networkId: "100", @@ -9,6 +11,7 @@ export const testConfig: HandlerConstructorConfig = { networkRpcs: null, rpcTimeout: 1500, runtimeRpcs: null, + tracking: "yes", }; describe("RPCHandler", () => { @@ -43,7 +46,7 @@ describe("RPCHandler", () => { expect(rpcHandler["_latencies"]).toEqual({}); }); it("should initialize with correct networkRpcs", () => { - expect(rpcHandler["_networkRpcs"]).toEqual(networkRpcs[testConfig.networkId]); + expect(rpcHandler["_networkRpcs"]).toEqual(networkRpcs[testConfig.networkId].rpcs); }); it("should initialize with null provider", () => { const provider = rpcHandler["_provider"]; @@ -68,8 +71,9 @@ describe("RPCHandler", () => { const latArrLen = Array.from(Object.entries(latencies)).length; const runtime = rpcHandler.getRuntimeRpcs(); expect(runtime.length).toBeGreaterThan(0); + expect(runtime.length).toBe(latArrLen); - expect(runtime.length).toBeLessThanOrEqual(networkRpcs[testConfig.networkId].length); + expect(runtime.length).toBeLessThanOrEqual(getRpcUrls(networkRpcs[testConfig.networkId].rpcs).length); expect(latArrLen).toBeGreaterThanOrEqual(1); @@ -82,4 +86,49 @@ describe("RPCHandler", () => { expect(fastestRpc.connection.url).toBe(provider.connection.url); }, 10000); }); + + describe("RPC tracking config option", () => { + const filterFunctions = { + none: function (rpc: Rpc) { + return rpc?.tracking && rpc.tracking == "none"; + }, + limited: function (rpc: Rpc) { + return rpc?.tracking && ["none", "limited"].includes(rpc.tracking); + }, + yes: function (rpc: Rpc) { + return true; + }, + undefined: function (rpc: Rpc) { + return true; + }, + }; + + for (const [trackingOption, filterFunction] of Object.entries(filterFunctions)) { + it(`should return correct rpcs with tracking=${trackingOption}`, async () => { + const filteredRpcs = networkRpcs[testConfig.networkId].rpcs.filter((rpc) => { + return filterFunction(rpc); + }); + + const urls = filteredRpcs.map((rpc) => { + if (typeof rpc == "string") return rpc; + + return rpc.url; + }); + + const rpcHandlerConfig = { ...testConfig }; + if (trackingOption == "undefined") { + delete rpcHandlerConfig.tracking; + } else { + rpcHandlerConfig.tracking = trackingOption as Tracking; + } + const handler = new RPCHandler(rpcHandlerConfig); + await handler.testRpcPerformance(); + const runtime = handler.getRuntimeRpcs(); + expect(runtime.length).toBeLessThanOrEqual(urls.length); + + // expect runtime to be the subset of urls + expect(urls).toEqual(expect.arrayContaining(runtime)); + }, 10000); + } + }); }); diff --git a/tsconfig.tests.json b/tsconfig.tests.json deleted file mode 100644 index 236be8d..0000000 --- a/tsconfig.tests.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "compilerOptions": { - "target": "ESNext", - "module": "commonjs", - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "skipLibCheck": true, - "baseUrl": ".", - "paths": {}, - "outDir": "./dist", - "declaration": true, - "resolveJsonModule": true - }, - "include": ["index.ts", "tests/**/*.ts"], - "exclude": ["node_modules", "build", "tests/**/*.test.ts", "tests/script-test.ts", "lib", "dist", "jest.config.ts"] -} diff --git a/types/constants.ts b/types/constants.ts index 2ac59d4..70ed13e 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -1,4 +1,4 @@ -import { BlockExplorer, NetworkId, NetworkName, NativeToken } from "./handler"; +import { BlockExplorer, NetworkId, NetworkName, NativeToken, Rpc } from "./handler"; import { CHAINS_IDS, EXTRA_RPCS, NETWORK_CURRENCIES, NETWORK_EXPLORERS, NETWORK_FAUCETS } from "./dynamic"; export const permit2Address = "0x000000000022D473030F116dDEE9F6B43aC78BA3"; @@ -23,9 +23,9 @@ 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]; + return [value, { rpcs: chainRpcs }]; }) -) as Record; +) as Record; const networkExplorers = Object.fromEntries( Object.entries(networkNames).map(([, value]) => { diff --git a/types/dynamic.ts b/types/dynamic.ts index a21c2b0..d71b3ed 100644 --- a/types/dynamic.ts +++ b/types/dynamic.ts @@ -242,6 +242,7 @@ export const CHAINS_IDS = { "336": "shiden", "338": "cronos-testnet", "345": "tsc-mainnet", + "360": "shape", "361": "theta-mainnet", "363": "theta-sapphire-testnet", "364": "theta-amber-testnet", @@ -1098,6 +1099,7 @@ export const CHAINS_IDS = { "32990": "zilliqa-evm-isolated-server", "33033": "entangle-mainnet", "33101": "zilliqa-evm-testnet", + "33103": "zilliqa-2-evm-proto-testnet", "33133": "entangle-testnet", "33210": "cloudverse-subnet", "33333": "aves-mainnet", @@ -1395,6 +1397,7 @@ export const CHAINS_IDS = { "471100": "patex-sepolia-testnet", "473861": "ultra-pro-mainnet", "474142": "openchain-mainnet", + "490000": "autonomys-testnet-nova-domain", "504441": "playdapp-network", "512512": "cmp-testnet", "513100": "dischain", @@ -1606,8 +1609,8 @@ export const NETWORKS = { "bnb-smart-chain-mainnet": 56, "arbitrum-one": 42161, "base": 8453, - "avalanche-c-chain": 43114, "polygon-mainnet": 137, + "avalanche-c-chain": 43114, "linea": 59144, "op-mainnet": 10, "cronos-mainnet": 25, @@ -1616,25 +1619,25 @@ export const NETWORKS = { "pulsechain": 369, "filecoin---mainnet": 314, "kava": 2222, - "fantom-opera": 250, "rootstock-mainnet": 30, + "fantom-opera": 250, "celo-mainnet": 42220, "fusion-mainnet": 32659, - "metis-andromeda-mainnet": 1088, "core-blockchain-mainnet": 1116, + "metis-andromeda-mainnet": 1088, "klaytn-mainnet-cypress": 8217, "manta-pacific-mainnet": 169, "moonbeam": 1284, - "iotex-network-mainnet": 4689, - "telos-evm-mainnet": 40, "astar": 592, + "telos-evm-mainnet": 40, + "iotex-network-mainnet": 4689, "canto": 7700, "conflux-espace": 1030, "aurora-mainnet": 1313161554, "xdc-network": 50, - "okxchain-mainnet": 66, "meter-mainnet": 82, "moonriver": 1285, + "okxchain-mainnet": 66, "carbon-evm": 9790, "boba-network": 288, "huobi-eco-chain-mainnet": 128, @@ -1642,30 +1645,31 @@ export const NETWORKS = { "ultron-mainnet": 1231, "songbird-canary-network": 19, "wanchain": 888, + "vision---mainnet": 888888, "zilliqa-evm": 32769, "beam": 4337, - "vision---mainnet": 888888, "elastos-smart-chain": 20, "oasys-mainnet": 248, "onus-chain-mainnet": 1975, - "evmos": 9001, "dogechain-mainnet": 2000, "coinex-smart-chain-mainnet": 52, - "fuse-mainnet": 122, "harmony-mainnet-shard-0": 1666600000, + "fuse-mainnet": 122, + "evmos": 9001, "theta-mainnet": 361, "kcc-mainnet": 321, "velas-evm-mainnet": 106, "oasis-emerald": 42262, "rollux-mainnet": 570, "thundercore-mainnet": 108, - "neon-evm-mainnet": 245022934, "ethereum-classic": 1, "energy-web-chain": 246, "step-network": 1234, "opbnb-mainnet": 204, "nahmii-2-mainnet": 5551, + "omax-mainnet": 311, "tomb-chain-mainnet": 6969, + "neon-evm-mainnet": 245022934, "godwoken-mainnet": 71402, "loopnetwork-mainnet": 15551, "shiden": 336, @@ -1879,7 +1883,6 @@ export const NETWORKS = { "lovely-network-testnet": 307, "furtheon": 308, "wyzth-testnet": 309, - "omax-mainnet": 311, "neurochain-mainnet": 313, "kcc-testnet": 322, "cosvm-mainnet": 323, @@ -1888,6 +1891,7 @@ export const NETWORKS = { "dfk-chain-test": 335, "cronos-testnet": 338, "tsc-mainnet": 16, + "shape": 360, "theta-sapphire-testnet": 363, "theta-amber-testnet": 364, "theta-testnet": 365, @@ -2711,6 +2715,7 @@ export const NETWORKS = { "zilliqa-evm-isolated-server": 32990, "entangle-mainnet": 33033, "zilliqa-evm-testnet": 33101, + "zilliqa-2-evm-proto-testnet": 33103, "entangle-testnet": 33133, "cloudverse-subnet": 33210, "aves-mainnet": 33333, @@ -3000,6 +3005,7 @@ export const NETWORKS = { "patex-sepolia-testnet": 471100, "ultra-pro-mainnet": 473861, "openchain-mainnet": 474142, + "autonomys-testnet-nova-domain": 490000, "playdapp-network": 504441, "cmp-testnet": 512512, "dischain": 513100, @@ -3201,12843 +3207,12863 @@ export const NETWORKS = { "dchain": 2716446429837000 } as const; -export const NETWORK_EXPLORERS = { - "1": [ - { - "name": "etherscan", - "url": "https://etherscan.io", - "standard": "EIP3091" - }, - { - "name": "blockscout", - "url": "https://eth.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - }, - { - "name": "dexguru", - "url": "https://ethereum.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } - ], +export const NETWORK_FAUCETS = { + "1": [], + "2": [], "3": [ - { - "name": "etherscan", - "url": "https://ropsten.etherscan.io", - "standard": "EIP3091" - } + "http://fauceth.komputing.org?chain=3&address=${ADDRESS}", + "https://faucet.ropsten.be?${ADDRESS}" ], "4": [ - { - "name": "etherscan-rinkeby", - "url": "https://rinkeby.etherscan.io", - "standard": "EIP3091" - } + "http://fauceth.komputing.org?chain=4&address=${ADDRESS}", + "https://faucet.rinkeby.io" ], "5": [ - { - "name": "etherscan-goerli", - "url": "https://goerli.etherscan.io", - "standard": "EIP3091" - }, - { - "name": "blockscout-goerli", - "url": "https://eth-goerli.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + "http://fauceth.komputing.org?chain=5&address=${ADDRESS}", + "https://goerli-faucet.slock.it?address=${ADDRESS}", + "https://faucet.goerli.mudit.blog" ], - "7": [ - { - "name": "Thaichain Explorer", - "url": "https://exp.thaichain.org", - "standard": "EIP3091" - } + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [ + "https://faucet.flare.network" ], - "8": [ - { - "name": "ubiqscan", - "url": "https://ubiqscan.io", - "standard": "EIP3091" - } + "17": [], + "18": [ + "https://faucet-testnet.thundercore.com" ], - "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" - } + "19": [], + "20": [], + "21": [ + "https://esc-faucet.elastos.io/" ], - "14": [ - { - "name": "blockscout", - "url": "https://flare-explorer.flare.network", - "standard": "EIP3091" - }, - { - "name": "flarescan", - "url": "https://mainnet.flarescan.com", - "standard": "EIP3091" - } + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "29": [], + "30": [], + "31": [ + "https://faucet.rsk.co/" ], - "16": [ - { - "name": "blockscout", - "url": "https://coston-explorer.flare.network", - "standard": "EIP3091" - }, - { - "name": "flarescan", - "url": "https://coston.testnet.flarescan.com", - "standard": "EIP3091" - } + "32": [], + "33": [], + "34": [], + "35": [], + "36": [], + "37": [], + "38": [], + "39": [], + "40": [], + "41": [ + "https://app.telos.net/testnet/developers" ], - "18": [ - { - "name": "thundercore-blockscout-testnet", - "url": "https://explorer-testnet.thundercore.com", - "standard": "EIP3091" - } + "42": [], + "43": [ + "https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a" ], - "19": [ - { - "name": "blockscout", - "url": "https://songbird-explorer.flare.network", - "standard": "EIP3091" - }, - { - "name": "flarescan", - "url": "https://songbird.flarescan.com", - "standard": "EIP3091" - } + "44": [], + "45": [ + "https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2" ], - "20": [ - { - "name": "elastos esc explorer", - "url": "https://esc.elastos.io", - "standard": "EIP3091" - } + "46": [], + "47": [], + "48": [], + "49": [], + "50": [], + "51": [ + "https://faucet.apothem.network" ], - "21": [ - { - "name": "elastos esc explorer", - "url": "https://esc-testnet.elastos.io", - "standard": "EIP3091" - } + "52": [], + "53": [], + "54": [], + "55": [], + "56": [], + "57": [ + "https://faucet.syscoin.org" ], - "25": [ - { - "name": "Cronos Explorer", - "url": "https://explorer.cronos.org", - "standard": "none" - } + "58": [], + "60": [], + "61": [], + "63": [ + "https://easy.hebeswap.com/#/faucet", + "https://faucet.mordortest.net" ], - "26": [ - { - "name": "Genesis L1 testnet explorer", - "url": "https://testnet.genesisl1.org", - "standard": "none" - } + "64": [], + "65": [ + "https://www.okex.com/drawdex" ], - "27": [ - { - "name": "Shiba Explorer", - "url": "https://exp.shibchain.org", - "standard": "none" - } + "66": [], + "67": [], + "68": [], + "69": [ + "http://fauceth.komputing.org?chain=69&address=${ADDRESS}" ], - "29": [ - { - "name": "Genesis L1 blockchain explorer", - "url": "https://explorer.genesisl1.org", - "standard": "none" - } + "70": [], + "71": [ + "https://faucet.confluxnetwork.org" ], - "30": [ - { - "name": "Rootstock Explorer", - "url": "https://explorer.rsk.co", - "standard": "EIP3091" - }, - { - "name": "blockscout", - "url": "https://rootstock.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + "72": [ + "https://faucet.dxscan.io" ], - "31": [ - { - "name": "RSK Testnet Explorer", - "url": "https://explorer.testnet.rsk.co", - "standard": "EIP3091" - } + "73": [ + "https://faucet-testnet.fncy.world" ], - "34": [ - { - "name": "SecureChain Mainnet", - "url": "https://explorer.securechain.ai", - "standard": "EIP3091" - } + "74": [], + "75": [], + "76": [], + "77": [], + "78": [], + "79": [], + "80": [], + "81": [], + "82": [ + "https://faucet.meter.io" ], - "36": [ - { - "name": "dxscan", - "url": "https://dxscan.io", - "standard": "EIP3091" - } + "83": [ + "https://faucet-warringstakes.meter.io" ], - "37": [ - { - "name": "XPLA Explorer", - "url": "https://explorer.xpla.io/mainnet", - "standard": "EIP3091" - } + "84": [], + "85": [ + "https://www.gatescan.org/testnet/faucet" ], - "39": [ - { - "icon": "u2u", - "name": "U2U Explorer", - "url": "https://u2uscan.xyz", - "standard": "EIP3091" - } + "86": [ + "https://www.gatescan.org/faucet" ], - "40": [ - { - "name": "teloscan", - "url": "https://teloscan.io", - "standard": "EIP3091" - } + "87": [], + "88": [], + "89": [], + "90": [], + "91": [], + "92": [], + "93": [], + "94": [], + "95": [ + "https://faucet.camdl.gov.kh/" ], - "41": [ - { - "name": "teloscan", - "url": "https://testnet.teloscan.io", - "standard": "EIP3091" - } + "96": [], + "97": [ + "https://testnet.bnbchain.org/faucet-smart" ], - "42": [ - { - "name": "Blockscout", - "url": "https://explorer.execution.mainnet.lukso.network", - "standard": "EIP3091" - } + "98": [], + "99": [], + "100": [ + "https://gnosisfaucet.com", + "https://stakely.io/faucet/gnosis-chain-xdai", + "https://faucet.prussia.dev/xdai" ], - "43": [ - { - "name": "subscan", - "url": "https://pangolin.subscan.io", - "standard": "EIP3091" - } + "101": [], + "102": [], + "103": [], + "104": [], + "105": [], + "106": [], + "107": [ + "https://faucet.novanetwork.io" ], - "44": [ - { - "name": "blockscout", - "url": "https://crab-scan.darwinia.network", - "standard": "EIP3091" - } + "108": [], + "109": [], + "110": [], + "111": [ + "https://etherlite.org/faucets" ], - "45": [ - { - "name": "subscan", - "url": "https://pangoro.subscan.io", - "standard": "none" - } + "112": [], + "113": [ + "https://buy.dehvo.com" ], - "46": [ - { - "name": "subscan", - "url": "https://darwinia.subscan.io", - "standard": "EIP3091" - } + "114": [ + "https://faucet.flare.network" ], - "47": [ - { - "name": "Acria IntelliChain-Explorer", - "url": "https://explorer.acria.ai", - "standard": "EIP3091" - } + "117": [], + "118": [], + "119": [], + "120": [ + "http://faucet.nuls.io" ], - "48": [ - { - "name": "etmpscan", - "url": "https://etmscan.network", - "icon": "etmp", - "standard": "EIP3091" - } + "121": [], + "122": [], + "123": [ + "https://get.fusespark.io" ], - "49": [ - { - "name": "etmp", - "url": "https://pioneer.etmscan.network", - "standard": "EIP3091" - } + "124": [], + "125": [ + "https://faucet.oychain.io" ], - "50": [ - { - "name": "xdcscan", - "url": "https://xdcscan.io", - "icon": "blocksscan", - "standard": "EIP3091" - }, - { - "name": "blocksscan", - "url": "https://xdc.blocksscan.io", - "icon": "blocksscan", - "standard": "EIP3091" - } + "126": [], + "127": [], + "128": [], + "129": [], + "131": [], + "132": [], + "133": [], + "134": [], + "135": [ + "https://faucet.alyxchain.com" ], - "51": [ - { - "name": "xdcscan", - "url": "https://apothem.xinfinscan.com", - "icon": "blocksscan", - "standard": "EIP3091" - }, - { - "name": "blocksscan", - "url": "https://apothem.blocksscan.io", - "icon": "blocksscan", - "standard": "EIP3091" - } + "136": [], + "137": [], + "138": [], + "139": [], + "140": [], + "141": [], + "142": [], + "144": [], + "145": [], + "147": [], + "148": [], + "150": [ + "https://faucet.sixprotocol.net" ], - "52": [ - { - "name": "coinexscan", - "url": "https://www.coinex.net", - "standard": "none" - } + "151": [], + "152": [], + "153": [], + "154": [], + "155": [ + "https://faucet.testnet.tenet.org" ], - "53": [ - { - "name": "coinexscan", - "url": "https://testnet.coinex.net", - "standard": "none" - } + "156": [], + "157": [ + "https://beta.shibariumtech.com/faucet" ], - "54": [ - { - "name": "Belly Scan", - "url": "https://bellyscan.com", - "standard": "none" - } + "158": [], + "159": [], + "160": [], + "161": [], + "162": [ + "https://discuss.lightstreams.network/t/request-test-tokens" ], - "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" - } + "163": [], + "164": [], + "166": [], + "167": [], + "168": [], + "169": [], + "170": [ + "https://faucet-testnet.hscscan.com/" ], - "57": [ - { - "name": "Syscoin Block Explorer", - "url": "https://explorer.syscoin.org", - "standard": "EIP3091" - } + "172": [ + "https://faucet.latam-blockchain.com" ], - "58": [ - { - "name": "explorer", - "url": "https://explorer.ont.io", - "standard": "EIP3091" - } + "176": [], + "180": [], + "181": [], + "185": [], + "186": [], + "188": [], + "189": [], + "191": [], + "193": [], + "195": [ + "https://www.okx.com/xlayer/faucet" ], - "60": [ - { - "name": "GoChain Explorer", - "url": "https://explorer.gochain.io", - "standard": "EIP3091" - } + "196": [], + "197": [ + "https://neutrinoschain.com/faucet" ], - "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" - } + "198": [], + "199": [], + "200": [], + "201": [], + "202": [], + "204": [], + "206": [], + "207": [], + "208": [], + "210": [], + "211": [ + "http://faucet.freight.sh" ], - "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" - } + "212": [ + "https://faucet.mapprotocol.io" ], - "65": [ - { - "name": "OKLink", - "url": "https://www.oklink.com/okexchain-test", - "standard": "EIP3091" - } + "213": [], + "214": [], + "217": [], + "220": [ + "https://faucet.scalind.com" ], - "66": [ - { - "name": "OKLink", - "url": "https://www.oklink.com/en/okc", - "standard": "EIP3091" - } + "223": [], + "224": [ + "https://faucet.vrd.network" ], - "69": [ - { - "name": "etherscan", - "url": "https://kovan-optimistic.etherscan.io", - "standard": "EIP3091" - } + "225": [], + "226": [], + "228": [], + "230": [], + "234": [ + "https://protojumbo.jumbochain.org/faucet-smart" ], - "70": [ - { - "name": "hooscan", - "url": "https://www.hooscan.com", - "standard": "EIP3091" - } + "236": [ + "https://faucet.deamchain.com" ], - "71": [ - { - "name": "Conflux Scan", - "url": "https://evmtestnet.confluxscan.net", - "standard": "none" - } + "242": [], + "246": [], + "248": [], + "250": [], + "252": [], + "255": [], + "256": [ + "https://scan-testnet.hecochain.com/faucet" ], - "73": [ - { - "name": "fncy scan", - "url": "https://fncyscan.fncy.world", - "icon": "fncy", - "standard": "EIP3091" - } + "258": [], + "259": [], + "262": [], + "266": [], + "267": [ + "https://testnet.neuraprotocol.io/faucet" ], - "74": [ - { - "name": "explorer", - "url": "https://explorer.idchain.one", - "standard": "EIP3091" - } + "268": [], + "269": [ + "https://myhpbwallet.com/" ], - "75": [ - { - "name": "DSC Explorer Mainnet", - "url": "https://explorer.decimalchain.com", - "icon": "dsc", - "standard": "EIP3091" - } + "271": [], + "274": [], + "278": [], + "279": [], + "282": [ + "https://zkevm.cronos.org/faucet" ], - "77": [ - { - "name": "blockscout", - "url": "https://blockscout.com/poa/sokol", - "icon": "blockscout", - "standard": "EIP3091" - } + "288": [], + "291": [], + "295": [], + "296": [ + "https://portal.hedera.com" ], - "79": [ - { - "name": "zenith scan", - "url": "https://scan.zenithchain.co", - "standard": "EIP3091" - } + "297": [ + "https://portal.hedera.com" ], - "80": [ - { - "name": "GeneChain Scan", - "url": "https://scan.genechain.io", - "standard": "EIP3091" - } + "298": [], + "300": [], + "302": [], + "303": [], + "305": [], + "307": [ + "https://faucet.lovely.network" ], - "81": [ - { - "name": "Block Explorer", - "url": "https://explorer.japanopenchain.org", - "standard": "EIP3091", - "icon": "joc" - } + "308": [], + "309": [], + "311": [ + "https://faucet.omaxray.com/" ], - "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" - } + "313": [], + "314": [], + "321": [], + "322": [ + "https://faucet-testnet.kcc.network" ], - "84": [ - { - "name": "Linqto Devnet Explorer", - "url": "https://explorer.linqto-dev.com", - "standard": "EIP3091" - } + "323": [], + "324": [], + "333": [], + "335": [], + "336": [], + "338": [ + "https://cronos.org/faucet" ], - "85": [ - { - "name": "GateScan", - "url": "https://www.gatescan.org/testnet", - "standard": "EIP3091" - } + "345": [], + "360": [], + "361": [], + "363": [], + "364": [], + "365": [], + "369": [], + "371": [], + "380": [], + "381": [], + "385": [ + "https://pipa.lisinski.online" ], - "86": [ - { - "name": "GateScan", - "url": "https://www.gatescan.org", - "standard": "EIP3091" - } + "395": [ + "https://faucet.testnet.camdl.gov.kh/" ], - "87": [ - { - "name": "novanetwork", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } + "397": [], + "398": [], + "399": [], + "400": [ + "https://faucet.hyperonchain.com" ], - "90": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + "401": [], + "404": [], + "411": [], + "416": [], + "418": [ + "https://faucet.lachain.network" ], - "91": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + "420": [], + "422": [], + "424": [], + "427": [], + "428": [], + "434": [], + "443": [], + "444": [], + "456": [], + "462": [], + "463": [], + "499": [], + "500": [], + "501": [], + "510": [], + "512": [], + "513": [ + "https://scan-testnet.acuteangle.com/faucet" ], - "92": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + "516": [], + "520": [ + "https://xsc.pub/faucet" ], - "93": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + "529": [], + "530": [], + "534": [], + "537": [], + "542": [], + "545": [ + "https://testnet-faucet.onflow.org" ], - "94": [ - { - "name": "SwissDLT Explorer", - "url": "https://explorer.swissdlt.ch", - "icon": "bcts", - "standard": "EIP3091" - } + "555": [], + "558": [], + "568": [ + "https://faucet.dogechain.dog" ], - "95": [ - { - "name": "CamDL Block Explorer", - "url": "https://explorer.camdl.gov.kh", - "standard": "EIP3091" - } + "570": [ + "https://rollux.id/faucetapp" ], - "96": [ - { - "name": "Bitkub Chain Explorer", - "url": "https://bkcscan.com", - "standard": "none", - "icon": "bkc" - } + "571": [], + "579": [], + "592": [], + "595": [], + "596": [], + "597": [], + "600": [], + "601": [ + "https://vne.network/rose" ], - "97": [ - { - "name": "bscscan-testnet", - "url": "https://testnet.bscscan.com", - "standard": "EIP3091" - } + "612": [], + "614": [], + "634": [], + "646": [ + "https://previewnet-faucet.onflow.org" ], - "98": [ - { - "name": "SIX Scan", - "url": "https://sixscan.io/sixnet", - "standard": "none", - "icon": "six" - } + "647": [ + "https://faucet.toronto.sx.technology" ], - "99": [ - { - "name": "blockscout", - "url": "https://blockscout.com/poa/core", - "icon": "blockscout", - "standard": "EIP3091" - } + "648": [], + "653": [], + "654": [], + "662": [], + "666": [ + "https://chain.pixie.xyz/faucet" ], - "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" - } + "667": [], + "668": [], + "669": [ + "https://faucet-testnet.juncachain.com" ], - "103": [ - { - "name": "Worldland Explorer", - "url": "https://scan.worldland.foundation", - "standard": "EIP3091" - } + "686": [], + "690": [], + "700": [], + "701": [], + "707": [], + "708": [ + "https://faucet.bcsdev.io" ], - "104": [ - { - "name": "kaibascan", - "url": "https://kaibascan.io", - "icon": "kaibascan", - "standard": "EIP3091" - } + "710": [], + "713": [], + "719": [], + "721": [], + "727": [], + "730": [], + "741": [ + "https://faucet.vention.network" ], - "105": [ - { - "name": "Web3Games Explorer", - "url": "https://explorer-devnet.web3games.org", - "standard": "none" - } + "742": [], + "747": [], + "766": [], + "776": [ + "https://faucet.openchain.info/" ], - "106": [ - { - "name": "Velas Explorer", - "url": "https://evmexplorer.velas.com", - "standard": "EIP3091" - } + "777": [], + "786": [], + "787": [], + "788": [ + "https://faucet.aerochain.id/" ], - "107": [ - { - "name": "nebulatestnet", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } + "789": [], + "799": [ + "https://faucet.testnet.rupaya.io" ], - "108": [ - { - "name": "thundercore-viewblock", - "url": "https://viewblock.io/thundercore", - "standard": "EIP3091" - } + "800": [ + "https://faucet.lucidcoin.io" ], - "109": [ - { - "name": "shibariumscan", - "url": "https://www.shibariumscan.io", - "standard": "none" - } + "803": [], + "808": [], + "810": [ + "https://www.haven1.org/faucet" ], - "112": [ - { - "name": "blockscout", - "url": "https://coinbit-explorer.chain.sbcrypto.app", - "icon": "blockscout", - "standard": "EIP3091" - } + "813": [], + "814": [], + "818": [], + "820": [], + "822": [ + "https://faucet.runic.build" ], - "113": [ - { - "name": "Dehvo Explorer", - "url": "https://explorer.dehvo.com", - "standard": "EIP3091" - } + "831": [], + "841": [], + "842": [], + "859": [], + "868": [], + "876": [], + "877": [ + "https://faucet.dexit.network" ], - "114": [ - { - "name": "blockscout", - "url": "https://coston2-explorer.flare.network", - "standard": "EIP3091" - }, - { - "name": "flarescan", - "url": "https://coston2.testnet.flarescan.com", - "standard": "EIP3091" - } + "880": [], + "888": [], + "898": [ + "https://faucet.maxi.network" ], - "117": [ - { - "name": "Uptick Explorer", - "url": "https://evm-explorer.uptick.network", - "icon": "uptick", - "standard": "none" - } + "899": [], + "900": [ + "https://faucet-testnet.garizon.com" ], - "118": [ - { - "name": "arcology", - "url": "https://testnet.arcology.network/explorer", - "standard": "none" - } + "901": [ + "https://faucet-testnet.garizon.com" ], - "119": [ - { - "name": "enulsscan", - "url": "https://evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } + "902": [ + "https://faucet-testnet.garizon.com" ], - "120": [ - { - "name": "enulsscan", - "url": "https://beta.evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } + "903": [ + "https://faucet-testnet.garizon.com" ], - "121": [ - { - "name": "realscan", - "url": "https://rclscan.com", - "standard": "EIP3091" - } + "909": [], + "910": [], + "911": [], + "917": [ + "https://faucet.thefirechain.com" ], - "122": [ - { - "name": "blockscout", - "url": "https://explorer.fuse.io", - "icon": "blockscout", - "standard": "EIP3091" - } + "919": [ + "https://sepoliafaucet.com/" ], - "125": [ - { - "name": "OYchain Testnet Explorer", - "url": "https://explorer.testnet.oychain.io", - "standard": "none" - } + "927": [], + "943": [ + "https://faucet.v4.testnet.pulsechain.com/" ], - "126": [ - { - "name": "OYchain Mainnet Explorer", - "url": "https://explorer.oychain.io", - "standard": "none" - } + "956": [], + "957": [], + "963": [], + "969": [], + "970": [], + "971": [], + "972": [], + "977": [ + "https://faucet.nepalblockchain.network" ], - "128": [ - { - "name": "hecoinfo", - "url": "https://hecoinfo.com", - "standard": "EIP3091" - } + "979": [], + "980": [], + "985": [ + "https://faucet.metamemo.one/" ], - "129": [ - { - "name": "Innovator Explorer", - "url": "https://evm.innovatorchain.com", - "icon": "blockscout", - "standard": "none" - } + "989": [], + "990": [ + "https://faucet.eliberty.ngo" ], - "131": [ - { - "name": "blockscout", - "url": "https://tokioscan-v2.engram.tech", - "icon": "engram", - "standard": "EIP3091" - } + "997": [ + "https://explorer.5ire.network/faucet" ], - "134": [ - { - "name": "blockscout", - "url": "https://blockscout.bellecour.iex.ec", - "icon": "blockscout", - "standard": "EIP3091" - } + "998": [], + "999": [], + "1000": [], + "1001": [ + "https://baobab.wallet.klaytn.com/access?next=faucet" ], - "135": [ - { - "name": "alyx testnet scan", - "url": "https://testnet.alyxscan.com", - "standard": "EIP3091" - } + "1003": [], + "1004": [], + "1007": [], + "1008": [], + "1009": [], + "1010": [], + "1011": [], + "1012": [], + "1022": [], + "1023": [], + "1024": [], + "1028": [], + "1030": [], + "1031": [], + "1038": [ + "https://faucet.bronos.org" ], - "136": [ - { - "name": "Deamchain Block Explorer", - "url": "https://scan.deamchain.com", - "standard": "EIP3091", - "icon": "deam" - } + "1039": [], + "1073": [ + "https://evm-toolkit.evm.testnet.shimmer.network", + "https://evm-faucet.testnet.shimmer.network" ], - "137": [ - { - "name": "polygonscan", - "url": "https://polygonscan.com", - "standard": "EIP3091" - }, - { - "name": "dexguru", - "url": "https://polygon.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + "1075": [ + "https://evm-toolkit.evm.testnet.iotaledger.net" ], - "138": [ - { - "name": "Blockscout Explorer", - "url": "https://blockscout.defi-oracle.io", - "standard": "none" - }, - { - "name": "Quorum Explorer", - "url": "https://explorer.defi-oracle.io", - "standard": "none" - } + "1079": [], + "1080": [], + "1088": [], + "1089": [], + "1099": [], + "1100": [], + "1101": [], + "1107": [], + "1108": [], + "1111": [], + "1112": [ + "https://wallet.test.wemix.com/faucet" ], - "139": [ - { - "name": "wikiwoop", - "url": "https://explorer.wikiwoop.com", - "standard": "EIP3091" - } + "1113": [], + "1115": [ + "https://scan.test.btcs.network/faucet" ], - "141": [ - { - "name": "Belly Scan", - "url": "https://testnet.bellyscan.com", - "standard": "none" - } + "1116": [], + "1117": [ + "https://faucet.dogcoin.network" ], - "144": [ - { - "name": "Phiscan", - "url": "https://phiscan.com", - "icon": "phi", - "standard": "none" - } + "1123": [], + "1130": [], + "1131": [], + "1133": [ + "http://tc04.mydefichain.com/faucet" ], - "145": [ - { - "name": "blockscout", - "url": "https://explorer.soraai.bot", - "icon": "blockscout", - "standard": "EIP3091" - } + "1135": [], + "1138": [], + "1139": [], + "1140": [ + "https://scan.boka.network/#/Galois/faucet" ], - "147": [ - { - "name": "Flag Mainnet Explorer", - "url": "https://flagscan.xyz", - "standard": "EIP3091" - } + "1147": [ + "https://faucet.flagscan.xyz" ], - "148": [ - { - "name": "explorer", - "url": "https://explorer.evm.shimmer.network", - "icon": "shimmerevm", - "standard": "EIP3091" - } + "1149": [], + "1170": [], + "1177": [], + "1188": [], + "1197": [], + "1200": [], + "1201": [], + "1202": [], + "1209": [], + "1210": [ + "https://cuckoo.network/portal/faucet/" ], - "150": [ - { - "name": "SIX Scan fivenet", - "url": "https://sixscan.io/fivenet", - "standard": "none", - "icon": "six" - } + "1213": [], + "1214": [], + "1221": [], + "1225": [], + "1229": [], + "1230": [], + "1231": [], + "1234": [], + "1235": [], + "1243": [], + "1244": [ + "https://faucet.archiechain.io" ], - "153": [ - { - "name": "Redbelly Network Testnet Explorer", - "url": "https://explorer.testnet.redbelly.network", - "standard": "none" - } + "1246": [], + "1248": [], + "1252": [ + "https://cicfaucet.com" ], - "155": [ - { - "name": "TenetScan Testnet", - "url": "https://testnet.tenetscan.io", - "icon": "tenet", - "standard": "EIP3091" - } + "1280": [], + "1284": [], + "1285": [], + "1287": [], + "1288": [], + "1291": [ + "https://faucet.testnet.swisstronik.com" ], - "156": [ - { - "name": "OEScan explorer", - "url": "https://testnet.oescan.io", - "standard": "EIP3091" - } + "1311": [], + "1314": [], + "1319": [], + "1320": [ + "https://aia-faucet-testnet.aiachain.org" ], - "157": [ - { - "name": "puppyscan", - "url": "https://puppyscan.shib.io", - "standard": "none" - } + "1328": [ + "https://atlantic-2.app.sei.io/faucet" ], - "158": [ - { - "name": "Rbascan Explorer", - "url": "https://rbascan.com", - "standard": "EIP3091" - } + "1329": [], + "1337": [], + "1338": [], + "1339": [], + "1343": [], + "1353": [], + "1369": [], + "1370": [], + "1377": [], + "1379": [], + "1388": [], + "1392": [], + "1414": [], + "1433": [], + "1440": [], + "1442": [], + "1452": [], + "1453": [ + "https://istanbul-faucet.metachain.dev" ], - "159": [ - { - "name": "Rbascan Testnet Explorer", - "url": "https://testnet.rbascan.com", - "standard": "EIP3091" - } + "1455": [ + "https://faucet.ctexscan.com" ], - "161": [ - { - "name": "blockscout - evascan", - "url": "https://testnet.evascan.io", - "standard": "EIP3091" - } + "1490": [], + "1499": [], + "1501": [], + "1506": [], + "1507": [], + "1515": [ + "https://faucet.beagle.chat/" ], - "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" - } + "1559": [], + "1617": [], + "1618": [], + "1620": [], + "1625": [], + "1657": [], + "1662": [], + "1663": [ + "https://faucet.horizen.io" ], - "167": [ - { - "name": "atoshiscan", - "url": "https://scan.atoverse.info", - "standard": "EIP3091" - } + "1686": [], + "1687": [], + "1688": [], + "1701": [ + "https://evm.anytype.io/faucet" ], - "168": [ - { - "name": "AIOZ Network Explorer", - "url": "https://explorer.aioz.network", - "standard": "EIP3091" - } + "1707": [], + "1708": [ + "https://faucet.blockchain.or.th" ], - "169": [ - { - "name": "manta-pacific Explorer", - "url": "https://pacific-explorer.manta.network", - "standard": "EIP3091" - } + "1717": [], + "1718": [], + "1729": [], + "1740": [], + "1750": [], + "1773": [], + "1777": [], + "1789": [], + "1804": [ + "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" ], - "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" - } + "1807": [ + "https://analogfaucet.com" ], - "188": [ - { - "name": "Blockmeta", - "url": "https://bmc.blockmeta.com", - "standard": "none" - } + "1818": [], + "1819": [ + "https://faucet.cube.network" ], - "189": [ - { - "name": "Blockmeta", - "url": "https://bmctestnet.blockmeta.com", - "standard": "none" - } + "1821": [], + "1856": [], + "1875": [], + "1881": [], + "1890": [], + "1891": [ + "https://faucet.pegasus.lightlink.io/" ], - "193": [ - { - "name": "cemscan", - "url": "https://cemscan.com", - "standard": "EIP3091" - } + "1898": [], + "1904": [], + "1907": [], + "1908": [ + "https://faucet.bitcichain.com" ], - "195": [ - { - "name": "OKLink", - "url": "https://www.oklink.com/xlayer-test", - "standard": "EIP3091" - } + "1909": [], + "1911": [], + "1912": [ + "https://claim-faucet.rubychain.io/" ], - "196": [ - { - "name": "OKLink", - "url": "https://www.oklink.com/xlayer", - "standard": "EIP3091" - } + "1918": [], + "1945": [], + "1951": [], + "1953": [], + "1954": [], + "1956": [], + "1961": [], + "1967": [ + "https://faucet.metatime.com/eleanor" ], - "197": [ - { - "name": "blockscout", - "url": "https://testnet.neutrinoschain.com", - "standard": "EIP3091" - } + "1969": [ + "https://testnet.scschain.com" ], - "198": [ - { - "name": "Bitchain Scan", - "url": "https://explorer.bitchain.biz", - "standard": "EIP3091" - } + "1970": [], + "1971": [], + "1972": [], + "1975": [], + "1984": [], + "1985": [], + "1986": [], + "1987": [], + "1992": [], + "1994": [], + "1995": [ + "https://faucet.edexa.com/" ], - "199": [ - { - "name": "BitTorrent Chain Explorer", - "url": "https://bttcscan.com", - "standard": "EIP3091" - } + "1996": [], + "1997": [], + "1998": [ + "https://faucet.kyotoprotocol.io" ], - "200": [ - { - "name": "blockscout", - "url": "https://blockscout.com/xdai/arbitrum", - "standard": "EIP3091" - } + "2000": [], + "2001": [], + "2002": [], + "2004": [], + "2008": [], + "2009": [], + "2013": [], + "2014": [], + "2016": [], + "2017": [ + "https://telcoin.network/faucet" ], - "201": [ - { - "name": "moac testnet explorer", - "url": "https://testnet.moac.io", - "standard": "none" - } + "2018": [], + "2019": [], + "2020": [], + "2021": [], + "2022": [], + "2023": [ + "https://ttaycan-faucet.hupayx.io/" ], - "202": [ - { - "name": "Edgeless Explorer", - "url": "https://testnet.explorer.edgeless.network", - "standard": "EIP3091" - } + "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" ], - "204": [ - { - "name": "opbnbscan", - "url": "https://mainnet.opbnbscan.com", - "standard": "EIP3091" - } + "2202": [ + "https://faucet.antofy.io" ], - "206": [ - { - "name": "VinuScan Testnet", - "url": "https://testnet.vinuscan.com", - "icon": "vinuscan-testnet", - "standard": "none" - } + "2203": [], + "2213": [], + "2221": [ + "https://faucet.kava.io" ], - "207": [ - { - "name": "VinuScan", - "url": "https://vinuscan.com", - "icon": "vinuscan", - "standard": "none" - } + "2222": [], + "2223": [], + "2241": [], + "2300": [], + "2306": [], + "2309": [], + "2323": [ + "https://faucet.somanetwork.io" ], - "210": [ - { - "name": "Bitnet Explorer", - "url": "https://btnscan.com", - "standard": "EIP3091" - } + "2330": [], + "2331": [], + "2332": [ + "https://airdrop.somanetwork.io" ], - "212": [ - { - "name": "maposcan", - "url": "https://testnet.maposcan.io", - "standard": "EIP3091" - } + "2340": [ + "https://app-olympia.atleta.network/faucet" ], - "213": [ - { - "name": "B2 Hub Mainnet Explorer", - "url": "https://hub-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } + "2342": [ + "https://www.omniaverse.io" ], - "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" - } + "2355": [], + "2358": [], + "2370": [ + "https://evm-faucet.nexis.network" ], - "302": [ - { - "name": "zkCandy Block Explorer", - "url": "https://sepolia.explorer.zkcandy.io", - "icon": "zkcandy", - "standard": "EIP3091" - } + "2399": [ + "https://faucet.bombchain-testnet.ankr.com/" ], - "303": [ - { - "name": "neuroscan", - "url": "https://testnet.ncnscan.com", - "standard": "EIP3091" - } + "2400": [], + "2410": [], + "2415": [], + "2425": [], + "2442": [], + "2458": [ + "https://faucet-testnet.hybridchain.ai" ], - "305": [ - { - "name": "blockscout", - "url": "https://explorer.zksats.io", - "icon": "zksats", - "standard": "EIP3091" - } + "2468": [ + "https://faucet-testnet.hybridchain.ai" ], - "307": [ - { - "name": "Lovely Network Testnet", - "url": "https://tscan.lovely.network", - "standard": "EIP3091" - } + "2484": [ + "https://faucet.uniultra.xyz" ], - "308": [ - { - "name": "furthscan", - "url": "http://furthscan.com", - "standard": "EIP3091" - } + "2522": [], + "2525": [], + "2559": [], + "2569": [], + "2606": [], + "2611": [], + "2612": [], + "2613": [ + "https://testnet-faucet.ezchain.com" ], - "309": [ - { - "name": "wyzth", - "url": "http://24.199.108.65:4000", - "icon": "wyzth", - "standard": "EIP3091" - } + "2625": [ + "https://testnet.whitechain.io/faucet" ], - "311": [ - { - "name": "Omax Chain Explorer", - "url": "https://omaxray.com", - "icon": "omaxray", - "standard": "EIP3091" - } + "2648": [], + "2649": [], + "2662": [], + "2710": [], + "2718": [], + "2730": [], + "2731": [], + "2748": [], + "2777": [], + "2810": [], + "2907": [], + "2911": [], + "2941": [ + "https://xfaucet.xenonchain.com" ], - "313": [ - { - "name": "neuroscan", - "url": "https://ncnscan.com", - "standard": "EIP3091" - } + "2999": [], + "3000": [ + "https://app-faucet.centrality.me" ], - "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" - } + "3001": [ + "https://app-faucet.centrality.me" ], - "321": [ - { - "name": "KCC Explorer", - "url": "https://explorer.kcc.io/en", - "standard": "EIP3091" - } + "3003": [], + "3011": [], + "3031": [], + "3033": [], + "3068": [], + "3073": [], + "3100": [], + "3102": [], + "3109": [], + "3110": [], + "3269": [], + "3270": [ + "https://faucet.arabianchain.org/" ], - "322": [ - { - "name": "kcc-scan-testnet", - "url": "https://scan-testnet.kcc.network", - "standard": "EIP3091" - } + "3306": [], + "3331": [ + "https://faucet.zcore.cash" ], - "323": [ - { - "name": "Blockscout", - "url": "https://explorer.cosvm.net", - "icon": "blockscout", - "standard": "EIP3091" - } + "3333": [], + "3334": [], + "3335": [], + "3400": [], + "3424": [], + "3434": [ + "https://faucet.securechain.ai" ], - "324": [ - { - "name": "zkSync Era Block Explorer", - "url": "https://explorer.zksync.io", - "icon": "zksync-era", - "standard": "EIP3091" - } + "3456": [ + "https://testnet-faucet.layeredge.io" ], - "333": [ - { - "name": "w3q-mainnet", - "url": "https://explorer.mainnet.web3q.io", - "standard": "EIP3091" - } + "3490": [], + "3500": [ + "https://faucet.paribuscan.com" ], - "335": [ - { - "name": "ethernal", - "url": "https://explorer-test.dfkchain.com", - "icon": "ethereum", - "standard": "none" - } + "3501": [], + "3601": [], + "3602": [], + "3630": [], + "3636": [ + "https://faucet.botanixlabs.dev" ], - "336": [ - { - "name": "subscan", - "url": "https://shiden.subscan.io", - "standard": "none", - "icon": "subscan" - }, - { - "name": "blockscout", - "url": "https://blockscout.com/shiden", - "icon": "blockscout", - "standard": "EIP3091" - } + "3637": [ + "https://faucet.btxtestchain.com" ], - "338": [ - { - "name": "Cronos Testnet Explorer", - "url": "https://explorer.cronos.org/testnet", - "standard": "none" - } + "3639": [], + "3645": [], + "3666": [], + "3690": [], + "3693": [], + "3698": [ + "https://faucet.senjepowersscan.com" ], - "345": [ - { - "name": "tscscan", - "url": "https://www.tscscan.io", - "icon": "netxscan", - "standard": "none" - } + "3699": [ + "https://faucet.senjepowersscan.com" ], - "361": [ - { - "name": "Theta Mainnet Explorer", - "url": "https://explorer.thetatoken.org", - "standard": "EIP3091" - } + "3737": [ + "https://faucet.crossbell.io" ], - "363": [ - { - "name": "Theta Sapphire Testnet Explorer", - "url": "https://guardian-testnet-sapphire-explorer.thetatoken.org", - "standard": "EIP3091" - } + "3776": [], + "3797": [], + "3799": [ + "https://faucet.tangle.tools" ], - "364": [ - { - "name": "Theta Amber Testnet Explorer", - "url": "https://guardian-testnet-amber-explorer.thetatoken.org", - "standard": "EIP3091" - } + "3885": [ + "zkevm-faucet.thefirechain.com" ], - "365": [ - { - "name": "Theta Testnet Explorer", - "url": "https://testnet-explorer.thetatoken.org", - "standard": "EIP3091" - } + "3888": [], + "3889": [], + "3912": [ + "https://www.dracscan.io/faucet" ], - "369": [ - { - "name": "blockscout", - "url": "https://scan.pulsechain.com", - "icon": "blockscout", - "standard": "EIP3091" - }, - { - "name": "otterscan", - "url": "https://otter.pulsechain.com", - "standard": "EIP3091" - } + "3939": [], + "3966": [ + "https://faucet.dynoscan.io" ], - "371": [ - { - "name": "blockscout", - "url": "https://explorer-testnet.theconsta.com", - "standard": "EIP3091" - } + "3967": [ + "https://faucet.dynoscan.io" ], - "380": [ - { - "name": "ZKAmoeba Test Explorer", - "url": "https://testnetexplorer.zkamoeba.com", - "icon": "zkamoeba-micro", - "standard": "EIP3091" - } + "3993": [ + "https://sepoliafaucet.com/" ], - "381": [ - { - "name": "ZKAmoeba Explorer", - "url": "https://explorer.zkamoeba.com", - "icon": "zkamoeba-micro", - "standard": "EIP3091" - } + "3999": [], + "4000": [], + "4001": [], + "4002": [ + "https://faucet.fantom.network" ], - "395": [ - { - "name": "CamDL Testnet Explorer", - "url": "https://explorer.testnet.camdl.gov.kh", - "standard": "EIP3091" - } + "4003": [], + "4040": [ + "https://getfaucet.carbonium.network" ], - "397": [ - { - "name": "Near Blocks", - "url": "https://nearblocks.io", - "standard": "none" - } + "4048": [], + "4058": [], + "4061": [], + "4062": [], + "4078": [], + "4080": [], + "4090": [ + "https://faucet.oasis.fastexchain.com" ], - "398": [ - { - "name": "Near blocks", - "url": "https://testnet.nearblocks.io", - "standard": "none" - } + "4096": [ + "https://faucet.bitindi.org" ], - "399": [ - { - "name": "N3scan", - "url": "https://scan.nativ3.network", - "standard": "EIP3091" - } + "4099": [ + "https://faucet.bitindi.org" ], - "400": [ - { - "name": "blockscout", - "url": "https://testnet.hyperonchain.com", - "icon": "hyperonchain", - "standard": "EIP3091" - } + "4102": [], + "4139": [], + "4141": [ + "https://faucet.tipboxcoin.net" ], - "401": [ - { - "name": "OZONE Scan", - "url": "https://testnet.ozonescan.io", - "standard": "EIP3091" - } + "4157": [], + "4181": [], + "4200": [], + "4201": [ + "https://faucet.testnet.lukso.network" ], - "404": [ - { - "name": "Syndr L3 Explorer", - "url": "https://explorer.syndr.com", - "standard": "EIP3091" - } + "4202": [ + "https://app.optimism.io/faucet" ], - "411": [ - { - "name": "pepechain explorer", - "url": "https://explorer.pepe-chain.vip", - "standard": "EIP3091" - } + "4242": [], + "4243": [], + "4337": [ + "https://faucet.onbeam.com" ], - "416": [ - { - "name": "SX Network Explorer", - "url": "https://explorer.sx.technology", - "standard": "EIP3091" - } + "4400": [], + "4444": [ + "https://gruvin.me/htmlcoin" ], - "418": [ - { - "name": "LaTestnet Explorer", - "url": "https://testexplorer.lachain.network", - "standard": "EIP3091" - } + "4460": [], + "4488": [], + "4544": [ + "https://faucet.emoney.network/faucet" ], - "420": [ - { - "name": "blockscout", - "url": "https://optimism-goerli.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } + "4613": [], + "4653": [], + "4689": [], + "4690": [ + "https://faucet.iotex.io/" ], - "422": [ - { - "name": "Viridis Mainnet", - "url": "https://explorer.vrd.network", - "standard": "EIP3091" - } + "4759": [], + "4777": [], + "4893": [], + "4918": [], + "4919": [], + "4999": [], + "5000": [], + "5001": [ + "https://faucet.testnet.mantle.xyz" ], - "424": [ - { - "name": "blockscout", - "url": "https://explorer.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } + "5002": [], + "5003": [ + "https://faucet.sepolia.mantle.xyz" ], - "427": [ - { - "name": "Zeeth Explorer", - "url": "https://explorer.zeeth.io", - "standard": "none" - } + "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" ], - "428": [ - { - "name": "Geso Verse Explorer", - "url": "https://explorer.verse.gesoten.com", - "standard": "EIP3091" - } + "5372": [ + "https://faucet.settlus.io" ], - "434": [ - { - "name": "Boyaa explorer", - "url": "https://explorer.mainnet.boyaa.network", - "standard": "EIP3091" - } + "5424": [], + "5439": [], + "5522": [ + "https://t.me/vexfaucetbot" ], - "443": [ - { - "name": "Ten Sepolia Rollup Explorer", - "url": "https://tenscan.io", - "standard": "none" - } + "5551": [], + "5555": [], + "5611": [ + "https://testnet.bnbchain.org/faucet-smart" + ], + "5615": [ + "https://faucet.arcturuschain.io" ], - "444": [ - { - "name": "Synapse Chain Sepolia", - "url": "https://sepolia.synapsescan.com", - "standard": "EIP3091" - } + "5616": [], + "5656": [], + "5675": [], + "5678": [], + "5700": [ + "https://faucet.tanenbaum.io" ], - "456": [ - { - "name": "ARZIO Scan", - "url": "https://scan.arzio.co", - "standard": "EIP3091" - } + "5729": [], + "5758": [ + "https://faucet.satoshichain.io" ], - "462": [ - { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } + "5777": [], + "5845": [], + "5851": [ + "https://developer.ont.io/" ], - "463": [ - { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } + "5869": [], + "6000": [], + "6001": [], + "6065": [ + "http://faucet.tresleches.finance:8080" ], - "500": [ - { - "name": "blockexplorer", - "url": "https://suite.camino.network/explorer", - "standard": "none" - } + "6066": [], + "6102": [ + "https://www.cascadia.foundation/faucet" ], - "501": [ - { - "name": "blockexplorer", - "url": "https://suite.camino.network/explorer", - "standard": "none" - } + "6118": [], + "6119": [], + "6321": [ + "https://aura.faucetme.pro" ], - "512": [ - { - "name": "aacscan", - "url": "https://scan.acuteangle.com", - "standard": "EIP3091" - } + "6322": [], + "6363": [], + "6502": [], + "6552": [ + "https://faucet.scolcoin.com" ], - "513": [ - { - "name": "aacscan-testnet", - "url": "https://scan-testnet.acuteangle.com", - "standard": "EIP3091" - } + "6565": [ + "https://faucet.foxchain.app" ], - "520": [ - { - "name": "xscscan", - "url": "https://xscscan.pub", - "standard": "EIP3091" - } + "6626": [], + "6660": [ + "http://faucet.latestchain.io" ], - "530": [ - { - "name": "FunctionX Explorer", - "url": "https://fx-evm.functionx.io", - "standard": "EIP3091" - } + "6661": [], + "6666": [ + "https://faucet.cybascan.io" ], - "534": [ - { - "name": "candleexplorer", - "url": "https://candleexplorer.com", - "standard": "EIP3091" - } + "6688": [], + "6699": [], + "6701": [], + "6779": [], + "6789": [ + "https://faucet.goldsmartchain.com" ], - "537": [ - { - "name": "OpTrust explorer", - "url": "https://scan.optrust.io", - "icon": "optrust", - "standard": "none" - } + "6868": [], + "6969": [], + "6999": [], + "7000": [], + "7001": [ + "https://labs.zetachain.com/get-zeta" ], - "542": [ - { - "name": "PAWCHAIN Testnet", - "url": "https://pawscan.io", - "standard": "none" - } + "7007": [], + "7027": [], + "7070": [], + "7077": [], + "7100": [], + "7118": [], + "7171": [], + "7300": [], + "7331": [], + "7332": [], + "7341": [], + "7484": [], + "7518": [], + "7560": [], + "7575": [ + "https://testnet-faucet.adil-scan.io" ], - "545": [ - { - "name": "Flow Diver", - "url": "https://testnet.flowdiver.io", - "standard": "none" - } + "7576": [], + "7668": [], + "7672": [], + "7700": [], + "7701": [], + "7771": [ + "https://faucet.bit-rock.io" ], - "555": [ - { - "name": "Vela1 Chain Mainnet Explorer", - "url": "https://exp.velaverse.io", - "standard": "EIP3091" - } + "7775": [], + "7777": [], + "7778": [], + "7798": [ + "https://long.hub.openex.network/faucet" ], - "568": [ - { - "name": "dogechain testnet explorer", - "url": "https://explorer-testnet.dogechain.dog", - "standard": "EIP3091" - } + "7860": [ + "https://faucet-testnet.maalscan.io/" ], - "570": [ - { - "name": "Rollux Explorer", - "url": "https://explorer.rollux.com", - "standard": "EIP3091" - } + "7878": [ + "https://faucet.hazlor.com" ], - "571": [ - { - "name": "MetaExplorer", - "url": "https://explorer.metatime.com", - "standard": "EIP3091" - } + "7887": [], + "7895": [ + "https://faucet-athena.ardescan.com/" ], - "579": [ - { - "name": "filenova explorer", - "url": "https://scan.filenova.org", - "icon": "filenova", - "standard": "none" - } + "7923": [], + "7924": [ + "https://faucet.mochain.app/" ], - "592": [ - { - "name": "subscan", - "url": "https://astar.subscan.io", - "standard": "none", - "icon": "subscan" - }, - { - "name": "blockscout", - "url": "https://blockscout.com/astar", - "icon": "blockscout", - "standard": "EIP3091" - } + "7979": [], + "8000": [], + "8001": [ + "https://chain-docs.teleport.network/testnet/faucet.html" ], - "595": [ - { - "name": "blockscout", - "url": "https://blockscout.mandala.aca-staging.network", - "standard": "EIP3091" - } + "8029": [], + "8047": [], + "8054": [], + "8080": [ + "https://faucet.liberty10.shardeum.org" ], - "596": [ - { - "name": "blockscout", - "url": "https://blockscout.karura-testnet.aca-staging.network", - "standard": "EIP3091" - } + "8081": [ + "https://faucet.liberty20.shardeum.org" ], - "597": [ - { - "name": "blockscout", - "url": "https://blockscout.acala-dev.aca-dev.network", - "standard": "EIP3091" - } + "8082": [ + "https://faucet-sphinx.shardeum.org/" ], - "601": [ - { - "name": "Vine Explorer", - "url": "https://vne.network/rose", - "standard": "none", - "icon": "vine" - } + "8086": [], + "8087": [], + "8098": [], + "8131": [ + "https://faucet.qitmeer.io" ], - "612": [ - { - "name": "EIOB Explorer", - "url": "https://explorer.eiob.xyz", - "standard": "none" - } + "8132": [], + "8133": [], + "8134": [], + "8135": [], + "8136": [], + "8181": [ + "https://testnet.beonescan.com/faucet" ], - "614": [ - { - "name": "GLQ Explorer", - "url": "https://explorer.graphlinq.io", - "standard": "none" - } + "8192": [], + "8194": [], + "8217": [], + "8227": [], + "8272": [ + "https://faucet.blocktonscan.com/" ], - "634": [ - { - "name": "avoscan", - "url": "https://avoscan.co", - "icon": "avocado", - "standard": "none" - } + "8285": [], + "8329": [], + "8387": [], + "8453": [], + "8654": [], + "8655": [], + "8668": [], + "8723": [], + "8724": [ + "https://testnet-explorer.wolot.io" ], - "646": [ - { - "name": "Flow Diver", - "url": "https://previewnet.flowdiver.io", - "standard": "none" - } + "8726": [], + "8727": [], + "8738": [], + "8768": [ + "https://faucet.tmychain.org/" ], - "647": [ - { - "name": "SX Network Toronto Explorer", - "url": "https://explorer.toronto.sx.technology", - "standard": "EIP3091" - } + "8822": [], + "8844": [ + "https://app.testnet.hydrachain.org/faucet" ], - "648": [ - { - "name": "Endurance Scan", - "url": "https://explorer.endurance.fusionist.io", - "standard": "EIP3091" - } + "8848": [], + "8866": [], + "8880": [], + "8881": [], + "8882": [ + "https://t.me/unique2faucet_opal_bot" ], - "653": [ - { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } + "8883": [], + "8888": [], + "8889": [], + "8890": [ + "https://faucetcoin.orenium.org" ], - "654": [ - { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } + "8898": [ + "https://faucet.mmtscan.io/" ], - "662": [ - { - "name": "ultronsmartchain explorer", - "url": "https://scan.ultronsmartchain.io", - "standard": "EIP3091" - } + "8899": [], + "8911": [], + "8912": [], + "8921": [], + "8922": [], + "8989": [], + "8995": [ + "https://faucet.bloxberg.org/" ], - "667": [ - { - "name": "blockscout", - "url": "https://arrakis.gorengine.com", - "icon": "laos", - "standard": "EIP3091" - } + "9000": [ + "https://faucet.evmos.dev" ], - "668": [ - { - "name": "JuncaScan", - "url": "https://scan.juncachain.com", - "standard": "EIP3091" - } + "9001": [], + "9007": [ + "https://testnet.shidoscan.com/faucet" ], - "669": [ - { - "name": "JuncaScan", - "url": "https://scan-testnet.juncachain.com", - "standard": "EIP3091" - } + "9008": [], + "9012": [ + "https://t.me/BerylBit" ], - "686": [ - { - "name": "blockscout", - "url": "https://blockscout.karura.network", - "standard": "EIP3091" - } + "9024": [ + "https://testnet.nexablockscan.io/faucet" ], - "690": [ - { - "name": "blockscout", - "url": "https://explorer.redstone.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } + "9025": [], + "9100": [], + "9223": [], + "9339": [ + "https://faucet.dogcoin.network" ], - "700": [ - { - "name": "starscan", - "url": "https://avastar.info", - "standard": "EIP3091" - } + "9393": [], + "9395": [], + "9527": [ + "https://robin-faucet.rangersprotocol.com" ], - "701": [ - { - "name": "blockscout", - "url": "https://koi-scan.darwinia.network", - "standard": "EIP3091" - } + "9528": [ + "http://faucet.qeasyweb3.com" ], - "707": [ - { - "name": "BlockChain Station Explorer", - "url": "https://explorer.bcsdev.io", - "standard": "EIP3091" - } + "9559": [ + "https://faucet.neonlink.io/" ], - "708": [ - { - "name": "BlockChain Station Explorer", - "url": "https://testnet.bcsdev.io", - "standard": "EIP3091" - } + "9700": [], + "9728": [], + "9768": [ + "https://faucet.mainnetz.io" ], - "710": [ - { - "name": "Furya EVM Explorer", - "url": "https://explorer.furya.io", - "standard": "EIP3091", - "icon": "highbury" - } + "9779": [], + "9789": [ + "https://faucet.testnet.tabichain.com" ], - "713": [ - { - "name": "vrcscan", - "url": "https://vrcscan.com", - "standard": "EIP3091" - }, - { - "name": "dxbscan", - "url": "https://dxb.vrcscan.com", - "standard": "EIP3091" - } + "9790": [], + "9792": [], + "9797": [], + "9818": [ + "https://faucet.imperiumchain.com/" ], - "719": [ - { - "name": "shibscan", - "url": "https://puppyscan.shib.io", - "standard": "EIP3091" - } + "9819": [ + "https://faucet.imperiumchain.com/" ], - "721": [ - { - "name": "blockscout", - "url": "https://explorer.lycanchain.com", - "standard": "EIP3091" - } + "9888": [], + "9898": [], + "9911": [], + "9977": [ + "https://faucet.mindchain.info/" ], - "730": [ - { - "name": "Lovely Network Mainnet", - "url": "https://scan.lovely.network", - "standard": "EIP3091" - } + "9980": [], + "9981": [], + "9990": [], + "9996": [], + "9997": [], + "9998": [], + "9999": [], + "10000": [], + "10001": [], + "10024": [], + "10081": [], + "10086": [], + "10101": [], + "10200": [ + "https://gnosisfaucet.com" ], - "741": [ - { - "name": "ventionscan", - "url": "https://testnet.ventionscan.io", - "standard": "EIP3091" - } + "10201": [ + "https://faucet.maxxchain.org" ], - "742": [ - { - "name": "Script Explorer", - "url": "https://explorer.script.tv", - "standard": "none" - } + "10222": [], + "10242": [], + "10243": [ + "https://faucet.arthera.net" ], - "747": [ - { - "name": "Flow Diver", - "url": "https://flowdiver.io", - "standard": "none" - } + "10248": [], + "10321": [], + "10324": [ + "https://faucet.taoevm.io" ], - "766": [ - { - "name": "QL1 Mainnet Explorer", - "url": "https://mainnet.qom.one", - "icon": "qom", - "standard": "EIP3091" - } + "10395": [], + "10507": [], + "10508": [ + "https://faucet.avax.network/?subnet=num", + "https://faucet.num.network" ], - "776": [ - { - "name": "OPEN CHAIN TESTNET", - "url": "https://testnet.openchain.info", - "standard": "none" - } + "10823": [], + "10849": [], + "10850": [], + "10946": [], + "10947": [ + "https://faucetpage.quadrans.io" ], - "786": [ - { - "name": "maalscan", - "url": "https://maalscan.io", - "standard": "EIP3091" - } + "11110": [], + "11111": [ + "https://faucet.avax.network/?subnet=wagmi" ], - "787": [ - { - "name": "blockscout", - "url": "https://blockscout.acala.network", - "standard": "EIP3091" - } + "11115": [ + "https://faucet.astranaut.dev" ], - "788": [ - { - "name": "aeroscan", - "url": "https://testnet.aeroscan.id", - "standard": "EIP3091" - } + "11119": [], + "11221": [], + "11227": [], + "11235": [], + "11437": [], + "11501": [], + "11503": [], + "11612": [ + "https://faucet.sardisnetwork.com" ], - "789": [ - { - "name": "patexscan", - "url": "https://patexscan.io", - "icon": "patex", - "standard": "EIP3091" - } + "11822": [], + "11891": [], + "12009": [], + "12020": [ + "https://faucet.aternoschain.com" ], - "799": [ - { - "name": "rupayascan", - "url": "https://scan.testnet.rupaya.io", - "standard": "EIP3091" - } + "12051": [ + "https://nft.singularity.gold" ], - "800": [ - { - "name": "Lucid Explorer", - "url": "https://explorer.lucidcoin.io", - "standard": "none" - } + "12052": [ + "https://zeroscan.singularity.gold" ], - "810": [ - { - "name": "Haven1 Explorer", - "url": "https://testnet-explorer.haven1.org", - "icon": "haven1", - "standard": "EIP3091" - } + "12123": [ + "https://faucet.brcchain.io" ], - "813": [ - { - "name": "meerscan", - "icon": "meer", - "url": "https://qng.qitmeer.io", - "standard": "EIP3091" - }, - { - "name": "meerscan", - "icon": "meer", - "url": "https://qng.meerscan.io", - "standard": "EIP3091" - } + "12306": [ + "https://test.fibochain.org/faucets" ], - "818": [ - { - "name": "BeOne Chain Mainnet", - "url": "https://beonescan.com", - "standard": "EIP3091" - } + "12321": [ + "https://faucet.blgchain.com" ], - "822": [ - { - "name": "RunicScan", - "url": "https://scan.runic.build", - "icon": "runic-testnet", - "standard": "EIP3091" - } + "12324": [], + "12325": [], + "12345": [ + "https://faucet.step.network" ], - "831": [ - { - "name": "CDT Explorer", - "url": "https://explorer.checkdot.io", - "standard": "none" - } + "12553": [], + "12715": [], + "12781": [], + "12890": [], + "12898": [], + "13000": [], + "13308": [], + "13337": [ + "https://faucet.avax.network/?subnet=beam", + "https://faucet.onbeam.com" ], - "841": [ - { - "name": "Taraxa Explorer", - "url": "https://explorer.mainnet.taraxa.io", - "standard": "none" - } + "13371": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" ], - "842": [ - { - "name": "Taraxa Explorer", - "url": "https://explorer.testnet.taraxa.io", - "standard": "none" - } + "13381": [], + "13396": [], + "13473": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" ], - "859": [ - { - "name": "Zeeth Explorer Dev", - "url": "https://explorer.dev.zeeth.io", - "standard": "none" - } + "13505": [], + "13600": [], + "13812": [], + "14000": [], + "14324": [ + "https://faucet.evolveblockchain.io" ], - "868": [ - { - "name": "FSCScan", - "url": "https://explorer.fantasiachain.com", - "standard": "EIP3091" - } + "14333": [ + "https://faucet.vitruveo.xyz" ], - "876": [ - { - "name": "Bandai Namco Research Verse Explorer", - "url": "https://explorer.main.oasvrs.bnken.net", - "standard": "EIP3091" - } + "14801": [ + "https://faucet.vana.org" ], - "877": [ - { - "name": "dxtscan", - "url": "https://dxtscan.com", - "standard": "EIP3091" - } + "14853": [ + "https://t.me/HumanodeTestnet5FaucetBot" ], - "880": [ - { - "name": "Ambros Chain Explorer", - "url": "https://ambrosscan.com", - "standard": "none" - } + "15003": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" ], - "898": [ - { - "name": "Maxi Chain Testnet Explorer", - "url": "https://testnet.maxi.network", - "standard": "EIP3091" - } + "15257": [ + "https://faucet.poodl.org" ], - "899": [ - { - "name": "Maxi Chain Mainnet Explorer", - "url": "https://mainnet.maxi.network", - "standard": "EIP3091" - } + "15259": [], + "15551": [], + "15555": [ + "https://faucet.testnet-dev.trust.one/" ], - "900": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + "15557": [], + "16000": [], + "16001": [ + "https://faucet.metadot.network/" ], - "901": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + "16116": [], + "16507": [], + "16688": [], + "16718": [], + "16888": [ + "https://tfaucet.ivarex.com/" ], - "902": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + "17000": [ + "https://faucet.holesky.ethpandaops.io", + "https://holesky-faucet.pk910.de" ], - "903": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } + "17069": [], + "17117": [], + "17171": [ + "https://faucet.oneg8.network" ], - "911": [ - { - "name": "TAPROOT Scan", - "url": "https://scan.taprootchain.io", - "icon": "taproot", - "standard": "EIP3091" - } + "17172": [], + "17180": [], + "17217": [], + "17777": [], + "18000": [], + "18122": [], + "18159": [], + "18181": [ + "https://faucet.oneg8.network" ], - "917": [ - { - "name": "FireScan", - "url": "https://rinia.firescan.io", - "standard": "EIP3091" - } + "18233": [], + "18686": [], + "18888": [], + "18889": [], + "19011": [], + "19224": [], + "19527": [], + "19600": [], + "19845": [], + "20001": [], + "20041": [], + "20073": [], + "20729": [ + "https://faucet.callisto.network/" ], - "919": [ - { - "name": "modescout", - "url": "https://sepolia.explorer.mode.network", - "standard": "none" - } + "20736": [], + "20765": [], + "21004": [ + "https://play.google.com/store/apps/details?id=net.c4ei.fps2" ], - "927": [ - { - "name": "Yidarkscan", - "url": "https://yidarkscan.com", - "standard": "EIP3091" - } + "21133": [ + "https://t.me/c4eiAirdrop" ], - "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" - } + "21223": [], + "21224": [ + "https://faucet.dcpay.io" ], - "957": [ - { - "name": "Lyra Explorer", - "url": "https://explorer.lyra.finance", - "icon": "lyra", - "standard": "EIP3091" - } + "21337": [], + "21816": [], + "21912": [], + "22023": [], + "22040": [], + "22222": [], + "22324": [ + "https://faucet.goldxchain.io" ], - "963": [ - { - "name": "blockscout", - "url": "https://scan.bitcoincode.technology", - "standard": "EIP3091" - } + "22776": [], + "23006": [ + "https://faucet.antofy.io" ], - "969": [ - { - "name": "EthXY Network Explorer", - "url": "https://explorer.ethxy.com", - "standard": "EIP3091" - } + "23118": [ + "https://faucet.opside.network" ], - "970": [ - { - "name": "Oort Mainnet Explorer", - "url": "https://mainnet-scan.oortech.com", - "standard": "none", - "icon": "oort" - } + "23294": [], + "23295": [], + "23451": [], + "23452": [], + "23888": [], + "24484": [], + "24734": [], + "25186": [], + "25839": [ + "https://faucet.alveytestnet.com" ], - "972": [ - { - "name": "Oort Ascraeus Explorer", - "url": "https://ascraeus-scan.oortech.com", - "standard": "none", - "icon": "oort" - } + "25888": [], + "25925": [ + "https://faucet.bitkubchain.com" ], - "979": [ - { - "name": "EthXY Testnet Network Explorer", - "url": "https://explorer.testnet.ethxy.com", - "standard": "EIP3091" - } + "26026": [ + "https://testnet.faucet.ferrumnetwork.io" ], - "980": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } + "26600": [], + "26863": [ + "http://faucet.oasischain.io" ], - "985": [ - { - "name": "Memo Mainnet Explorer", - "url": "https://scan.metamemo.one:8080", - "icon": "memo", - "standard": "EIP3091" - } + "27181": [], + "27483": [], + "27827": [], + "28516": [], + "28518": [], + "28528": [], + "28882": [ + "https://www.l2faucet.com/boba" ], - "989": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } + "29112": [], + "29536": [ + "https://faucet.kaichain.net" ], - "990": [ - { - "name": "eLiberty Mainnet", - "url": "https://explorer.eliberty.ngo", - "standard": "EIP3091" - } + "29548": [], + "30067": [ + "https://piecenetwork.com/faucet" ], - "997": [ - { - "name": "5ireChain Explorer", - "url": "https://explorer.5ire.network", - "standard": "none", - "icon": "5ireChain" - } + "30088": [], + "30103": [], + "30730": [], + "30731": [], + "30732": [], + "31102": [], + "31223": [], + "31224": [ + "https://faucet.cloudtx.finance" ], - "998": [ - { - "name": "blockscout", - "url": "https://explorer.luckynetwork.org", - "standard": "none" - }, - { - "name": "expedition", - "url": "https://lnscan.org", - "standard": "none" - } + "31337": [], + "31414": [ + "https://faucet.evokescan.org" + ], + "31753": [], + "31754": [ + "https://xchainfaucet.net" ], - "1000": [ - { - "name": "GTON Network Explorer", - "url": "https://explorer.gton.network", - "standard": "EIP3091" - } + "32001": [], + "32382": [], + "32520": [], + "32659": [], + "32769": [], + "32990": [ + "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" ], - "1001": [ - { - "name": "Klaytnscope", - "url": "https://baobab.klaytnscope.com", - "standard": "EIP3091" - }, - { - "name": "Klaytnfinder", - "url": "https://baobab.klaytnfinder.io", - "standard": "EIP3091" - } + "33033": [], + "33101": [ + "https://dev-wallet.zilliqa.com/faucet?network=testnet" ], - "1003": [ - { - "name": "Tectum explorer", - "url": "https://explorer.tectum.io", - "icon": "Tettoken256", - "standard": "EIP3091" - } + "33103": [ + "https://faucet.zq2-prototestnet.zilliqa.com" ], - "1004": [ - { - "name": "test-ektascan", - "url": "https://test.ektascan.io", - "icon": "ekta", - "standard": "EIP3091" - } + "33133": [], + "33210": [], + "33333": [], + "33385": [ + "https://faucet.devnet.zilliqa.com/" ], - "1008": [ - { - "name": "eurusexplorer", - "url": "https://explorer.eurus.network", - "icon": "eurus", - "standard": "none" - } + "33469": [ + "https://faucet.zq2-devnet.zilliqa.com" ], - "1009": [ - { - "name": "Jumboscan", - "url": "https://jumboscan.jumbochain.org", - "standard": "EIP3091" - } + "33979": [], + "34443": [], + "35011": [], + "35441": [], + "35443": [], + "38400": [], + "38401": [ + "https://robin-faucet.rangersprotocol.com" ], - "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" - } + "39656": [], + "39797": [], + "39815": [], + "41500": [], + "42069": [], + "42072": [], + "42161": [], + "42170": [], + "42220": [], + "42261": [ + "https://faucet.testnet.oasis.io/" ], - "1028": [ - { - "name": "testbttcscan", - "url": "https://testscan.bittorrentchain.io", - "standard": "none" - } + "42262": [], + "42355": [], + "42766": [], + "42793": [], + "42801": [], + "42888": [], + "43110": [ + "http://athfaucet.ava.network//?address=${ADDRESS}" ], - "1030": [ - { - "name": "Conflux Scan", - "url": "https://evm.confluxscan.net", - "standard": "none" - } + "43111": [], + "43113": [ + "https://faucet.avax-test.network/" ], - "1031": [ - { - "name": "proxy network testnet", - "url": "http://testnet-explorer.theproxy.network", - "standard": "EIP3091" - } + "43114": [], + "43851": [], + "44444": [], + "44445": [], + "44787": [ + "https://celo.org/developers/faucet", + "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" ], - "1038": [ - { - "name": "Bronos Testnet Explorer", - "url": "https://tbroscan.bronos.org", - "standard": "none", - "icon": "bronos" - } + "45000": [], + "45454": [], + "45510": [ + "https://faucet.deelance.com" ], - "1039": [ - { - "name": "Bronos Explorer", - "url": "https://broscan.bronos.org", - "standard": "none", - "icon": "bronos" - } + "46688": [], + "47805": [], + "48795": [], + "48899": [], + "49049": [], + "49088": [], + "49321": [], + "49797": [], + "50001": [], + "50005": [], + "50006": [], + "50021": [], + "51178": [], + "51712": [ + "https://faucet.sardisnetwork.com" ], - "1073": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } + "52014": [], + "53277": [], + "53302": [ + "https://sepoliafaucet.com" ], - "1075": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.iotaledger.net", - "standard": "EIP3091" - } + "53457": [], + "53935": [], + "54211": [ + "https://testedge2.haqq.network" ], - "1079": [ - { - "name": "explorer", - "url": "https://subnets-test.avax.network/mintara", - "standard": "EIP3091" - } + "54321": [], + "54555": [ + "https://photonchain.io/airdrop" ], - "1080": [ - { - "name": "explorer", - "url": "https://subnets.avax.network/mintara", - "standard": "EIP3091" - } + "55004": [], + "55555": [ + "http://kururu.finance/faucet?chainId=55555" ], - "1088": [ - { - "name": "blockscout", - "url": "https://andromeda-explorer.metis.io", - "standard": "EIP3091" - } + "55556": [ + "http://kururu.finance/faucet?chainId=55556" ], - "1089": [ - { - "name": "explorer.guru", - "url": "https://humans.explorers.guru", - "icon": "humans", - "standard": "none" - } + "56026": [], + "56288": [], + "56400": [], + "56789": [ + "https://nova-faucet.velo.org" ], - "1099": [ - { - "name": "moac explorer", - "url": "https://explorer.moac.io", - "standard": "none" - } + "56797": [], + "57000": [ + "https://rollux.id/faucetapp" ], - "1100": [ - { - "name": "dym.fyi", - "url": "https://dym.fyi", - "standard": "EIP3091" - } + "57451": [], + "58008": [], + "59140": [ + "https://faucetlink.to/goerli" ], - "1101": [ - { - "name": "blockscout", - "url": "https://zkevm.polygonscan.com", - "icon": "zkevm", - "standard": "EIP3091" - } + "59141": [], + "59144": [], + "59971": [], + "60000": [ + "https://www.thinkiumdev.net/faucet" + ], + "60001": [ + "https://www.thinkiumdev.net/faucet" + ], + "60002": [ + "https://www.thinkiumdev.net/faucet" ], - "1107": [ - { - "name": "BLXq Explorer", - "url": "https://explorer.blx.org", - "icon": "blxq", - "standard": "none" - } + "60103": [ + "https://www.thinkiumdev.net/faucet" ], - "1108": [ - { - "name": "BLXq Explorer", - "url": "https://explorer.blxq.org", - "icon": "blxq", - "standard": "EIP3091" - } + "60808": [], + "61406": [], + "61800": [], + "61803": [ + "http://faucet.etica-stats.org/" ], - "1111": [ - { - "name": "WEMIX Block Explorer", - "url": "https://explorer.wemix.com", - "standard": "EIP3091" - } + "61916": [], + "62049": [], + "62050": [], + "62298": [ + "https://citrea.xyz/bridge" ], - "1112": [ - { - "name": "WEMIX Testnet Microscope", - "url": "https://microscope.test.wemix.com", - "standard": "EIP3091" - } + "62320": [ + "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", + "https://cauldron.pretoriaresearchlab.io/baklava-faucet" ], - "1113": [ - { - "name": "B2 Hub Habitat Testnet Explorer", - "url": "https://testnet-hub-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } + "62621": [], + "62831": [ + "https://faucet.avax.network/?subnet=plyr" ], - "1115": [ - { - "name": "Core Scan Testnet", - "url": "https://scan.test.btcs.network", - "icon": "core", - "standard": "EIP3091" - } + "63000": [], + "63001": [ + "https://faucet.tst.ecredits.com" ], - "1116": [ - { - "name": "Core Scan", - "url": "https://scan.coredao.org", - "icon": "core", - "standard": "EIP3091" - } + "65450": [], + "66988": [], + "67588": [], + "68770": [], + "69420": [ + "https://faucet.condrieu.ethdevops.io" ], - "1117": [ - { - "name": "Dogcoin", - "url": "https://explorer.dogcoin.network", - "standard": "EIP3091" - } + "70000": [], + "70001": [], + "70002": [], + "70103": [], + "70700": [], + "71111": [], + "71393": [ + "https://faucet.nervos.org/" ], - "1123": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } + "71401": [ + "https://testnet.bridge.godwoken.io" ], - "1133": [ - { - "name": "MetaScan", - "url": "https://meta.defiscan.live", - "standard": "EIP3091" - } + "71402": [], + "72778": [], + "72992": [], + "73114": [], + "73115": [], + "73799": [ + "https://voltafaucet.energyweb.org" ], - "1135": [ - { - "name": "blockscout", - "url": "https://blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } + "73927": [], + "75000": [], + "75512": [], + "75513": [], + "77001": [], + "77238": [ + "https://faucet.foundryscan.org" ], - "1138": [ - { - "name": "amstarscan-testnet", - "url": "https://testnet.amstarscan.com", - "standard": "EIP3091" - } + "77612": [ + "https://faucet.vention.network" ], - "1147": [ - { - "name": "Flag Testnet Explorer", - "url": "https://testnet-explorer.flagscan.xyz", - "standard": "EIP3091" - } + "77777": [], + "78110": [], + "78281": [], + "78430": [], + "78431": [], + "78432": [], + "78600": [ + "https://faucet.vanarchain.com" ], - "1149": [ - { - "name": "Plexchain Explorer", - "url": "https://explorer.plexfinance.us", - "icon": "plexchain", - "standard": "EIP3091" - } + "79879": [ + "https://faucet.goldsmartchain.com" ], - "1170": [ - { - "name": "Origin Explorer", - "url": "https://evm-explorer.origin.uptick.network", - "icon": "origin", - "standard": "none" - } + "80001": [ + "https://faucet.polygon.technology/" ], - "1177": [ - { - "name": "Smart Host Teknoloji TESTNET Explorer", - "url": "https://s2.tl.web.tr:4000", - "icon": "smarthost", - "standard": "EIP3091" - } + "80002": [ + "https://faucet.polygon.technology/" ], - "1188": [ - { - "name": "mosscan", - "url": "https://www.mosscan.com", - "icon": "clubmos", - "standard": "none" - } + "80084": [ + "https://bartio.faucet.berachain.com" ], - "1197": [ - { - "name": "ioraexplorer", - "url": "https://explorer.iorachain.com", - "standard": "EIP3091" - } + "80085": [ + "https://artio.faucet.berachain.com" ], - "1200": [ - { - "name": "Cuckoo Chain Explorer", - "url": "https://mainnet-scan.cuckoo.network", - "standard": "EIP3091" - } + "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" ], - "1202": [ - { - "name": "WTTScout", - "url": "https://explorer.cadaut.com", - "standard": "EIP3091" - } + "84532": [], + "84886": [], + "85449": [], + "88002": [ + "https://proteusfaucet.nautchain.xyz" ], - "1209": [ - { - "name": "Saitascan explorer", - "url": "https://saitascan.io", - "standard": "none", - "icon": "SaitaBlockChain(SBC)" - } + "88559": [], + "88817": [], + "88819": [], + "88882": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" ], - "1210": [ - { - "name": "Cuckoo Sepolia Explorer", - "url": "https://testnet-scan.cuckoo.network", - "standard": "EIP3091" - } + "88888": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" ], - "1213": [ - { - "name": "popcateum explorer", - "url": "https://explorer.popcateum.org", - "standard": "none" - } + "90001": [], + "90210": [ + "https://faucet.beverlyhills.ethdevops.io" ], - "1214": [ - { - "name": "Enter Explorer - Expenter", - "url": "https://explorer.entercoin.net", - "icon": "enter", - "standard": "EIP3091" - } + "90354": [ + "https://www.campnetwork.xyz/faucet" ], - "1225": [ - { - "name": "Hybrid Testnet", - "url": "https://explorer.buildonhybrid.com", - "standard": "EIP3091" - } + "91002": [ + "https://faucet.eclipse.builders" ], - "1229": [ - { - "name": "blockscout", - "url": "https://exzoscan.io", - "standard": "EIP3091" - } + "91120": [], + "91715": [], + "92001": [ + "https://faucet.lambda.top" ], - "1230": [ - { - "name": "Ultron Testnet Explorer", - "url": "https://explorer.ultron-dev.io", - "icon": "ultron", - "standard": "none" - } + "93572": [ + "https://claim.liquidlayer.network" ], - "1231": [ - { - "name": "Ultron Explorer", - "url": "https://ulxscan.com", - "icon": "ultron", - "standard": "none" - } + "96970": [ + "https://mantis.switch.ch/faucet", + "https://mantis.kore-technologies.ch/faucet", + "https://mantis.phoenix-systems.io/faucet", + "https://mantis.block-spirit.ch/faucet" ], - "1234": [ - { - "name": "StepScan", - "url": "https://stepscan.io", - "icon": "step", - "standard": "EIP3091" - } + "97531": [], + "97970": [ + "https://faucet.optimusz7.com" ], - "1235": [ - { - "name": "ITX Mainnet Explorer (Blockscout)", - "url": "https://explorer.itxchain.com", - "standard": "EIP3091" - } + "98881": [], + "99099": [ + "https://faucet.eliberty.ngo" ], - "1243": [ - { - "name": "archiescan", - "url": "https://app.archiescan.io", - "standard": "none" - } + "99998": [], + "99999": [], + "100000": [], + "100001": [], + "100002": [], + "100003": [], + "100004": [], + "100005": [], + "100006": [], + "100007": [], + "100008": [], + "100009": [], + "100010": [ + "https://faucet.vecha.in" ], - "1244": [ - { - "name": "archiescan", - "url": "https://testnet.archiescan.io", - "standard": "none" - } + "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" ], - "1246": [ - { - "name": "OMSCAN - Expenter", - "url": "https://omscan.omplatform.com", - "standard": "none" - } + "131313": [ + "https://faucet.dioneprotocol.com/" ], - "1248": [ - { - "name": "DogetherExplorer", - "url": "https://explorer.dogether.dog", - "standard": "EIP3091" - } + "131419": [], + "132902": [ + "https://info.form.network/faucet" ], - "1252": [ - { - "name": "CICscan", - "url": "https://testnet.cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } + "141319": [], + "142857": [], + "161212": [], + "165279": [], + "167000": [], + "167008": [], + "167009": [], + "188710": [], + "188881": [ + "https://faucet.condor.systems" ], - "1280": [ - { - "name": "HALOexplorer", - "url": "https://browser.halo.land", - "standard": "none" - } + "192940": [], + "200000": [], + "200101": [], + "200202": [], + "200625": [], + "200810": [ + "https://www.bitlayer.org/faucet" ], - "1284": [ - { - "name": "moonscan", - "url": "https://moonbeam.moonscan.io", - "standard": "none" - } + "200901": [], + "201018": [], + "201030": [ + "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" ], - "1285": [ - { - "name": "moonscan", - "url": "https://moonriver.moonscan.io", - "standard": "none" - } + "201804": [], + "202020": [], + "202212": [], + "202401": [], + "202624": [], + "204005": [], + "205205": [ + "https://auroria.faucet.stratisevm.com" ], - "1287": [ - { - "name": "moonscan", - "url": "https://moonbase.moonscan.io", - "standard": "none" - } + "210049": [], + "210425": [], + "220315": [], + "221230": [], + "221231": [ + "http://faucet.reapchain.com" ], - "1291": [ - { - "name": "Swisstronik Scout", - "url": "https://explorer-evm.testnet.swisstronik.com", - "standard": "none" - } + "222222": [], + "222555": [], + "222666": [ + "https://faucet.deeplnetwork.org" ], - "1311": [ - { - "name": "dos-testnet", - "url": "https://test.doscan.io", - "standard": "EIP3091" - } + "224168": [], + "224422": [], + "224433": [], + "230315": [ + "https://testnet.hashkeychain/faucet" ], - "1314": [ - { - "name": "alyxscan", - "url": "https://www.alyxscan.com", - "standard": "EIP3091" - } + "234666": [], + "240515": [], + "246529": [], + "246785": [], + "247253": [], + "256256": [], + "262371": [ + "https://faucet.eclatscan.com" ], - "1319": [ - { - "name": "AIA Chain Explorer Mainnet", - "url": "https://aiascan.com", - "standard": "EIP3091" - } + "266256": [], + "271271": [ + "https://faucet.egonscan.com" + ], + "281121": [], + "282828": [], + "309075": [], + "313313": [], + "314159": [ + "https://faucet.calibration.fildev.network/" + ], + "322202": [], + "323213": [ + "https://faucet.bloomgenesis.com" ], - "1320": [ - { - "name": "AIA Chain Explorer Testnet", - "url": "https://testnet.aiascan.com", - "standard": "EIP3091" - } + "330844": [ + "https://faucet.tscscan.com" ], - "1328": [ - { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } + "333313": [], + "333331": [], + "333333": [], + "333666": [ + "https://apps-test.adigium.com/faucet" ], - "1329": [ - { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } + "333777": [ + "https://apps-test.adigium.com/faucet" ], - "1338": [ - { - "name": "Elysium testnet explorer", - "url": "https://elysium-explorer.vulcanforged.com", - "standard": "none" - } + "333888": [ + "https://faucet.polis.tech" ], - "1339": [ - { - "name": "Elysium mainnet explorer", - "url": "https://explorer.elysiumchain.tech", - "standard": "none" - } + "333999": [ + "https://faucet.polis.tech" ], - "1343": [ - { - "name": "BLITZ Explorer", - "url": "https://subnets-test.avax.network/blitz", - "standard": "EIP3091" - } + "336655": [ + "https://faucet-testnet.uniport.network" ], - "1353": [ - { - "name": "CICscan", - "url": "https://cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } + "336666": [], + "355110": [], + "355113": [ + "https://bitfinity.network/faucet" ], - "1369": [ - { - "name": "zafirium-explorer", - "url": "https://explorer.zakumi.io", - "standard": "none" - } + "360890": [], + "363636": [], + "373737": [], + "381931": [], + "381932": [], + "404040": [ + "https://faucet.tipboxcoin.net" ], - "1370": [ - { - "name": "ramascan", - "url": "https://ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } + "413413": [], + "420420": [], + "420666": [], + "420692": [], + "421611": [ + "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" ], - "1377": [ - { - "name": "Pingaksha", - "url": "https://pingaksha.ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } + "421613": [], + "421614": [], + "424242": [], + "431140": [], + "432201": [ + "https://faucet.avax.network/?subnet=dexalot" ], - "1379": [ - { - "name": "kalarscan", - "url": "https://explorer.kalarchain.tech", - "icon": "kalarscan", - "standard": "EIP3091" - } + "432204": [], + "444444": [], + "444900": [ + "https://faucet.weelink.gw002.oneitfarm.com" ], - "1388": [ - { - "name": "amstarscan", - "url": "https://mainnet.amstarscan.com", - "standard": "EIP3091" - } + "471100": [], + "473861": [], + "474142": [], + "490000": [], + "504441": [], + "512512": [ + "https://dev.caduceus.foundation/testNetwork" ], - "1392": [ - { - "name": "BlockExplorer", - "url": "https://www.blockexplorer.com", - "standard": "EIP3091" - } + "513100": [], + "526916": [], + "534351": [], + "534352": [], + "534849": [ + "https://faucet.shinarium.org" ], - "1433": [ - { - "name": "Rikeza Blockchain explorer", - "url": "https://rikscan.com", - "standard": "EIP3091" - } + "535037": [], + "552981": [ + "https://faucet.oneworldchain.org" ], - "1442": [ - { - "name": "Polygon zkEVM explorer", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } + "555555": [ + "https://bridge-testnet.pentagon.games" ], - "1452": [ - { - "name": "GIL Explorer", - "url": "https://explorer.giltestnet.com", - "standard": "EIP3091" - } + "555666": [], + "622277": [], + "622463": [], + "641230": [], + "651940": [], + "656476": [], + "660279": [], + "666666": [ + "https://vpioneerfaucet.visionscan.org" ], - "1453": [ - { - "name": "MetaExplorer", - "url": "https://istanbul-explorer.metachain.dev", - "standard": "EIP3091" - } + "666888": [ + "https://testnet-faucet.helachain.com" ], - "1455": [ - { - "name": "Ctex Scan Explorer", - "url": "https://ctexscan.com", - "standard": "none" - } + "686868": [ + "https://faucet.wondollars.org" ], - "1490": [ - { - "name": "Vitruveo Explorer", - "url": "https://explorer.vitruveo.xyz", - "icon": "vitruveo", - "standard": "EIP3091" - } + "696969": [ + "https://docs.galadriel.com/faucet" ], - "1499": [ - { - "name": "IGC-Scan", - "url": "https://igcscan.com", - "standard": "EIP3091" - } + "710420": [], + "713715": [ + "https://sei-faucet.nima.enterprises", + "https://sei-evm.faucetme.pro" ], - "1501": [ - { - "name": "bevm canary scan", - "url": "https://scan-canary.bevm.io", - "standard": "none" - } + "721529": [], + "743111": [], + "751230": [ + "https://faucet.bearnetwork.net" ], - "1506": [ - { - "name": "Sherpax Mainnet Explorer", - "url": "https://evm.sherpax.io", - "standard": "none" - } + "761412": [], + "764984": [], + "767368": [], + "776877": [], + "800001": [], + "808080": [], + "810180": [], + "810181": [], + "810182": [], + "820522": [], + "827431": [], + "839320": [ + "https://faucet.prmscan.org" ], - "1507": [ - { - "name": "Sherpax Testnet Explorer", - "url": "https://evm-pre.sherpax.io", - "standard": "none" - } + "846000": [], + "855456": [], + "879151": [], + "888882": [], + "888888": [], + "900000": [], + "910000": [ + "https://faucet.posichain.org/" ], - "1515": [ - { - "name": "Beagle Messaging Chain Explorer", - "url": "https://eth.beagle.chat", - "standard": "EIP3091" - } + "912559": [ + "https://faucet.evm.dusk-3.devnet.astria.org/" ], - "1559": [ - { - "name": "TenetScan Mainnet", - "url": "https://tenetscan.io", - "icon": "tenet", - "standard": "EIP3091" - } + "920000": [ + "https://faucet.posichain.org/" ], - "1617": [ - { - "name": "Ethereum Inscription Explorer", - "url": "https://explorer.etins.org", - "standard": "none" - } + "920001": [ + "https://faucet.posichain.org/" ], - "1625": [ - { - "name": "Gravity Alpha Mainnet Explorer", - "url": "https://explorer.gravity.xyz", - "standard": "EIP3091" - } + "923018": [ + "https://faucet-testnet.fncy.world" ], - "1662": [ - { - "name": "Liquichain Mainnet", - "url": "https://mainnet.liquichain.io", - "standard": "EIP3091" - } + "955081": [], + "955305": [], + "978657": [ + "https://portal.treasure.lol/faucet" ], - "1663": [ - { - "name": "Gobi Testnet Block Explorer", - "url": "https://gobi-explorer.horizen.io", - "icon": "eon", - "standard": "EIP3091" - } + "984122": [], + "984123": [], + "988207": [], + "998899": [ + "https://faucet.chaingames.io" ], - "1686": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.mintchain.io", - "icon": "mintTestnet", - "standard": "EIP3091" - } + "999999": [], + "1100789": [], + "1127469": [], + "1261120": [], + "1313114": [], + "1313500": [], + "1337702": [ + "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", + "https://faucet.kintsugi.themerge.dev" ], - "1687": [ - { - "name": "blockscout", - "url": "https://sepolia-testnet-explorer.mintchain.io", - "icon": "mintTestnet", - "standard": "EIP3091" - } + "1337802": [ + "https://faucet.kiln.themerge.dev", + "https://kiln-faucet.pk910.de", + "https://kilnfaucet.com" ], - "1701": [ - { - "name": "Anytype Explorer", - "url": "https://explorer.anytype.io", - "icon": "any", - "standard": "EIP3091" - } + "1337803": [ + "https://faucet.zhejiang.ethpandaops.io", + "https://zhejiang-faucet.pk910.de" ], - "1707": [ - { - "name": "blockscout", - "url": "https://exp.blockchain.or.th", - "standard": "EIP3091" - } + "1398243": [], + "1612127": [], + "1637450": [], + "1731313": [], + "2021398": [], + "2099156": [], + "2206132": [ + "https://devnet2faucet.platon.network/faucet" ], - "1708": [ - { - "name": "blockscout", - "url": "https://exp.testnet.blockchain.or.th", - "standard": "EIP3091" - } + "2611555": [], + "3132023": [], + "3141592": [ + "https://faucet.butterfly.fildev.network" ], - "1717": [ - { - "name": "Doric Explorer", - "url": "https://explorer.doric.network", - "standard": "EIP3091" - } + "3397901": [], + "3441005": [], + "3441006": [], + "4000003": [], + "4281033": [], + "5112023": [], + "5167003": [], + "5167004": [], + "5201420": [], + "5318008": [ + "https://dev.reactive.network/docs/kopli-testnet#faucet" ], - "1718": [ - { - "name": "Palettescan", - "url": "https://palettescan.com", - "icon": "PLT", - "standard": "none" - } + "5555555": [], + "5555558": [], + "6038361": [], + "6666665": [], + "6666666": [], + "7225878": [], + "7355310": [], + "7668378": [ + "https://faucet.qom.one" ], - "1729": [ - { - "name": "Reya Network Explorer", - "url": "https://explorer.reya.network", - "standard": "EIP3091" - } + "7762959": [], + "7777777": [], + "8007736": [], + "8008135": [ + "https://get-helium.fhenix.zone" ], - "1740": [ - { - "name": "blockscout", - "url": "https://testnet.explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } + "8080808": [], + "8601152": [ + "https://faucet.testnet8.waterfall.network" ], - "1750": [ - { - "name": "blockscout", - "url": "https://explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } + "8794598": [], + "8888881": [], + "8888888": [], + "9322252": [], + "9322253": [], + "10067275": [], + "10101010": [ + "https://faucet.soverun.com" ], - "1773": [ - { - "name": "PartyExplorer", - "url": "https://partyexplorer.co", - "icon": "grams", - "standard": "EIP3091" - } + "10241025": [], + "11155111": [ + "http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}" ], - "1777": [ - { - "name": "Gauss Explorer", - "url": "https://explorer.gaussgang.com", - "standard": "EIP3091" - } + "11155420": [ + "https://app.optimism.io/faucet" ], - "1789": [ - { - "name": "ZKbase Block Explorer", - "url": "https://sepolia-explorer.zkbase.app", - "icon": "zkbase", - "standard": "EIP3091" - } + "13068200": [ + "https://faucet.coti.io" ], - "1804": [ - { - "name": "Lite Explorer", - "url": "https://ethereum-pocr.github.io/explorer/kerleano", - "icon": "pocr", - "standard": "EIP3091" - } + "13371337": [], + "14288640": [], + "16658437": [], + "17000920": [], + "18289463": [], + "20180427": [], + "20180430": [], + "20181205": [], + "20201022": [], + "20240324": [], + "20241133": [], + "20482050": [], + "22052002": [], + "27082017": [ + "https://faucet.exlscan.com" ], - "1807": [ - { - "name": "blockscout", - "url": "https://rabbit.analogscan.com", - "standard": "none" - } + "27082022": [], + "28122024": [], + "28945486": [], + "29032022": [], + "31415926": [], + "35855456": [], + "37084624": [ + "https://www.sfuelstation.com/" ], - "1818": [ - { - "name": "cube-scan", - "url": "https://cubescan.network", - "standard": "EIP3091" - } + "39916801": [], + "43214913": [], + "61717561": [ + "https://aquacha.in/faucet" + ], + "65010002": [ + "https://faucet.autonity.org/" + ], + "65100002": [], + "68840142": [ + "https://faucet.triangleplatform.com/frame/testnet" ], - "1819": [ - { - "name": "cubetest-scan", - "url": "https://testnet.cubescan.network", - "standard": "EIP3091" - } + "77787778": [], + "88888888": [], + "94204209": [], + "99415706": [ + "https://faucet.joys.digital/" ], - "1821": [ - { - "name": "RUBY Smart Chain MAINNET Explorer", - "icon": "ruby", - "url": "https://rubyscan.net", - "standard": "none" - } + "108160679": [], + "111557560": [], + "123420111": [], + "161221135": [], + "168587773": [ + "https://faucet.quicknode.com/blast/sepolia" ], - "1875": [ - { - "name": "whitechain-explorer", - "url": "https://explorer.whitechain.io", - "standard": "EIP3091" - } + "192837465": [], + "222000222": [], + "245022926": [ + "https://neonfaucet.org" ], - "1881": [ - { - "name": "blockscout", - "url": "https://scan.cartenz.works", - "standard": "EIP3091" - } + "245022934": [], + "278611351": [ + "https://faucet.razorscan.io/" ], - "1890": [ - { - "name": "phoenix", - "url": "https://phoenix.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } + "311752642": [], + "328527624": [], + "333000333": [], + "356256156": [], + "486217935": [], + "666666666": [], + "888888888": [], + "889910245": [ + "https://faucet.ptcscan.io/" ], - "1891": [ - { - "name": "pegasus", - "url": "https://pegasus.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } + "889910246": [], + "974399131": [ + "https://www.sfuelstation.com/" ], - "1898": [ - { - "name": "explorer", - "url": "https://explorer.boyanet.org:4001", - "standard": "EIP3091" - } + "999999999": [], + "1020352220": [ + "https://www.sfuelstation.com/" ], - "1904": [ - { - "name": "blockscout", - "url": "https://explorer.sportschainnetwork.xyz", - "standard": "EIP3091" - } + "1122334455": [], + "1146703430": [], + "1273227453": [ + "https://dashboard.humanprotocol.org/faucet" ], - "1907": [ - { - "name": "Bitci Explorer", - "url": "https://bitciexplorer.com", - "standard": "EIP3091" - } + "1313161554": [], + "1313161555": [], + "1313161556": [], + "1313161560": [], + "1350216234": [ + "https://sfuel.skale.network/" ], - "1908": [ - { - "name": "Bitci Explorer Testnet", - "url": "https://testnet.bitciexplorer.com", - "standard": "EIP3091" - } + "1351057110": [ + "https://sfuel.skale.network/staging/chaos" ], - "1909": [ - { - "name": "blockscout", - "url": "https://merklescan.com", - "standard": "none" - } + "1380012617": [], + "1380996178": [], + "1444673419": [ + "https://www.sfuelstation.com/" ], - "1911": [ - { - "name": "scalind", - "url": "https://explorer.scalind.com", - "standard": "EIP3091" - } + "1482601649": [ + "https://sfuel.skale.network/" ], - "1912": [ - { - "name": "RUBY Smart Chain Testnet Explorer", - "icon": "ruby", - "url": "https://testnet.rubyscan.net", - "standard": "none" - } + "1564830818": [ + "https://sfuel.dirtroad.dev" ], - "1945": [ - { - "name": "Onus explorer testnet", - "url": "https://explorer-testnet.onuschain.io", - "icon": "onus", - "standard": "EIP3091" - } + "1666600000": [], + "1666600001": [], + "1666700000": [ + "https://faucet.pops.one" ], - "1954": [ - { - "name": "dos-mainnet", - "url": "https://exp.dexilla.com", - "standard": "EIP3091" - } + "1666700001": [ + "https://faucet.pops.one" ], - "1956": [ - { - "name": "aiw3 testnet scan", - "url": "https://scan-testnet.aiw3.io", - "standard": "none" - } + "1666900000": [], + "1666900001": [], + "1802203764": [], + "1918988905": [], + "2021121117": [], + "2046399126": [ + "https://ruby.exchange/faucet.html", + "https://sfuel.mylilius.com/" ], - "1961": [ - { - "name": "Selendra Scan", - "url": "https://scan.selendra.org", - "standard": "none" - } + "3125659152": [], + "4216137055": [ + "https://frankenstein-faucet.oneledger.network" ], - "1967": [ + "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": "metaexplorer-eleanor", - "url": "https://explorer.metatime.com/eleanor", + "name": "etherscan", + "url": "https://etherscan.io", "standard": "EIP3091" - } - ], - "1969": [ + }, { "name": "blockscout", - "url": "https://testnetscan.scschain.com", + "url": "https://eth.blockscout.com", + "icon": "blockscout", "standard": "EIP3091" - } - ], - "1970": [ + }, { - "name": "blockscout", - "url": "https://scan.scschain.com", + "name": "dexguru", + "url": "https://ethereum.dex.guru", + "icon": "dexguru", "standard": "EIP3091" } ], - "1972": [ + "3": [ { - "name": "RedeCoin Explorer", - "url": "https://explorer3.redecoin.eu", - "standard": "none" + "name": "etherscan", + "url": "https://ropsten.etherscan.io", + "standard": "EIP3091" } ], - "1975": [ + "4": [ { - "name": "Onus explorer mainnet", - "url": "https://explorer.onuschain.io", - "icon": "onus", + "name": "etherscan-rinkeby", + "url": "https://rinkeby.etherscan.io", "standard": "EIP3091" } ], - "1984": [ + "5": [ { - "name": "testnetexplorer", - "url": "https://testnetexplorer.eurus.network", - "icon": "eurus", - "standard": "none" - } - ], - "1985": [ + "name": "etherscan-goerli", + "url": "https://goerli.etherscan.io", + "standard": "EIP3091" + }, { - "name": "mainnetexplorer", - "url": "http://explore.satosh.ie", - "icon": "satoshie", - "standard": "none" + "name": "blockscout-goerli", + "url": "https://eth-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" } ], - "1986": [ + "7": [ { - "name": "testnetexplorer", - "url": "http://explore-testnet.satosh.ie", - "icon": "satoshie", - "standard": "none" + "name": "Thaichain Explorer", + "url": "https://exp.thaichain.org", + "standard": "EIP3091" } ], - "1992": [ + "8": [ { - "name": "routescan", - "url": "https://explorer.hubble.exchange", + "name": "ubiqscan", + "url": "https://ubiqscan.io", "standard": "EIP3091" } ], - "1994": [ + "10": [ { - "name": "ektascan", - "url": "https://ektascan.io", - "icon": "ekta", + "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" } ], - "1995": [ + "14": [ { - "name": "edexa-testnet", - "url": "https://explorer.testnet.edexa.network", + "name": "blockscout", + "url": "https://flare-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://mainnet.flarescan.com", "standard": "EIP3091" } ], - "1996": [ + "16": [ { - "name": "Sanko Explorer", - "url": "https://explorer.sanko.xyz", + "name": "blockscout", + "url": "https://coston-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://coston.testnet.flarescan.com", "standard": "EIP3091" } ], - "1997": [ + "18": [ { - "name": "Kyotoscan", - "url": "https://kyotoscan.io", + "name": "thundercore-blockscout-testnet", + "url": "https://explorer-testnet.thundercore.com", "standard": "EIP3091" } ], - "1998": [ + "19": [ { - "name": "Kyotoscan", - "url": "https://testnet.kyotoscan.io", + "name": "blockscout", + "url": "https://songbird-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://songbird.flarescan.com", "standard": "EIP3091" } ], - "2000": [ + "20": [ { - "name": "dogechain explorer", - "url": "https://explorer.dogechain.dog", + "name": "elastos esc explorer", + "url": "https://esc.elastos.io", "standard": "EIP3091" } ], - "2001": [ + "21": [ { - "name": "Blockscout", - "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", - "standard": "none" + "name": "elastos esc explorer", + "url": "https://esc-testnet.elastos.io", + "standard": "EIP3091" } ], - "2002": [ + "25": [ { - "name": "Blockscout", - "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + "name": "Cronos Explorer", + "url": "https://explorer.cronos.org", "standard": "none" } ], - "2004": [ + "26": [ { - "name": "MetaScan", - "url": "http://twoto3.com:3000", + "name": "Genesis L1 testnet explorer", + "url": "https://testnet.genesisl1.org", "standard": "none" } ], - "2008": [ + "27": [ { - "name": "CloudWalk Testnet Explorer", - "url": "https://explorer.testnet.cloudwalk.io", + "name": "Shiba Explorer", + "url": "https://exp.shibchain.org", "standard": "none" } ], - "2009": [ + "29": [ { - "name": "CloudWalk Mainnet Explorer", - "url": "https://explorer.mainnet.cloudwalk.io", + "name": "Genesis L1 blockchain explorer", + "url": "https://explorer.genesisl1.org", "standard": "none" } ], - "2014": [ + "30": [ { - "name": "nowscan", - "url": "https://nowscan.io", + "name": "Rootstock Explorer", + "url": "https://explorer.rsk.co", "standard": "EIP3091" - } - ], - "2016": [ + }, { - "name": "MainnetZ", - "url": "https://explorer.mainnetz.io", + "name": "blockscout", + "url": "https://rootstock.blockscout.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "2017": [ + "31": [ { - "name": "telscan", - "url": "https://telscan.io", - "icon": "telcoin", + "name": "RSK Testnet Explorer", + "url": "https://explorer.testnet.rsk.co", "standard": "EIP3091" } ], - "2018": [ + "34": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.dev.publicmint.io", + "name": "SecureChain Mainnet", + "url": "https://explorer.securechain.ai", "standard": "EIP3091" } ], - "2019": [ + "36": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.tst.publicmint.io", + "name": "dxscan", + "url": "https://dxscan.io", "standard": "EIP3091" } ], - "2020": [ + "37": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.publicmint.io", + "name": "XPLA Explorer", + "url": "https://explorer.xpla.io/mainnet", "standard": "EIP3091" } ], - "2021": [ + "39": [ { - "name": "Edgscan EdgeEVM explorer by Bharathcoorg", - "url": "https://edgscan.live", + "icon": "u2u", + "name": "U2U Explorer", + "url": "https://u2uscan.xyz", "standard": "EIP3091" - }, - { - "name": "Edgscan EdgeWASM explorer by Bharathcoorg", - "url": "https://edgscan.ink", - "standard": "none", - "icon": "edgscan" } ], - "2022": [ + "40": [ { - "name": "Edgscan by Bharathcoorg", - "url": "https://testnet.edgscan.live", + "name": "teloscan", + "url": "https://teloscan.io", "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": [ + "41": [ { - "name": "Edgeless Explorer", - "url": "https://explorer.edgeless.network", + "name": "teloscan", + "url": "https://testnet.teloscan.io", "standard": "EIP3091" } ], - "2031": [ - { - "name": "subscan", - "url": "https://centrifuge.subscan.io", - "standard": "EIP3091", - "icon": "subscan" - } - ], - "2037": [ + "42": [ { - "name": "KIWI Explorer", - "url": "https://subnets-test.avax.network/kiwi", + "name": "Blockscout", + "url": "https://explorer.execution.mainnet.lukso.network", "standard": "EIP3091" } ], - "2038": [ + "43": [ { - "name": "SHRAPNEL Explorer", - "url": "https://subnets-test.avax.network/shrapnel", + "name": "subscan", + "url": "https://pangolin.subscan.io", "standard": "EIP3091" } ], - "2039": [ - { - "name": "Aleph Zero Testnet", - "url": "https://test.azero.dev/#/explorer", - "icon": "aleph", - "standard": "none" - } - ], - "2040": [ + "44": [ { - "name": "Vanar Explorer", - "url": "https://explorer.vanarchain.com", - "icon": "vanar", + "name": "blockscout", + "url": "https://crab-scan.darwinia.network", "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": [ + "45": [ { - "name": "movoscan", - "url": "https://movoscan.com", - "icon": "movoscan", + "name": "subscan", + "url": "https://pangoro.subscan.io", "standard": "none" } ], - "2077": [ + "46": [ { - "name": "blockscout", - "url": "https://explorer.qkacoin.org", + "name": "subscan", + "url": "https://darwinia.subscan.io", "standard": "EIP3091" } ], - "2100": [ + "47": [ { - "name": "Ecoball Explorer", - "url": "https://scan.ecoball.org", + "name": "Acria IntelliChain-Explorer", + "url": "https://explorer.acria.ai", "standard": "EIP3091" } ], - "2101": [ + "48": [ { - "name": "Ecoball Testnet Explorer", - "url": "https://espuma-scan.ecoball.org", + "name": "etmpscan", + "url": "https://etmscan.network", + "icon": "etmp", "standard": "EIP3091" } ], - "2109": [ + "49": [ { - "name": "blockscout", - "url": "https://explorer.exosama.com", - "icon": "blockscout", + "name": "etmp", + "url": "https://pioneer.etmscan.network", "standard": "EIP3091" } ], - "2112": [ + "50": [ { - "name": "uchain.info", - "url": "https://uchain.info", + "name": "xdcscan", + "url": "https://xdcscan.io", + "icon": "blocksscan", + "standard": "EIP3091" + }, + { + "name": "blocksscan", + "url": "https://xdc.blocksscan.io", + "icon": "blocksscan", "standard": "EIP3091" } ], - "2121": [ + "51": [ { - "name": "catenascan", - "url": "https://catenascan.com", + "name": "xdcscan", + "url": "https://apothem.xinfinscan.com", + "icon": "blocksscan", + "standard": "EIP3091" + }, + { + "name": "blocksscan", + "url": "https://apothem.blocksscan.io", + "icon": "blocksscan", "standard": "EIP3091" } ], - "2122": [ + "52": [ { - "name": "Metad Scan", - "url": "https://scan.metaplayer.one", - "icon": "metad", - "standard": "EIP3091" + "name": "coinexscan", + "url": "https://www.coinex.net", + "standard": "none" } ], - "2124": [ + "53": [ { - "name": "MP1Scan", - "url": "https://dubai.mp1scan.io", - "standard": "EIP3091" + "name": "coinexscan", + "url": "https://testnet.coinex.net", + "standard": "none" } ], - "2136": [ + "54": [ { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer", + "name": "Belly Scan", + "url": "https://bellyscan.com", "standard": "none" } ], - "2138": [ + "55": [ { - "name": "Quorum Explorer", - "url": "https://public-2138.defi-oracle.io", + "name": "zyxscan", + "url": "https://zyxscan.com", "standard": "none" } ], - "2140": [ + "56": [ { - "name": "oneness-mainnet", - "url": "https://scan.onenesslabs.io", + "name": "bscscan", + "url": "https://bscscan.com", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://bnb.dex.guru", + "icon": "dexguru", "standard": "EIP3091" } ], - "2141": [ + "57": [ { - "name": "oneness-testnet", - "url": "https://scan.testnet.onenesslabs.io", + "name": "Syscoin Block Explorer", + "url": "https://explorer.syscoin.org", "standard": "EIP3091" } ], - "2151": [ + "58": [ { - "name": "BOASCAN", - "url": "https://boascan.io", - "icon": "agora", + "name": "explorer", + "url": "https://explorer.ont.io", "standard": "EIP3091" } ], - "2152": [ + "60": [ { - "name": "findorascan", - "url": "https://evm.findorascan.io", + "name": "GoChain Explorer", + "url": "https://explorer.gochain.io", "standard": "EIP3091" } ], - "2153": [ + "61": [ { - "name": "findorascan", - "url": "https://testnet-anvil.evm.findorascan.io", + "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" } ], - "2154": [ + "63": [ { - "name": "findorascan", - "url": "https://testnet-forge.evm.findorascan.io", + "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" } ], - "2199": [ + "65": [ { - "name": "blockscout", - "url": "https://explorer.moonsama.com", - "icon": "blockscout", + "name": "OKLink", + "url": "https://www.oklink.com/okexchain-test", "standard": "EIP3091" } ], - "2202": [ + "66": [ { - "name": "Antofy Mainnet", - "url": "https://antofyscan.com", + "name": "OKLink", + "url": "https://www.oklink.com/en/okc", "standard": "EIP3091" } ], - "2203": [ + "69": [ { - "name": "Explorer", - "url": "https://explorer.bitcoinevm.com", - "icon": "ebtc", - "standard": "none" + "name": "etherscan", + "url": "https://kovan-optimistic.etherscan.io", + "standard": "EIP3091" } ], - "2213": [ + "70": [ { - "name": "Evanesco Explorer", - "url": "https://explorer.evanesco.org", - "standard": "none" + "name": "hooscan", + "url": "https://www.hooscan.com", + "standard": "EIP3091" } ], - "2221": [ + "71": [ { - "name": "Kava Testnet Explorer", - "url": "http://testnet.kavascan.com", - "standard": "EIP3091", - "icon": "kava" + "name": "Conflux Scan", + "url": "https://evmtestnet.confluxscan.net", + "standard": "none" } ], - "2222": [ + "73": [ { - "name": "Kava EVM Explorer", - "url": "https://kavascan.com", - "standard": "EIP3091", - "icon": "kava" + "name": "fncy scan", + "url": "https://fncyscan.fncy.world", + "icon": "fncy", + "standard": "EIP3091" } ], - "2223": [ + "74": [ { - "name": "VChain Scan", - "url": "https://scan.vcex.xyz", + "name": "explorer", + "url": "https://explorer.idchain.one", "standard": "EIP3091" } ], - "2241": [ + "75": [ { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", - "standard": "none" - }, + "name": "DSC Explorer Mainnet", + "url": "https://explorer.decimalchain.com", + "icon": "dsc", + "standard": "EIP3091" + } + ], + "77": [ { - "name": "Subscan", - "url": "https://krest.subscan.io", - "standard": "none" + "name": "blockscout", + "url": "https://blockscout.com/poa/sokol", + "icon": "blockscout", + "standard": "EIP3091" } ], - "2300": [ + "79": [ { - "name": "bombscan", - "icon": "bomb", - "url": "https://bombscan.com", + "name": "zenith scan", + "url": "https://scan.zenithchain.co", "standard": "EIP3091" } ], - "2323": [ + "80": [ { - "name": "SOMA Testnet Explorer", - "icon": "soma", - "url": "https://testnet.somascan.io", - "standard": "none" + "name": "GeneChain Scan", + "url": "https://scan.genechain.io", + "standard": "EIP3091" } ], - "2330": [ + "81": [ { - "name": "expedition", - "url": "http://expedition.altcoinchain.org", - "icon": "altcoinchain", - "standard": "none" + "name": "Block Explorer", + "url": "https://explorer.japanopenchain.org", + "standard": "EIP3091", + "icon": "joc" } ], - "2331": [ + "82": [ { - "name": "RSS3 VSL Sepolia Testnet Scan", - "url": "https://scan.testnet.rss3.io", + "name": "Meter Mainnet Scan", + "url": "https://scan.meter.io", "standard": "EIP3091" } ], - "2332": [ + "83": [ { - "name": "SOMA Explorer Mainnet", - "icon": "soma", - "url": "https://somascan.io", - "standard": "none" + "name": "Meter Testnet Scan", + "url": "https://scan-warringstakes.meter.io", + "standard": "EIP3091" } ], - "2340": [ - { - "name": "Atleta Olympia Explorer", - "icon": "atleta", - "url": "https://blockscout.atleta.network", - "standard": "none" - }, + "84": [ { - "name": "Atleta Olympia Polka Explorer", - "icon": "atleta", - "url": "https://polkadot-explorer.atleta.network/#/explorer", - "standard": "none" + "name": "Linqto Devnet Explorer", + "url": "https://explorer.linqto-dev.com", + "standard": "EIP3091" } ], - "2342": [ + "85": [ { - "name": "OmniaVerse Explorer", - "url": "https://scan.omniaverse.io", + "name": "GateScan", + "url": "https://www.gatescan.org/testnet", "standard": "EIP3091" } ], - "2358": [ + "86": [ { - "name": "blockscout", - "url": "https://blockscout.sepolia.kroma.network", - "icon": "kroma", + "name": "GateScan", + "url": "https://www.gatescan.org", "standard": "EIP3091" } ], - "2370": [ + "87": [ { - "name": "Nexis Testnet Explorer", - "url": "https://evm-testnet.nexscan.io", + "name": "novanetwork", + "url": "https://explorer.novanetwork.io", "standard": "EIP3091" } ], - "2399": [ + "90": [ { - "name": "bombscan-testnet", - "icon": "bomb", - "url": "https://explorer.bombchain-testnet.ankr.com", + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", "standard": "EIP3091" } ], - "2400": [ + "91": [ { - "name": "TCG Verse Explorer", - "url": "https://explorer.tcgverse.xyz", + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", "standard": "EIP3091" } ], - "2410": [ + "92": [ { - "name": "Karak Mainnet Explorer", - "url": "https://explorer.karak.network", + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", "standard": "EIP3091" } ], - "2415": [ + "93": [ { - "name": "XODEX Explorer", - "url": "https://explorer.xo-dex.com", - "standard": "EIP3091", - "icon": "xodex" + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" } ], - "2425": [ + "94": [ { - "name": "King Of Legends Devnet Explorer", - "url": "https://devnet.kingscan.org", - "icon": "kol", + "name": "SwissDLT Explorer", + "url": "https://explorer.swissdlt.ch", + "icon": "bcts", "standard": "EIP3091" } ], - "2442": [ + "95": [ { - "name": "polygonscan", - "url": "https://cardona-zkevm.polygonscan.com", + "name": "CamDL Block Explorer", + "url": "https://explorer.camdl.gov.kh", "standard": "EIP3091" } ], - "2458": [ + "96": [ { - "name": "Hybrid Chain Explorer Testnet", - "icon": "hybrid", - "url": "https://testnet.hybridscan.ai", - "standard": "none" + "name": "Bitkub Chain Explorer", + "url": "https://bkcscan.com", + "standard": "none", + "icon": "bkc" } ], - "2468": [ + "97": [ { - "name": "Hybrid Chain Explorer Mainnet", - "icon": "hybrid", - "url": "https://hybridscan.ai", - "standard": "none" + "name": "bscscan-testnet", + "url": "https://testnet.bscscan.com", + "standard": "EIP3091" } ], - "2484": [ + "98": [ { - "icon": "u2u_nebulas", - "name": "U2U Explorer", - "url": "https://testnet.u2uscan.xyz", - "standard": "EIP3091" + "name": "SIX Scan", + "url": "https://sixscan.io/sixnet", + "standard": "none", + "icon": "six" } ], - "2522": [ + "99": [ { - "name": "fraxscan", - "url": "https://holesky.fraxscan.com", + "name": "blockscout", + "url": "https://blockscout.com/poa/core", + "icon": "blockscout", "standard": "EIP3091" } ], - "2569": [ + "100": [ { - "name": "tpcscan", - "url": "https://tpcscan.com", - "icon": "techpay", + "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" } ], - "2606": [ + "103": [ { - "name": "Lite Explorer", - "url": "https://ethereum-pocr.github.io/explorer/pocrnet", - "icon": "pocr", + "name": "Worldland Explorer", + "url": "https://scan.worldland.foundation", "standard": "EIP3091" } ], - "2611": [ + "104": [ { - "name": "REDLC Explorer", - "url": "https://redlightscan.finance", + "name": "kaibascan", + "url": "https://kaibascan.io", + "icon": "kaibascan", "standard": "EIP3091" } ], - "2612": [ + "105": [ { - "name": "ezchain", - "url": "https://cchain-explorer.ezchain.com", - "standard": "EIP3091" + "name": "Web3Games Explorer", + "url": "https://explorer-devnet.web3games.org", + "standard": "none" } ], - "2613": [ + "106": [ { - "name": "ezchain", - "url": "https://testnet-cchain-explorer.ezchain.com", + "name": "Velas Explorer", + "url": "https://evmexplorer.velas.com", "standard": "EIP3091" } ], - "2625": [ + "107": [ { - "name": "whitechain-testnet-explorer", - "url": "https://testnet.whitechain.io", + "name": "nebulatestnet", + "url": "https://explorer.novanetwork.io", "standard": "EIP3091" } ], - "2648": [ + "108": [ { - "name": "blockscout", - "url": "https://testnet-explorer.ailayer.xyz", - "icon": "ailayer", + "name": "thundercore-viewblock", + "url": "https://viewblock.io/thundercore", "standard": "EIP3091" } ], - "2649": [ + "109": [ + { + "name": "shibariumscan", + "url": "https://www.shibariumscan.io", + "standard": "none" + } + ], + "112": [ { "name": "blockscout", - "url": "https://mainnet-explorer.ailayer.xyz", - "icon": "ailayer", + "url": "https://coinbit-explorer.chain.sbcrypto.app", + "icon": "blockscout", "standard": "EIP3091" } ], - "2710": [ + "113": [ { - "name": "Morph Testnet Explorer", - "url": "https://explorer-testnet.morphl2.io", + "name": "Dehvo Explorer", + "url": "https://explorer.dehvo.com", "standard": "EIP3091" } ], - "2718": [ + "114": [ { "name": "blockscout", - "url": "https://blockscout.klaos.laosfoundation.io", - "icon": "k-laos", + "url": "https://coston2-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://coston2.testnet.flarescan.com", "standard": "EIP3091" } ], - "2730": [ + "117": [ { - "name": "XR Sepolia Explorer", - "url": "https://xr-sepolia-testnet.explorer.caldera.xyz", - "icon": "blockscout", - "standard": "EIP3091" + "name": "Uptick Explorer", + "url": "https://evm-explorer.uptick.network", + "icon": "uptick", + "standard": "none" } ], - "2731": [ + "118": [ { - "name": "Time Network Explorer", - "url": "https://testnet-scanner.timenetwork.io", - "standard": "none", - "icon": "timenet" + "name": "arcology", + "url": "https://testnet.arcology.network/explorer", + "standard": "none" + } + ], + "119": [ + { + "name": "enulsscan", + "url": "https://evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" } ], - "2748": [ + "120": [ { - "name": "Nanon Rollup Explorer", - "url": "https://explorer.nanon.network", + "name": "enulsscan", + "url": "https://beta.evmscan.nuls.io", + "icon": "enuls", "standard": "EIP3091" } ], - "2777": [ + "121": [ { - "name": "GM Network Mainnet Explorer", - "url": "https://scan.gmnetwork.ai", + "name": "realscan", + "url": "https://rclscan.com", "standard": "EIP3091" } ], - "2810": [ + "122": [ { - "name": "Morph Holesky Testnet Explorer", - "url": "https://explorer-holesky.morphl2.io", + "name": "blockscout", + "url": "https://explorer.fuse.io", + "icon": "blockscout", "standard": "EIP3091" } ], - "2907": [ + "125": [ { - "name": "blockscout", - "url": "https://eluxscan.com", + "name": "OYchain Testnet Explorer", + "url": "https://explorer.testnet.oychain.io", "standard": "none" } ], - "2911": [ + "126": [ { - "name": "blockscout", - "url": "https://explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" + "name": "OYchain Mainnet Explorer", + "url": "https://explorer.oychain.io", + "standard": "none" } ], - "2941": [ + "128": [ { - "name": "Xenon testnet Explorer", - "url": "https://testnet.xenonchain.com", - "standard": "none" + "name": "hecoinfo", + "url": "https://hecoinfo.com", + "standard": "EIP3091" } ], - "2999": [ + "129": [ { - "name": "BitYuan Block Chain Explorer", - "url": "https://mainnet.bityuan.com", + "name": "Innovator Explorer", + "url": "https://evm.innovatorchain.com", + "icon": "blockscout", "standard": "none" } ], - "3001": [ + "131": [ { - "name": "UNcover", - "url": "https://www.uncoverexplorer.com/?network=Nikau", - "standard": "none" + "name": "blockscout", + "url": "https://tokioscan-v2.engram.tech", + "icon": "engram", + "standard": "EIP3091" } ], - "3003": [ + "134": [ { - "name": "canxium explorer", - "url": "https://explorer.canxium.org", - "standard": "none" + "name": "blockscout", + "url": "https://blockscout.bellecour.iex.ec", + "icon": "blockscout", + "standard": "EIP3091" } ], - "3011": [ + "135": [ { - "name": "PLAYA3ULL GAMES Explorer", - "url": "https://3011.routescan.io", - "icon": "playa3ull", + "name": "alyx testnet scan", + "url": "https://testnet.alyxscan.com", "standard": "EIP3091" } ], - "3031": [ + "136": [ { - "name": "Orlando (ORL) Explorer", - "url": "https://orlscan.com", - "icon": "orl", + "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" } ], - "3033": [ + "138": [ { - "name": "Rebus EVM Explorer (Blockscout)", - "url": "https://evm.testnet.rebus.money", - "icon": "rebus", + "name": "Blockscout Explorer", + "url": "https://blockscout.defi-oracle.io", "standard": "none" }, { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://testnet.rebus.money/rebustestnet", - "icon": "rebus", + "name": "Quorum Explorer", + "url": "https://explorer.defi-oracle.io", "standard": "none" } ], - "3068": [ + "139": [ { - "name": "explorer-thebifrost", - "url": "https://explorer.mainnet.bifrostnetwork.com", + "name": "wikiwoop", + "url": "https://explorer.wikiwoop.com", "standard": "EIP3091" } ], - "3073": [ + "141": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", + "name": "Belly Scan", + "url": "https://testnet.bellyscan.com", "standard": "none" } ], - "3306": [ + "144": [ { - "name": "Debounce Devnet Explorer", - "url": "https://explorer.debounce.network", - "standard": "EIP3091" + "name": "Phiscan", + "url": "https://phiscan.com", + "icon": "phi", + "standard": "none" } ], - "3334": [ + "145": [ { - "name": "w3q-galileo", - "url": "https://explorer.galileo.web3q.io", + "name": "blockscout", + "url": "https://explorer.soraai.bot", + "icon": "blockscout", "standard": "EIP3091" } ], - "3400": [ + "147": [ { - "name": "Paribu Net Explorer", - "url": "https://explorer.paribu.network", + "name": "Flag Mainnet Explorer", + "url": "https://flagscan.xyz", "standard": "EIP3091" } ], - "3424": [ + "148": [ { - "name": "Evolve Mainnet Explorer", - "url": "https://evoexplorer.com", + "name": "explorer", + "url": "https://explorer.evm.shimmer.network", + "icon": "shimmerevm", "standard": "EIP3091" } ], - "3434": [ + "150": [ { - "name": "SecureChain", - "url": "https://testnet.securechain.ai", + "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" } ], - "3456": [ + "156": [ { - "name": "LayerEdge Testnet Explorer", - "url": "https://testnet-explorer.layeredge.io", - "icon": "layerEdge", + "name": "OEScan explorer", + "url": "https://testnet.oescan.io", "standard": "EIP3091" } ], - "3490": [ + "157": [ { - "name": "GTCScan Explorer", - "url": "https://gtcscan.io", - "standard": "none", - "icon": "gtc" + "name": "puppyscan", + "url": "https://puppyscan.shib.io", + "standard": "none" } ], - "3500": [ + "158": [ { - "name": "Paribu Net Testnet Explorer", - "url": "https://testnet.paribuscan.com", + "name": "Rbascan Explorer", + "url": "https://rbascan.com", "standard": "EIP3091" } ], - "3501": [ + "159": [ { - "name": "JFIN Chain Explorer", - "url": "https://exp.jfinchain.com", + "name": "Rbascan Testnet Explorer", + "url": "https://testnet.rbascan.com", "standard": "EIP3091" } ], - "3601": [ + "161": [ { - "name": "Pando Mainnet Explorer", - "url": "https://explorer.pandoproject.org", - "standard": "none" + "name": "blockscout - evascan", + "url": "https://testnet.evascan.io", + "standard": "EIP3091" } ], - "3602": [ + "164": [ { - "name": "Pando Testnet Explorer", - "url": "https://testnet.explorer.pandoproject.org", + "name": "Omni X-Explorer", + "url": "https://explorer.testnet.omni.network", "standard": "none" - } - ], - "3636": [ + }, { - "name": "3xpl", - "url": "https://3xpl.com/botanix", + "name": "Omni EVM Explorer on Blockscout", + "url": "https://omni-testnet.blockscout.com", "standard": "EIP3091" }, { - "name": "Blockscout", - "url": "https://blockscout.botanixlabs.dev", + "name": "Omni EVM Explorer on Routescan", + "url": "https://testnet.omniscan.network", "standard": "EIP3091" } ], - "3637": [ + "167": [ { - "name": "Botanix", - "url": "https://btxtestchain.com", + "name": "atoshiscan", + "url": "https://scan.atoverse.info", "standard": "EIP3091" } ], - "3639": [ + "168": [ { - "name": "iChainscan", - "url": "https://ichainscan.com", + "name": "AIOZ Network Explorer", + "url": "https://explorer.aioz.network", "standard": "EIP3091" } ], - "3645": [ + "169": [ { - "name": "iChainscan", - "url": "https://test.ichainscan.com", + "name": "manta-pacific Explorer", + "url": "https://pacific-explorer.manta.network", "standard": "EIP3091" } ], - "3666": [ + "176": [ { - "name": "jscan", - "url": "https://jscan.jnsdao.com", + "name": "dcscan", + "url": "https://exp.dcnetio.cloud", + "standard": "none" + } + ], + "180": [ + { + "name": "AME Scan", + "url": "https://amescan.io", "standard": "EIP3091" } ], - "3690": [ + "185": [ { - "name": "bittexscan", - "url": "https://bittexscan.com", + "name": "blockscout", + "url": "https://explorer.mintchain.io", + "icon": "mint", "standard": "EIP3091" } ], - "3693": [ + "186": [ { - "name": "Empire Explorer", - "url": "https://explorer.empirenetwork.io", + "name": "seeleview", + "url": "https://seeleview.net", "standard": "none" } ], - "3698": [ + "188": [ { - "name": "SenjePowers", - "url": "https://testnet.senjepowersscan.com", - "standard": "EIP3091" + "name": "Blockmeta", + "url": "https://bmc.blockmeta.com", + "standard": "none" } ], - "3699": [ + "189": [ { - "name": "SenjePowers", - "url": "https://senjepowersscan.com", - "standard": "EIP3091" + "name": "Blockmeta", + "url": "https://bmctestnet.blockmeta.com", + "standard": "none" } ], - "3737": [ + "193": [ { - "name": "Crossbell Explorer", - "url": "https://scan.crossbell.io", + "name": "cemscan", + "url": "https://cemscan.com", "standard": "EIP3091" } ], - "3776": [ + "195": [ { - "name": "Blockscout Astar zkEVM explorer", - "url": "https://astar-zkevm.explorer.startale.com", + "name": "OKLink", + "url": "https://www.oklink.com/xlayer-test", "standard": "EIP3091" } ], - "3797": [ + "196": [ { - "name": "AlveyScan", - "url": "https://alveyscan.com", - "icon": "alveychain", + "name": "OKLink", + "url": "https://www.oklink.com/xlayer", "standard": "EIP3091" } ], - "3799": [ + "197": [ { - "name": "ttntscan", - "url": "https://testnet-explorer.tangle.tools", - "icon": "blockscout", + "name": "blockscout", + "url": "https://testnet.neutrinoschain.com", "standard": "EIP3091" } ], - "3888": [ + "198": [ { - "name": "KalyScan", - "url": "https://kalyscan.io", + "name": "Bitchain Scan", + "url": "https://explorer.bitchain.biz", "standard": "EIP3091" } ], - "3889": [ + "199": [ { - "name": "KalyScan", - "url": "https://testnet.kalyscan.io", + "name": "BitTorrent Chain Explorer", + "url": "https://bttcscan.com", "standard": "EIP3091" } ], - "3912": [ + "200": [ { - "name": "DRAC_Network Scan", - "url": "https://www.dracscan.io", + "name": "blockscout", + "url": "https://blockscout.com/xdai/arbitrum", "standard": "EIP3091" } ], - "3939": [ + "201": [ { - "name": "DOScan-Test", - "url": "https://test.doscan.io", - "icon": "doschain", - "standard": "EIP3091" + "name": "moac testnet explorer", + "url": "https://testnet.moac.io", + "standard": "none" } ], - "3966": [ + "202": [ { - "name": "DYNO Explorer", - "url": "https://dynoscan.io", + "name": "Edgeless Explorer", + "url": "https://testnet.explorer.edgeless.network", "standard": "EIP3091" } ], - "3967": [ + "204": [ { - "name": "DYNO Explorer", - "url": "https://testnet.dynoscan.io", + "name": "opbnbscan", + "url": "https://mainnet.opbnbscan.com", "standard": "EIP3091" } ], - "3993": [ + "206": [ { - "name": "blockscout", - "url": "https://exp-testnet.apexlayer.xyz", - "standard": "EIP3091" + "name": "VinuScan Testnet", + "url": "https://testnet.vinuscan.com", + "icon": "vinuscan-testnet", + "standard": "none" } ], - "3999": [ + "207": [ { - "name": "YuanChain Explorer", - "url": "https://mainnet.yuan.org", + "name": "VinuScan", + "url": "https://vinuscan.com", + "icon": "vinuscan", "standard": "none" } ], - "4000": [ + "210": [ { - "name": "OZONE Scan", - "url": "https://ozonescan.io", + "name": "Bitnet Explorer", + "url": "https://btnscan.com", "standard": "EIP3091" } ], - "4001": [ + "212": [ { - "name": "Peperium Chain Explorer", - "url": "https://scan-testnet.peperium.io", - "icon": "peperium", + "name": "maposcan", + "url": "https://testnet.maposcan.io", "standard": "EIP3091" } ], - "4002": [ + "213": [ { - "name": "ftmscan", - "url": "https://testnet.ftmscan.com", - "icon": "ftmscan", + "name": "B2 Hub Mainnet Explorer", + "url": "https://hub-explorer.bsquared.network", + "icon": "bsquare", "standard": "EIP3091" } ], - "4003": [ + "214": [ { - "name": "Blockscout", - "url": "https://explorer.x1-fastnet.xen.network", - "icon": "blockscout", + "name": "shinascan", + "url": "https://shinascan.shinarium.org", "standard": "EIP3091" } ], - "4040": [ + "217": [ { - "name": "Carbonium Network tesnet Explorer", - "icon": "cbr", - "url": "https://testnet.carboniumscan.com", + "name": "siriusnet explorer", + "url": "https://scan.siriusnet.io", "standard": "none" } ], - "4048": [ + "220": [ { - "name": "ganscan", - "url": "https://ganscan.gpu.net", - "standard": "none" + "name": "scalind", + "url": "https://explorer-sepolia.scalind.com", + "standard": "EIP3091" } ], - "4058": [ + "223": [ { "name": "blockscout", - "url": "https://ocean.ftnscan.com", - "standard": "none" - } - ], - "4061": [ - { - "name": "Nahmii 3 Mainnet Explorer", - "url": "https://explorer.nahmii.io", - "icon": "nahmii", + "url": "https://explorer.bsquared.network", + "icon": "bsquare", "standard": "EIP3091" } ], - "4062": [ + "224": [ { - "name": "Nahmii 3 Testnet Explorer", - "url": "https://explorer.testnet.nahmii.io", - "icon": "nahmii", + "name": "Viridis Testnet", + "url": "https://testnet.vrd.network", "standard": "EIP3091" } ], - "4078": [ + "225": [ { - "name": "Musterscan", - "url": "https://muster-explorer.alt.technology", + "name": "blockscout", + "url": "https://scan.lachain.io", "standard": "EIP3091" } ], - "4080": [ + "226": [ { - "name": "tobescan", - "url": "https://tobescan.com", + "name": "blockscout", + "url": "https://scan-test.lachain.io", "standard": "EIP3091" } ], - "4090": [ + "230": [ { - "name": "blockscout", - "url": "https://oasis.ftnscan.com", + "name": "SwapDEX", + "url": "https://evm.swapdex.network", "standard": "none" } ], - "4096": [ - { - "name": "Bitindi", - "url": "https://testnet.bitindiscan.com", - "standard": "EIP3091" - } - ], - "4099": [ + "234": [ { - "name": "Bitindi", - "url": "https://bitindiscan.com", + "name": "ProtoJumbo", + "url": "https://protojumbo.jumbochain.org", "standard": "EIP3091" } ], - "4102": [ + "236": [ { - "name": "AIOZ Network Testnet Explorer", - "url": "https://testnet.explorer.aioz.network", - "standard": "EIP3091" + "name": "Deamchain Testnet Explorer", + "url": "https://testnet-scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" } ], - "4141": [ + "242": [ { - "name": "Tipboxcoin", - "url": "https://testnet.tipboxcoin.net", + "name": "plgscan", + "url": "https://www.plgscan.com", "standard": "EIP3091" } ], - "4157": [ - { - "name": "CrossFi Testnet Scan", - "url": "https://test.xfiscan.com", - "standard": "EIP3091", - "icon": "crossfi" - } - ], - "4181": [ + "246": [ { - "name": "PHI Explorer", - "url": "https://explorer.phi.network", - "icon": "phi", + "name": "blockscout", + "url": "https://explorer.energyweb.org", "standard": "none" } ], - "4200": [ + "248": [ { - "name": "L2scan", - "url": "https://scan.merlinchain.io", - "icon": "merlin", + "name": "blockscout", + "url": "https://explorer.oasys.games", "standard": "EIP3091" } ], - "4201": [ + "250": [ { - "name": "Blockscout", - "url": "https://explorer.execution.testnet.lukso.network", - "standard": "none" + "name": "ftmscan", + "url": "https://ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://fantom.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" } ], - "4202": [ + "252": [ { - "name": "liskscout", - "url": "https://sepolia-blockscout.lisk.com", - "icon": "blockscout", + "name": "fraxscan", + "url": "https://fraxscan.com", "standard": "EIP3091" } ], - "4242": [ + "255": [ { - "name": "nexiscan", - "url": "https://www.nexiscan.com", + "name": "blockscout", + "url": "https://blockscout.kroma.network", + "icon": "blockscout", "standard": "EIP3091" } ], - "4243": [ + "259": [ { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" + "name": "Neon Blockchain Explorer", + "url": "https://scan.neonlink.io", + "standard": "EIP3091", + "icon": "neonlink" } ], - "4337": [ + "262": [ { - "name": "Beam Explorer", - "url": "https://subnets.avax.network/beam", + "name": "Surnet Explorer", + "url": "https://explorer.surnet.org", + "icon": "SUR", "standard": "EIP3091" } ], - "4400": [ + "267": [ { - "name": "Creditscan", - "url": "https://scan.creditsmartchain.com", - "icon": "credit", + "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" } ], - "4444": [ + "269": [ { - "name": "htmlcoin", - "url": "https://explorer.htmlcoin.com", - "icon": "htmlcoin", - "standard": "none" + "name": "hscan", + "url": "https://hscan.org", + "standard": "EIP3091" } ], - "4460": [ + "271": [ { - "name": "basescout", - "url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz", - "icon": "blockscout", + "name": "EgonCoin Mainnet", + "url": "https://egonscan.com", "standard": "EIP3091" } ], - "4544": [ + "274": [ { - "name": "EMoney ethscan", - "url": "https://ethscan.emoney.network", - "icon": "emoney", + "name": "LaChain Explorer", + "url": "https://explorer.lachain.network", "standard": "EIP3091" } ], - "4613": [ + "282": [ { - "name": "VERY explorer", - "url": "https://www.veryscan.io", + "name": "Cronos zkEVM Testnet Explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", "standard": "none" } ], - "4689": [ + "288": [ { - "name": "iotexscan", - "url": "https://iotexscan.io", - "standard": "EIP3091" + "name": "Bobascan", + "url": "https://bobascan.com", + "standard": "none" } ], - "4690": [ + "291": [ { - "name": "testnet iotexscan", - "url": "https://testnet.iotexscan.io", + "name": "orderlyscout", + "url": "https://explorer.orderly.network", + "icon": "blockscout", "standard": "EIP3091" } ], - "4759": [ + "295": [ { - "name": "MEVerse Chain Testnet Explorer", - "url": "https://testnet.meversescan.io", - "standard": "none", - "icon": "meverse" + "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" } ], - "4777": [ + "296": [ { - "name": "blockscout", - "url": "https://testnet-explorer.blackfort.network", - "icon": "blockscout", + "name": "HashScan", + "url": "https://hashscan.io/testnet", "standard": "EIP3091" - } - ], - "4893": [ + }, { - "name": "blockscout", - "url": "https://gcscan.io", + "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" } ], - "4918": [ + "297": [ { - "name": "Venidium EVM Testnet Explorer", - "url": "https://evm-testnet.venidiumexplorer.com", + "name": "HashScan", + "url": "https://hashscan.io/previewnet", "standard": "EIP3091" } ], - "4919": [ + "300": [ { - "name": "Venidium Explorer", - "url": "https://evm.venidiumexplorer.com", + "name": "zkSync Block Explorer", + "url": "https://sepolia.explorer.zksync.io", + "icon": "zksync-era", "standard": "EIP3091" } ], - "4999": [ + "302": [ { - "name": "blockscout", - "url": "https://explorer.blackfort.network", - "icon": "blockscout", + "name": "zkCandy Block Explorer", + "url": "https://sepolia.explorer.zkcandy.io", + "icon": "zkcandy", "standard": "EIP3091" } ], - "5000": [ + "303": [ { - "name": "Mantle Explorer", - "url": "https://explorer.mantle.xyz", + "name": "neuroscan", + "url": "https://testnet.ncnscan.com", "standard": "EIP3091" } ], - "5001": [ + "305": [ { - "name": "Mantle Testnet Explorer", - "url": "https://explorer.testnet.mantle.xyz", + "name": "blockscout", + "url": "https://explorer.zksats.io", + "icon": "zksats", "standard": "EIP3091" } ], - "5002": [ + "307": [ { - "name": "Treasurenet EVM BlockExplorer", - "url": "https://evmexplorer.treasurenet.io", - "icon": "treasurenet", - "standard": "none" + "name": "Lovely Network Testnet", + "url": "https://tscan.lovely.network", + "standard": "EIP3091" } ], - "5003": [ + "308": [ { - "name": "blockscout", - "url": "https://explorer.sepolia.mantle.xyz", + "name": "furthscan", + "url": "http://furthscan.com", "standard": "EIP3091" } ], - "5005": [ + "309": [ { - "name": "Treasurenet EVM BlockExplorer", - "url": "https://evmexplorer.testnet.treasurenet.io", - "icon": "treasurenet", - "standard": "none" + "name": "wyzth", + "url": "http://24.199.108.65:4000", + "icon": "wyzth", + "standard": "EIP3091" } ], - "5039": [ + "311": [ { - "name": "ONIGIRI Explorer", - "url": "https://subnets-test.avax.network/onigiri", + "name": "Omax Chain Explorer", + "url": "https://omaxray.com", + "icon": "omaxray", "standard": "EIP3091" } ], - "5040": [ + "313": [ { - "name": "ONIGIRI Explorer", - "url": "https://subnets.avax.network/onigiri", + "name": "neuroscan", + "url": "https://ncnscan.com", "standard": "EIP3091" } ], - "5051": [ + "314": [ { - "name": "Nollie Skate Chain Testnet Explorer", - "url": "https://nolliescan.skatechain.org", + "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" } ], - "5102": [ + "321": [ { - "name": "blockscout", - "url": "https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz", + "name": "KCC Explorer", + "url": "https://explorer.kcc.io/en", "standard": "EIP3091" } ], - "5106": [ + "322": [ { - "name": "blockscout", - "url": "https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz", + "name": "kcc-scan-testnet", + "url": "https://scan-testnet.kcc.network", "standard": "EIP3091" } ], - "5112": [ + "323": [ { - "name": "blockscout", - "url": "https://explorer.ham.fun", + "name": "Blockscout", + "url": "https://explorer.cosvm.net", "icon": "blockscout", "standard": "EIP3091" } ], - "5165": [ + "324": [ { - "name": "blockscout", - "url": "https://ftnscan.com", - "standard": "none" + "name": "zkSync Era Block Explorer", + "url": "https://explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" } ], - "5169": [ + "333": [ { - "name": "SLN Mainnet Explorer", - "url": "https://explorer.main.smartlayer.network", + "name": "w3q-mainnet", + "url": "https://explorer.mainnet.web3q.io", "standard": "EIP3091" } ], - "5177": [ + "335": [ { - "name": "TLChain Explorer", - "url": "https://explorer.tlchain.network", + "name": "ethernal", + "url": "https://explorer-test.dfkchain.com", + "icon": "ethereum", "standard": "none" } ], - "5234": [ + "336": [ { - "name": "Subscan", - "url": "https://humanode.subscan.io", - "standard": "EIP3091", + "name": "subscan", + "url": "https://shiden.subscan.io", + "standard": "none", "icon": "subscan" + }, + { + "name": "blockscout", + "url": "https://blockscout.com/shiden", + "icon": "blockscout", + "standard": "EIP3091" } ], - "5317": [ + "338": [ { - "name": "OpTrust Testnet explorer", - "url": "https://scantest.optrust.io", - "icon": "optrust", + "name": "Cronos Testnet Explorer", + "url": "https://explorer.cronos.org/testnet", "standard": "none" } ], - "5321": [ + "345": [ { - "name": "ITX Testnet Explorer (Blockscout)", - "url": "https://explorer.testnet.itxchain.com", - "standard": "EIP3091" + "name": "tscscan", + "url": "https://www.tscscan.io", + "icon": "netxscan", + "standard": "none" } ], - "5353": [ + "361": [ { - "name": "TRITANIUM Testnet Explorer", - "icon": "tritanium", - "url": "https://testnet.tritanium.network", - "standard": "none" + "name": "Theta Mainnet Explorer", + "url": "https://explorer.thetatoken.org", + "standard": "EIP3091" } ], - "5372": [ + "363": [ { - "name": "Settlus Scan", - "url": "https://testnet.settlus.network", + "name": "Theta Sapphire Testnet Explorer", + "url": "https://guardian-testnet-sapphire-explorer.thetatoken.org", "standard": "EIP3091" } ], - "5424": [ + "364": [ { - "name": "edexa-mainnet", - "url": "https://explorer.edexa.network", + "name": "Theta Amber Testnet Explorer", + "url": "https://guardian-testnet-amber-explorer.thetatoken.org", "standard": "EIP3091" } ], - "5439": [ + "365": [ { - "name": "egoscan", - "url": "https://egoscan.io", + "name": "Theta Testnet Explorer", + "url": "https://testnet-explorer.thetatoken.org", "standard": "EIP3091" } ], - "5522": [ + "369": [ { - "name": "Vexascan-EVM-TestNet", - "url": "https://testnet.vexascan.com/evmexplorer", + "name": "blockscout", + "url": "https://scan.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "otterscan", + "url": "https://otter.pulsechain.com", "standard": "EIP3091" } ], - "5551": [ + "371": [ { - "name": "Nahmii 2 Mainnet Explorer", - "url": "https://explorer.n2.nahmii.io", - "icon": "nahmii", + "name": "blockscout", + "url": "https://explorer-testnet.theconsta.com", "standard": "EIP3091" } ], - "5555": [ + "380": [ { - "name": "Chain Verse Explorer", - "url": "https://explorer.chainverse.info", + "name": "ZKAmoeba Test Explorer", + "url": "https://testnetexplorer.zkamoeba.com", + "icon": "zkamoeba-micro", "standard": "EIP3091" } ], - "5611": [ + "381": [ { - "name": "bscscan-opbnb-testnet", - "url": "https://opbnb-testnet.bscscan.com", + "name": "ZKAmoeba Explorer", + "url": "https://explorer.zkamoeba.com", + "icon": "zkamoeba-micro", "standard": "EIP3091" - }, + } + ], + "395": [ { - "name": "opbnbscan", - "url": "https://opbnbscan.com", + "name": "CamDL Testnet Explorer", + "url": "https://explorer.testnet.camdl.gov.kh", "standard": "EIP3091" } ], - "5615": [ + "397": [ { - "name": "explorer-arcturus-testnet", - "url": "https://testnet.arcscan.net", - "standard": "EIP3091" + "name": "Near Blocks", + "url": "https://nearblocks.io", + "standard": "none" } ], - "5656": [ + "398": [ { - "name": "QIE Explorer", - "url": "https://mainnet.qiblockchain.online", + "name": "Near blocks", + "url": "https://testnet.nearblocks.io", + "standard": "none" + } + ], + "399": [ + { + "name": "N3scan", + "url": "https://scan.nativ3.network", "standard": "EIP3091" } ], - "5675": [ + "400": [ { - "name": "filenova testnet explorer", - "url": "https://scantest.filenova.org", - "icon": "filenova", - "standard": "none" + "name": "blockscout", + "url": "https://testnet.hyperonchain.com", + "icon": "hyperonchain", + "standard": "EIP3091" } ], - "5678": [ + "401": [ { - "name": "BlockScout", - "url": "https://3001-blockscout.a.dancebox.tanssi.network", + "name": "OZONE Scan", + "url": "https://testnet.ozonescan.io", "standard": "EIP3091" } ], - "5700": [ + "404": [ { - "name": "Syscoin Testnet Block Explorer", - "url": "https://tanenbaum.io", + "name": "Syndr L3 Explorer", + "url": "https://explorer.syndr.com", "standard": "EIP3091" } ], - "5729": [ + "411": [ { - "name": "Hika Network Testnet Explorer", - "url": "https://scan-testnet.hika.network", - "standard": "none" + "name": "pepechain explorer", + "url": "https://explorer.pepe-chain.vip", + "standard": "EIP3091" } ], - "5758": [ + "416": [ { - "name": "SatoshiChain Testnet Explorer", - "url": "https://testnet.satoshiscan.io", + "name": "SX Network Explorer", + "url": "https://explorer.sx.technology", "standard": "EIP3091" } ], - "5845": [ + "418": [ { - "name": "Tangle EVM Explorer", - "url": "https://explorer.tangle.tools", - "standard": "EIP3091", - "icon": "tangle" + "name": "LaTestnet Explorer", + "url": "https://testexplorer.lachain.network", + "standard": "EIP3091" } ], - "5851": [ + "420": [ { - "name": "explorer", - "url": "https://explorer.ont.io/testnet", + "name": "blockscout", + "url": "https://optimism-goerli.blockscout.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "5869": [ + "422": [ { - "name": "wegoscan2", - "url": "https://scan2.wegochain.io", + "name": "Viridis Mainnet", + "url": "https://explorer.vrd.network", "standard": "EIP3091" } ], - "6000": [ + "424": [ { - "name": "BBScan Testnet Explorer", - "url": "https://bbscan.io", - "standard": "none" + "name": "blockscout", + "url": "https://explorer.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" } ], - "6001": [ + "427": [ { - "name": "BBScan Mainnet Explorer", - "url": "https://bbscan.io", + "name": "Zeeth Explorer", + "url": "https://explorer.zeeth.io", "standard": "none" } ], - "6065": [ + "428": [ { - "name": "treslechesexplorer", - "url": "https://explorer-test.tresleches.finance", - "icon": "treslechesexplorer", + "name": "Geso Verse Explorer", + "url": "https://explorer.verse.gesoten.com", "standard": "EIP3091" } ], - "6066": [ + "434": [ { - "name": "treslechesexplorer", - "url": "https://explorer.tresleches.finance", - "icon": "treslechesexplorer", + "name": "Boyaa explorer", + "url": "https://explorer.mainnet.boyaa.network", "standard": "EIP3091" } ], - "6102": [ - { - "name": "Cascadia EVM Explorer", - "url": "https://explorer.cascadia.foundation", - "standard": "none", - "icon": "cascadia" - }, + "443": [ { - "name": "Cascadia Cosmos Explorer", - "url": "https://validator.cascadia.foundation", - "standard": "none", - "icon": "cascadia" + "name": "Ten Sepolia Rollup Explorer", + "url": "https://tenscan.io", + "standard": "none" } ], - "6118": [ + "444": [ { - "name": "UPTN Testnet Explorer", - "url": "https://testnet.explorer.uptn.io", + "name": "Synapse Chain Sepolia", + "url": "https://sepolia.synapsescan.com", "standard": "EIP3091" } ], - "6119": [ + "456": [ { - "name": "UPTN Explorer", - "url": "https://explorer.uptn.io", + "name": "ARZIO Scan", + "url": "https://scan.arzio.co", "standard": "EIP3091" } ], - "6321": [ + "462": [ { - "name": "Aurascan Explorer", - "url": "https://euphoria.aurascan.io", - "standard": "none", - "icon": "aura" + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" } ], - "6322": [ + "463": [ { - "name": "Aurascan Explorer", - "url": "https://aurascan.io", - "standard": "none", - "icon": "aura" + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" } ], - "6552": [ + "500": [ { - "name": "Scolscan Testnet Explorer", - "url": "https://testnet-explorer.scolcoin.com", - "standard": "EIP3091" + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" } ], - "6565": [ + "501": [ { - "name": "FOX Testnet Explorer", - "icon": "fox", - "url": "https://testnet.foxscan.app", + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", "standard": "none" } ], - "6626": [ + "512": [ { - "name": "blockscout", - "url": "https://scan.chain.pixie.xyz", - "standard": "none" + "name": "aacscan", + "url": "https://scan.acuteangle.com", + "standard": "EIP3091" } ], - "6660": [ + "513": [ { - "name": "Latest Chain", - "url": "http://testnet.latestchain.io", + "name": "aacscan-testnet", + "url": "https://scan-testnet.acuteangle.com", "standard": "EIP3091" } ], - "6661": [ + "520": [ { - "name": "Cybria Explorer", - "url": "https://cybascan.io", - "icon": "cybascan", + "name": "xscscan", + "url": "https://xscscan.pub", "standard": "EIP3091" } ], - "6666": [ + "530": [ { - "name": "Cybria Explorer", - "url": "https://explorer.cybascan.io", - "icon": "cybascan", + "name": "FunctionX Explorer", + "url": "https://fx-evm.functionx.io", "standard": "EIP3091" } ], - "6688": [ + "534": [ { - "name": "IRISHub Cosmos Explorer (IOBScan)", - "url": "https://irishub.iobscan.io", - "standard": "none", - "icon": "irishub" + "name": "candleexplorer", + "url": "https://candleexplorer.com", + "standard": "EIP3091" } ], - "6701": [ + "537": [ { - "name": "PAXB Explorer", - "url": "https://scan.paxb.io", - "icon": "paxb", - "standard": "EIP3091" + "name": "OpTrust explorer", + "url": "https://scan.optrust.io", + "icon": "optrust", + "standard": "none" } ], - "6779": [ + "542": [ { - "name": "cpvscan", - "url": "https://scan.compverse.io", + "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" } ], - "6789": [ + "568": [ { - "name": "Gold Smart Chain", - "url": "https://mainnet.goldsmartchain.com", + "name": "dogechain testnet explorer", + "url": "https://explorer-testnet.dogechain.dog", "standard": "EIP3091" } ], - "6868": [ + "570": [ { - "name": "poolsscan", - "url": "https://scan.poolsmobility.com", - "icon": "POOLS", + "name": "Rollux Explorer", + "url": "https://explorer.rollux.com", "standard": "EIP3091" } ], - "6969": [ + "571": [ { - "name": "tombscout", - "url": "https://tombscout.com", - "standard": "none" + "name": "MetaExplorer", + "url": "https://explorer.metatime.com", + "standard": "EIP3091" } ], - "7000": [ + "579": [ { - "name": "ZetaChain Mainnet Explorer", - "url": "https://explorer.zetachain.com", + "name": "filenova explorer", + "url": "https://scan.filenova.org", + "icon": "filenova", "standard": "none" } ], - "7001": [ + "592": [ { - "name": "ZetaChain Athens Testnet Explorer", - "url": "https://athens3.explorer.zetachain.com", - "standard": "none" + "name": "subscan", + "url": "https://astar.subscan.io", + "standard": "none", + "icon": "subscan" }, { "name": "blockscout", - "url": "https://zetachain-athens-3.blockscout.com", + "url": "https://blockscout.com/astar", "icon": "blockscout", "standard": "EIP3091" } ], - "7007": [ + "595": [ { "name": "blockscout", - "url": "https://bstscan.com", + "url": "https://blockscout.mandala.aca-staging.network", "standard": "EIP3091" } ], - "7027": [ + "596": [ { - "name": "Ella", - "url": "https://ella.network", + "name": "blockscout", + "url": "https://blockscout.karura-testnet.aca-staging.network", "standard": "EIP3091" } ], - "7070": [ + "597": [ { - "name": "Planq EVM Explorer (Blockscout)", - "url": "https://evm.planq.network", - "standard": "none" - }, + "name": "blockscout", + "url": "https://blockscout.acala-dev.aca-dev.network", + "standard": "EIP3091" + } + ], + "601": [ { - "name": "Planq Cosmos Explorer (BigDipper)", - "url": "https://explorer.planq.network", - "standard": "none" + "name": "Vine Explorer", + "url": "https://vne.network/rose", + "standard": "none", + "icon": "vine" } ], - "7100": [ + "612": [ { - "name": "numeexplorer", - "url": "https://explorer.numecrypto.com", - "icon": "nume", + "name": "EIOB Explorer", + "url": "https://explorer.eiob.xyz", "standard": "none" } ], - "7171": [ + "614": [ { - "name": "Bitrock Explorer", - "url": "https://explorer.bit-rock.io", - "standard": "EIP3091" + "name": "GLQ Explorer", + "url": "https://explorer.graphlinq.io", + "standard": "none" } ], - "7300": [ + "634": [ { - "name": "XPLA Verse Explorer", - "url": "https://explorer-xpla-verse.xpla.dev", - "standard": "EIP3091" + "name": "avoscan", + "url": "https://avoscan.co", + "icon": "avocado", + "standard": "none" } ], - "7332": [ + "646": [ { - "name": "Horizen EON Block Explorer", - "url": "https://eon-explorer.horizenlabs.io", - "icon": "eon", - "standard": "EIP3091" + "name": "Flow Diver", + "url": "https://previewnet.flowdiver.io", + "standard": "none" } ], - "7341": [ + "647": [ { - "name": "Shyft BX", - "url": "https://bx.shyft.network", + "name": "SX Network Toronto Explorer", + "url": "https://explorer.toronto.sx.technology", "standard": "EIP3091" } ], - "7484": [ + "648": [ { - "name": "raba", - "url": "https://x.raba.app/explorer", - "standard": "none" + "name": "Endurance Scan", + "url": "https://explorer.endurance.fusionist.io", + "standard": "EIP3091" } ], - "7518": [ + "653": [ { - "name": "MEVerse Chain Explorer", - "url": "https://www.meversescan.io", - "standard": "none", - "icon": "meverse" + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" } ], - "7560": [ + "654": [ { - "name": "Cyber Mainnet Explorer", - "url": "https://cyberscan.co", + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", "standard": "EIP3091" } ], - "7575": [ + "662": [ { - "name": "ADIL Testnet Explorer", - "url": "https://testnet.adilchain-scan.io", + "name": "ultronsmartchain explorer", + "url": "https://scan.ultronsmartchain.io", "standard": "EIP3091" } ], - "7576": [ + "667": [ { - "name": "ADIL Mainnet Explorer", - "url": "https://adilchain-scan.io", + "name": "blockscout", + "url": "https://arrakis.gorengine.com", + "icon": "laos", "standard": "EIP3091" } ], - "7668": [ + "668": [ { - "name": "rootnet", - "url": "https://explorer.rootnet.live", + "name": "JuncaScan", + "url": "https://scan.juncachain.com", "standard": "EIP3091" } ], - "7672": [ + "669": [ { - "name": "rootnet", - "url": "https://explorer.rootnet.cloud", + "name": "JuncaScan", + "url": "https://scan-testnet.juncachain.com", "standard": "EIP3091" } ], - "7700": [ - { - "name": "Canto Explorer (OKLink)", - "url": "https://www.oklink.com/canto", - "standard": "EIP3091" - }, + "686": [ { - "name": "Canto EVM Explorer (Blockscout)", - "url": "https://tuber.build", + "name": "blockscout", + "url": "https://blockscout.karura.network", "standard": "EIP3091" - }, + } + ], + "690": [ { - "name": "dexguru", - "url": "https://canto.dex.guru", - "icon": "dexguru", + "name": "blockscout", + "url": "https://explorer.redstone.xyz", + "icon": "blockscout", "standard": "EIP3091" } ], - "7701": [ - { - "name": "Canto Testnet EVM Explorer (Blockscout)", - "url": "https://testnet.tuber.build", - "standard": "none" - }, + "700": [ { - "name": "dexguru", - "url": "https://canto-test.dex.guru", - "icon": "dexguru", + "name": "starscan", + "url": "https://avastar.info", "standard": "EIP3091" } ], - "7771": [ + "701": [ { - "name": "Bitrock Testnet Explorer", - "url": "https://testnetscan.bit-rock.io", + "name": "blockscout", + "url": "https://koi-scan.darwinia.network", "standard": "EIP3091" } ], - "7775": [ + "707": [ { - "name": "GDCC", - "url": "https://testnet.gdccscan.io", - "standard": "none" + "name": "BlockChain Station Explorer", + "url": "https://explorer.bcsdev.io", + "standard": "EIP3091" } ], - "7777": [ + "708": [ { - "name": "avascan", - "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - "standard": "none" + "name": "BlockChain Station Explorer", + "url": "https://testnet.bcsdev.io", + "standard": "EIP3091" } ], - "7778": [ + "710": [ { - "name": "ORE Mainnet Explorer", - "icon": "ore", - "url": "https://oreniumscan.org", - "standard": "none" + "name": "Furya EVM Explorer", + "url": "https://explorer.furya.io", + "standard": "EIP3091", + "icon": "highbury" } ], - "7798": [ + "713": [ { - "name": "OpenEX Long Testnet Explorer", - "url": "https://scan.long.openex.network", - "icon": "oex", + "name": "vrcscan", + "url": "https://vrcscan.com", + "standard": "EIP3091" + }, + { + "name": "dxbscan", + "url": "https://dxb.vrcscan.com", "standard": "EIP3091" } ], - "7860": [ + "719": [ { - "name": "maalscan testnet", - "url": "https://testnet.maalscan.io", + "name": "shibscan", + "url": "https://puppyscan.shib.io", "standard": "EIP3091" } ], - "7878": [ + "721": [ { - "name": "Hazlor Testnet Explorer", - "url": "https://explorer.hazlor.com", - "standard": "none" + "name": "blockscout", + "url": "https://explorer.lycanchain.com", + "standard": "EIP3091" } ], - "7887": [ + "730": [ { - "name": "Kinto Explorer", - "url": "https://explorer.kinto.xyz", - "icon": "kinto", + "name": "Lovely Network Mainnet", + "url": "https://scan.lovely.network", "standard": "EIP3091" } ], - "7895": [ + "741": [ { - "name": "ARDENIUM Athena Explorer", - "icon": "ard", - "url": "https://testnet.ardscan.com", - "standard": "none" + "name": "ventionscan", + "url": "https://testnet.ventionscan.io", + "standard": "EIP3091" } ], - "7923": [ + "742": [ { - "name": "blockscout", - "url": "https://explorer.dotblox.io", + "name": "Script Explorer", + "url": "https://explorer.script.tv", "standard": "none" } ], - "7924": [ + "747": [ { - "name": "MO Explorer", - "url": "https://moscan.app", + "name": "Flow Diver", + "url": "https://flowdiver.io", "standard": "none" } ], - "7979": [ + "766": [ { - "name": "DOScan", - "url": "https://doscan.io", - "icon": "doschain", + "name": "QL1 Mainnet Explorer", + "url": "https://mainnet.qom.one", + "icon": "qom", "standard": "EIP3091" } ], - "8000": [ - { - "name": "Teleport EVM Explorer (Blockscout)", - "url": "https://evm-explorer.teleport.network", - "standard": "none", - "icon": "teleport" - }, + "776": [ { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.teleport.network", - "standard": "none", - "icon": "teleport" + "name": "OPEN CHAIN TESTNET", + "url": "https://testnet.openchain.info", + "standard": "none" } ], - "8001": [ - { - "name": "Teleport EVM Explorer (Blockscout)", - "url": "https://evm-explorer.testnet.teleport.network", - "standard": "none", - "icon": "teleport" - }, + "786": [ { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.testnet.teleport.network", - "standard": "none", - "icon": "teleport" + "name": "maalscan", + "url": "https://maalscan.io", + "standard": "EIP3091" } ], - "8047": [ + "787": [ { - "name": "BOAT Mainnet Explorer", - "url": "https://scan.come.boats", - "icon": "boat", + "name": "blockscout", + "url": "https://blockscout.acala.network", "standard": "EIP3091" } ], - "8054": [ + "788": [ { - "name": "Karak Sepolia Explorer", - "url": "https://explorer.sepolia.karak.network", + "name": "aeroscan", + "url": "https://testnet.aeroscan.id", "standard": "EIP3091" } ], - "8080": [ + "789": [ { - "name": "Shardeum Scan", - "url": "https://explorer-liberty10.shardeum.org", + "name": "patexscan", + "url": "https://patexscan.io", + "icon": "patex", "standard": "EIP3091" } ], - "8081": [ + "799": [ { - "name": "Shardeum Scan", - "url": "https://explorer-liberty20.shardeum.org", + "name": "rupayascan", + "url": "https://scan.testnet.rupaya.io", "standard": "EIP3091" } ], - "8082": [ + "800": [ { - "name": "Shardeum Scan", - "url": "https://explorer-sphinx.shardeum.org", - "standard": "EIP3091" + "name": "Lucid Explorer", + "url": "https://explorer.lucidcoin.io", + "standard": "none" } ], - "8131": [ + "810": [ { - "name": "meerscan testnet", - "icon": "meer", - "url": "https://testnet-qng.qitmeer.io", + "name": "Haven1 Explorer", + "url": "https://testnet-explorer.haven1.org", + "icon": "haven1", "standard": "EIP3091" } ], - "8181": [ + "813": [ { - "name": "Testnet BeOne Chain", - "url": "https://testnet.beonescan.com", - "icon": "beonechain", - "standard": "none" - } - ], - "8192": [ + "name": "meerscan", + "icon": "meer", + "url": "https://qng.qitmeer.io", + "standard": "EIP3091" + }, { - "name": "blockscout", - "url": "https://toruscan.com", - "icon": "blockscout", + "name": "meerscan", + "icon": "meer", + "url": "https://qng.meerscan.io", "standard": "EIP3091" } ], - "8194": [ + "818": [ { - "name": "blockscout", - "url": "https://testnet.toruscan.com", - "icon": "blockscout", + "name": "BeOne Chain Mainnet", + "url": "https://beonescan.com", "standard": "EIP3091" } ], - "8217": [ - { - "name": "Klaytnscope", - "url": "https://scope.klaytn.com", - "standard": "EIP3091" - }, + "822": [ { - "name": "Klaytnfinder", - "url": "https://klaytnfinder.io", + "name": "RunicScan", + "url": "https://scan.runic.build", + "icon": "runic-testnet", "standard": "EIP3091" } ], - "8227": [ - { - "name": "SPACE Explorer", - "url": "https://subnets.avax.network/space", - "standard": "EIP3091" + "831": [ + { + "name": "CDT Explorer", + "url": "https://explorer.checkdot.io", + "standard": "none" } ], - "8272": [ + "841": [ { - "name": "Blockton Explorer", - "url": "https://blocktonscan.com", + "name": "Taraxa Explorer", + "url": "https://explorer.mainnet.taraxa.io", "standard": "none" } ], - "8329": [ + "842": [ { - "name": "Lorenzo Explorer", - "url": "https://scan.lorenzo-protocol.xyz", - "standard": "none", - "icon": "lorenzo" + "name": "Taraxa Explorer", + "url": "https://explorer.testnet.taraxa.io", + "standard": "none" } ], - "8453": [ + "859": [ { - "name": "basescan", - "url": "https://basescan.org", + "name": "Zeeth Explorer Dev", + "url": "https://explorer.dev.zeeth.io", "standard": "none" - }, - { - "name": "basescout", - "url": "https://base.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - }, + } + ], + "868": [ { - "name": "dexguru", - "url": "https://base.dex.guru", - "icon": "dexguru", + "name": "FSCScan", + "url": "https://explorer.fantasiachain.com", "standard": "EIP3091" } ], - "8668": [ + "876": [ { - "name": "Hela Official Runtime Mainnet Explorer", - "url": "https://mainnet-blockexplorer.helachain.com", + "name": "Bandai Namco Research Verse Explorer", + "url": "https://explorer.main.oasvrs.bnken.net", "standard": "EIP3091" } ], - "8723": [ + "877": [ { - "name": "OLO Block Explorer", - "url": "https://www.olo.network", + "name": "dxtscan", + "url": "https://dxtscan.com", "standard": "EIP3091" } ], - "8726": [ + "880": [ { - "name": "Storscan", - "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", + "name": "Ambros Chain Explorer", + "url": "https://ambrosscan.com", "standard": "none" } ], - "8727": [ + "898": [ { - "name": "Storscan", - "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", - "standard": "none" + "name": "Maxi Chain Testnet Explorer", + "url": "https://testnet.maxi.network", + "standard": "EIP3091" } ], - "8738": [ + "899": [ { - "name": "alphscan", - "url": "https://explorer.alph.network", + "name": "Maxi Chain Mainnet Explorer", + "url": "https://mainnet.maxi.network", "standard": "EIP3091" } ], - "8822": [ + "900": [ { "name": "explorer", - "url": "https://explorer.evm.iota.org", - "icon": "iotaevm", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", "standard": "EIP3091" } ], - "8844": [ + "901": [ { - "name": "Hydra Chain Testnet explorer", - "url": "https://hydragon.hydrachain.org", - "icon": "hydra", + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", "standard": "EIP3091" } ], - "8848": [ + "902": [ { - "name": "MARO Scan", - "url": "https://scan.ma.ro/#", - "standard": "none" + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" } ], - "8866": [ + "903": [ { - "name": "Lumio explorer", - "url": "https://explorer.lumio.io", - "standard": "none" + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" } ], - "8880": [ + "911": [ { - "name": "Unique Scan", - "url": "https://uniquescan.io/unique", - "standard": "none" + "name": "TAPROOT Scan", + "url": "https://scan.taprootchain.io", + "icon": "taproot", + "standard": "EIP3091" } ], - "8881": [ + "917": [ { - "name": "Unique Scan / Quartz", - "url": "https://uniquescan.io/quartz", - "standard": "none" + "name": "FireScan", + "url": "https://rinia.firescan.io", + "standard": "EIP3091" } ], - "8882": [ + "919": [ { - "name": "Unique Scan / Opal", - "url": "https://uniquescan.io/opal", + "name": "modescout", + "url": "https://sepolia.explorer.mode.network", "standard": "none" } ], - "8883": [ + "927": [ { - "name": "Unique Scan / Sapphire", - "url": "https://uniquescan.io/sapphire", - "standard": "none" + "name": "Yidarkscan", + "url": "https://yidarkscan.com", + "standard": "EIP3091" } ], - "8888": [ + "943": [ { - "name": "XANAChain", - "url": "https://xanachain.xana.net", + "name": "blockscout", + "url": "https://scan.v4.testnet.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://otter-testnet-pulsechain.g4mm4.io", "standard": "EIP3091" } ], - "8890": [ + "957": [ { - "name": "ORE Testnet Explorer", - "icon": "ore", - "url": "https://testnet.oreniumscan.org", - "standard": "none" + "name": "Lyra Explorer", + "url": "https://explorer.lyra.finance", + "icon": "lyra", + "standard": "EIP3091" } ], - "8898": [ + "963": [ { - "name": "mmtscan", - "url": "https://mmtscan.io", - "standard": "EIP3091", - "icon": "mmt" + "name": "blockscout", + "url": "https://scan.bitcoincode.technology", + "standard": "EIP3091" } ], - "8899": [ + "969": [ { - "name": "JIBCHAIN Explorer", - "url": "https://exp-l1.jibchain.net", + "name": "EthXY Network Explorer", + "url": "https://explorer.ethxy.com", "standard": "EIP3091" } ], - "8911": [ + "970": [ { - "name": "algscan", - "url": "https://scan.algen.network", - "icon": "alg", - "standard": "EIP3091" + "name": "Oort Mainnet Explorer", + "url": "https://mainnet-scan.oortech.com", + "standard": "none", + "icon": "oort" } ], - "8912": [ + "972": [ { - "name": "algscan", - "url": "https://scan.test.algen.network", - "icon": "alg", - "standard": "EIP3091" + "name": "Oort Ascraeus Explorer", + "url": "https://ascraeus-scan.oortech.com", + "standard": "none", + "icon": "oort" } ], - "8921": [ + "979": [ { - "name": "algl2scan", - "url": "https://scan.alg2.algen.network", - "icon": "algl2", + "name": "EthXY Testnet Network Explorer", + "url": "https://explorer.testnet.ethxy.com", "standard": "EIP3091" } ], - "8922": [ + "980": [ { - "name": "algl2scan", - "url": "https://scan.alg2-test.algen.network", - "icon": "algl2", - "standard": "EIP3091" + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" } ], - "8989": [ + "985": [ { - "name": "gmmtscan", - "url": "https://scan.gmmtchain.io", - "standard": "EIP3091", - "icon": "gmmt" + "name": "Memo Mainnet Explorer", + "url": "https://scan.metamemo.one:8080", + "icon": "memo", + "standard": "EIP3091" } ], - "9000": [ + "989": [ { - "name": "Evmos Explorer (Escan)", - "url": "https://testnet.escan.live", - "standard": "none", - "icon": "evmos" + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" } ], - "9001": [ + "990": [ { - "name": "Evmos Explorer (Escan)", - "url": "https://escan.live", - "standard": "none", - "icon": "evmos" + "name": "eLiberty Mainnet", + "url": "https://explorer.eliberty.ngo", + "standard": "EIP3091" } ], - "9007": [ + "997": [ { - "name": "Shidoblock Testnet Explorer", - "url": "https://testnet.shidoscan.com", + "name": "5ireChain Explorer", + "url": "https://explorer.5ire.network", "standard": "none", - "icon": "shidoChain" + "icon": "5ireChain" } ], - "9008": [ + "998": [ { - "name": "Shidoblock Mainnet Explorer", - "url": "https://shidoscan.com", - "standard": "none", - "icon": "shidoChain" + "name": "blockscout", + "url": "https://explorer.luckynetwork.org", + "standard": "none" + }, + { + "name": "expedition", + "url": "https://lnscan.org", + "standard": "none" } ], - "9012": [ + "1000": [ { - "name": "berylbit-explorer", - "url": "https://explorer.berylbit.io", + "name": "GTON Network Explorer", + "url": "https://explorer.gton.network", "standard": "EIP3091" } ], - "9024": [ + "1001": [ { - "name": "Nexablock Testnet Explorer", - "url": "https://testnet.nexablockscan.io", - "standard": "none", - "icon": "nexaChain" + "name": "Klaytnscope", + "url": "https://baobab.klaytnscope.com", + "standard": "EIP3091" + }, + { + "name": "Klaytnfinder", + "url": "https://baobab.klaytnfinder.io", + "standard": "EIP3091" } ], - "9025": [ + "1003": [ { - "name": "Nexablock Mainnet Explorer", - "url": "https://nexablockscan.io", - "standard": "none", - "icon": "nexaChain" + "name": "Tectum explorer", + "url": "https://explorer.tectum.io", + "icon": "Tettoken256", + "standard": "EIP3091" } ], - "9223": [ + "1004": [ { - "name": "Codefin Net Explorer", - "url": "https://explorer.codefin.pro", + "name": "test-ektascan", + "url": "https://test.ektascan.io", + "icon": "ekta", "standard": "EIP3091" } ], - "9339": [ + "1008": [ { - "name": "Dogcoin", - "url": "https://testnet.dogcoin.network", - "standard": "EIP3091" + "name": "eurusexplorer", + "url": "https://explorer.eurus.network", + "icon": "eurus", + "standard": "none" } ], - "9393": [ + "1009": [ { - "name": "basescout", - "url": "https://sepolia-delascan.deperp.com", - "icon": "blockscout", + "name": "Jumboscan", + "url": "https://jumboscan.jumbochain.org", "standard": "EIP3091" } ], - "9395": [ + "1011": [ { - "name": "Evoke SmartChain Explorer", - "url": "https://explorer.evokescan.org", - "standard": "EIP3091" + "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" } ], - "9527": [ + "1028": [ { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", + "name": "testbttcscan", + "url": "https://testscan.bittorrentchain.io", "standard": "none" } ], - "9528": [ + "1030": [ { - "name": "QEasyWeb3 Explorer", - "url": "https://www.qeasyweb3.com", + "name": "Conflux Scan", + "url": "https://evm.confluxscan.net", + "standard": "none" + } + ], + "1031": [ + { + "name": "proxy network testnet", + "url": "http://testnet-explorer.theproxy.network", "standard": "EIP3091" } ], - "9559": [ + "1038": [ { - "name": "Neon Blockchain Explorer", - "url": "https://testnet-scan.neonlink.io", - "standard": "EIP3091", - "icon": "neonlink" + "name": "Bronos Testnet Explorer", + "url": "https://tbroscan.bronos.org", + "standard": "none", + "icon": "bronos" } ], - "9700": [ + "1039": [ { - "name": "Oort MainnetDev Scan", - "url": "https://dev-scan.oortech.com", + "name": "Bronos Explorer", + "url": "https://broscan.bronos.org", "standard": "none", - "icon": "oort" + "icon": "bronos" } ], - "9728": [ + "1073": [ { - "name": "Boba BNB Testnet block explorer", - "url": "https://testnet.bobascan.com", - "standard": "none" + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" } ], - "9768": [ + "1075": [ { - "name": "MainnetZ", - "url": "https://testnet.mainnetz.io", + "name": "explorer", + "url": "https://explorer.evm.testnet.iotaledger.net", "standard": "EIP3091" } ], - "9779": [ + "1079": [ { - "name": "Pepe Explorer", - "url": "https://explorer.pepenetwork.io", - "icon": "pepenetwork", - "standard": "none" + "name": "explorer", + "url": "https://subnets-test.avax.network/mintara", + "standard": "EIP3091" } ], - "9789": [ + "1080": [ { - "name": "Tabi Testnet Explorer", - "url": "https://testnet.tabiscan.com", - "standard": "none" + "name": "explorer", + "url": "https://subnets.avax.network/mintara", + "standard": "EIP3091" } ], - "9797": [ + "1088": [ { - "name": "OptimusZ7 Mainnet Explorer", - "url": "https://explorer.optimusz7.com", + "name": "blockscout", + "url": "https://andromeda-explorer.metis.io", "standard": "EIP3091" } ], - "9818": [ + "1089": [ { - "name": "IMPERIUM TESTNET Explorer", - "icon": "timp", - "url": "https://network.impscan.com", + "name": "explorer.guru", + "url": "https://humans.explorers.guru", + "icon": "humans", "standard": "none" } ], - "9819": [ + "1099": [ { - "name": "IMPERIUM Explorer", - "icon": "imp", - "url": "https://impscan.com", + "name": "moac explorer", + "url": "https://explorer.moac.io", "standard": "none" } ], - "9888": [ + "1100": [ { - "name": "Dogelayer mainnet explorer", - "url": "https://dl-explorer.dogelayer.org", + "name": "dym.fyi", + "url": "https://dym.fyi", "standard": "EIP3091" } ], - "9898": [ + "1101": [ { - "name": "Larissa Scan", - "url": "https://scan.larissa.network", + "name": "blockscout", + "url": "https://zkevm.polygonscan.com", + "icon": "zkevm", "standard": "EIP3091" } ], - "9911": [ + "1107": [ { - "name": "escscan", - "url": "https://escscan.com", - "icon": "espento", - "standard": "EIP3091" + "name": "BLXq Explorer", + "url": "https://explorer.blx.org", + "icon": "blxq", + "standard": "none" } ], - "9977": [ + "1108": [ { - "name": "Mind Chain explorer", - "url": "https://testnet.mindscan.info", + "name": "BLXq Explorer", + "url": "https://explorer.blxq.org", + "icon": "blxq", "standard": "EIP3091" } ], - "9980": [ + "1111": [ { - "name": "combotrace explorer", - "url": "https://combotrace.nodereal.io", + "name": "WEMIX Block Explorer", + "url": "https://explorer.wemix.com", "standard": "EIP3091" } ], - "9981": [ + "1112": [ { - "name": "Volley Mainnet Explorer", - "url": "https://volleyscan.io", + "name": "WEMIX Testnet Microscope", + "url": "https://microscope.test.wemix.com", "standard": "EIP3091" } ], - "9990": [ - { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", - "standard": "none" - }, + "1113": [ { - "name": "Subscan", - "url": "https://agung.subscan.io", - "standard": "none" + "name": "B2 Hub Habitat Testnet Explorer", + "url": "https://testnet-hub-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" } ], - "9996": [ + "1115": [ { - "name": "Mind Chain explorer", - "url": "https://mainnet.mindscan.info", + "name": "Core Scan Testnet", + "url": "https://scan.test.btcs.network", + "icon": "core", "standard": "EIP3091" } ], - "9997": [ + "1116": [ { - "name": "blockscout", - "url": "https://testnet-rollup-explorer.altlayer.io", - "icon": "blockscout", + "name": "Core Scan", + "url": "https://scan.coredao.org", + "icon": "core", "standard": "EIP3091" } ], - "10024": [ + "1117": [ { - "name": "Gon Explorer", - "url": "https://gonscan.com", - "standard": "none" + "name": "Dogcoin", + "url": "https://explorer.dogcoin.network", + "standard": "EIP3091" } ], - "10081": [ + "1123": [ { - "name": "Testnet Block Explorer", - "url": "https://explorer.testnet.japanopenchain.org", + "name": "blockscout", + "url": "https://testnet-explorer.bsquared.network", + "icon": "bsquare", "standard": "EIP3091" } ], - "10200": [ + "1133": [ { - "name": "blockscout-chiadochain", - "url": "https://blockscout.chiadochain.net", - "icon": "blockscout", + "name": "MetaScan", + "url": "https://meta.defiscan.live", "standard": "EIP3091" - }, + } + ], + "1135": [ { "name": "blockscout", - "url": "https://gnosis-chiado.blockscout.com", + "url": "https://blockscout.lisk.com", "icon": "blockscout", "standard": "EIP3091" } ], - "10201": [ + "1138": [ { - "name": "MaxxChain Block Explorer", - "url": "https://explorer.maxxchain.org", + "name": "amstarscan-testnet", + "url": "https://testnet.amstarscan.com", "standard": "EIP3091" } ], - "10222": [ + "1147": [ { - "name": "GLScan Explorer", - "url": "https://glscan.io", - "standard": "none", - "icon": "glc" + "name": "Flag Testnet Explorer", + "url": "https://testnet-explorer.flagscan.xyz", + "standard": "EIP3091" } ], - "10242": [ + "1149": [ { - "name": "blockscout", - "url": "https://explorer.arthera.net", - "icon": "blockscout", + "name": "Plexchain Explorer", + "url": "https://explorer.plexfinance.us", + "icon": "plexchain", "standard": "EIP3091" } ], - "10243": [ + "1170": [ { - "name": "blockscout", - "url": "https://explorer-test.arthera.net", - "icon": "blockscout", + "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" } ], - "10248": [ + "1188": [ { - "name": "0xtrade Scan", - "url": "https://www.0xtscan.com", + "name": "mosscan", + "url": "https://www.mosscan.com", + "icon": "clubmos", "standard": "none" } ], - "10321": [ + "1197": [ { - "name": "TAO Mainnet Explorer", - "url": "https://taoscan.org", + "name": "ioraexplorer", + "url": "https://explorer.iorachain.com", "standard": "EIP3091" } ], - "10324": [ + "1200": [ { - "name": "TAO Testnet Explorer", - "url": "https://testnet.taoscan.org", + "name": "Cuckoo Chain Explorer", + "url": "https://mainnet-scan.cuckoo.network", "standard": "EIP3091" } ], - "10395": [ + "1202": [ { - "name": "Worldland Explorer", - "url": "https://testscan.worldland.foundation", + "name": "WTTScout", + "url": "https://explorer.cadaut.com", "standard": "EIP3091" } ], - "10507": [ + "1209": [ { - "name": "ethernal", - "url": "https://mainnet.num.network", - "standard": "EIP3091" + "name": "Saitascan explorer", + "url": "https://saitascan.io", + "standard": "none", + "icon": "SaitaBlockChain(SBC)" } ], - "10508": [ + "1210": [ { - "name": "ethernal", - "url": "https://testnet.num.network", + "name": "Cuckoo Sepolia Explorer", + "url": "https://testnet-scan.cuckoo.network", "standard": "EIP3091" } ], - "10823": [ + "1213": [ { - "name": "CCP Explorer", - "url": "https://cryptocoinpay.info", - "standard": "EIP3091" + "name": "popcateum explorer", + "url": "https://explorer.popcateum.org", + "standard": "none" } ], - "10849": [ + "1214": [ { - "name": "Lamina1 Explorer", - "url": "https://subnets.avax.network/lamina1", + "name": "Enter Explorer - Expenter", + "url": "https://explorer.entercoin.net", + "icon": "enter", "standard": "EIP3091" } ], - "10850": [ + "1225": [ { - "name": "Lamina1 Identity Explorer", - "url": "https://subnets.avax.network/lamina1id", + "name": "Hybrid Testnet", + "url": "https://explorer.buildonhybrid.com", "standard": "EIP3091" } ], - "10946": [ + "1229": [ { - "name": "explorer", - "url": "https://explorer.quadrans.io", - "icon": "quadrans", + "name": "blockscout", + "url": "https://exzoscan.io", "standard": "EIP3091" } ], - "10947": [ + "1230": [ { - "name": "explorer", - "url": "https://explorer.testnet.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" + "name": "Ultron Testnet Explorer", + "url": "https://explorer.ultron-dev.io", + "icon": "ultron", + "standard": "none" } ], - "11110": [ - { - "name": "Astra EVM Explorer (Blockscout)", - "url": "https://explorer.astranaut.io", - "standard": "none", - "icon": "astra" - }, + "1231": [ { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.io/astra", - "standard": "none", - "icon": "astra" + "name": "Ultron Explorer", + "url": "https://ulxscan.com", + "icon": "ultron", + "standard": "none" } ], - "11111": [ + "1234": [ { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets-test.avax.network/wagmi", + "name": "StepScan", + "url": "https://stepscan.io", + "icon": "step", "standard": "EIP3091" } ], - "11115": [ + "1235": [ { - "name": "Astra EVM Explorer", - "url": "https://explorer.astranaut.dev", - "standard": "EIP3091", - "icon": "astra" - }, + "name": "ITX Mainnet Explorer (Blockscout)", + "url": "https://explorer.itxchain.com", + "standard": "EIP3091" + } + ], + "1243": [ { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.dev/astra", - "standard": "none", - "icon": "astra" + "name": "archiescan", + "url": "https://app.archiescan.io", + "standard": "none" } ], - "11119": [ + "1244": [ { - "name": "hashbitscan", - "url": "https://explorer.hashbit.org", - "standard": "EIP3091" + "name": "archiescan", + "url": "https://testnet.archiescan.io", + "standard": "none" } ], - "11221": [ + "1246": [ { - "name": "shinescan", - "url": "https://shinescan.io", - "icon": "shine", + "name": "OMSCAN - Expenter", + "url": "https://omscan.omplatform.com", "standard": "none" } ], - "11227": [ + "1248": [ { - "name": "JIRITSUTES Explorer", - "url": "https://subnets-test.avax.network/jiritsutes", + "name": "DogetherExplorer", + "url": "https://explorer.dogether.dog", "standard": "EIP3091" } ], - "11235": [ + "1252": [ { - "name": "Mainnet HAQQ Explorer", - "url": "https://explorer.haqq.network", + "name": "CICscan", + "url": "https://testnet.cicscan.com", + "icon": "cicchain", "standard": "EIP3091" } ], - "11437": [ + "1280": [ { - "name": "Shyft Testnet BX", - "url": "https://bx.testnet.shyft.network", - "standard": "EIP3091" + "name": "HALOexplorer", + "url": "https://browser.halo.land", + "standard": "none" } ], - "11501": [ + "1284": [ { - "name": "bevm mainnet scan", - "url": "https://scan-mainnet.bevm.io", + "name": "moonscan", + "url": "https://moonbeam.moonscan.io", "standard": "none" } ], - "11503": [ + "1285": [ { - "name": "bevm testnet scan", - "url": "https://scan-testnet.bevm.io", + "name": "moonscan", + "url": "https://moonriver.moonscan.io", "standard": "none" } ], - "11612": [ + "1287": [ { - "name": "Sardis", - "url": "https://testnet.sardisnetwork.com", + "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" } ], - "11822": [ + "1314": [ { - "name": "ArtelaScan", - "url": "https://betanet-scan.artela.network", + "name": "alyxscan", + "url": "https://www.alyxscan.com", "standard": "EIP3091" } ], - "11891": [ + "1319": [ { - "name": "Polygon Supernet Arianee Explorer", - "url": "https://polygonsupernet.explorer.arianee.net", + "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" } ], - "12009": [ + "1329": [ { - "name": "SatoshiChain Explorer", - "url": "https://satoshiscan.io", + "name": "Seitrace", + "url": "https://seitrace.com", "standard": "EIP3091" } ], - "12020": [ + "1338": [ { - "name": "blockscout", - "url": "https://explorer.aternoschain.com", - "icon": "blockscout", - "standard": "EIP3091" + "name": "Elysium testnet explorer", + "url": "https://elysium-explorer.vulcanforged.com", + "standard": "none" } ], - "12051": [ + "1339": [ { - "name": "zeroscan", - "url": "https://betaenv.singularity.gold:18002", - "standard": "EIP3091" + "name": "Elysium mainnet explorer", + "url": "https://explorer.elysiumchain.tech", + "standard": "none" } ], - "12052": [ + "1343": [ { - "name": "zeroscan", - "url": "https://zeroscan.singularity.gold", + "name": "BLITZ Explorer", + "url": "https://subnets-test.avax.network/blitz", "standard": "EIP3091" } ], - "12123": [ + "1353": [ { - "name": "BRC Chain Explorer", - "url": "https://scan.brcchain.io", + "name": "CICscan", + "url": "https://cicscan.com", + "icon": "cicchain", "standard": "EIP3091" } ], - "12306": [ + "1369": [ { - "name": "fiboscan", - "url": "https://scan.fibochain.org", - "standard": "EIP3091" + "name": "zafirium-explorer", + "url": "https://explorer.zakumi.io", + "standard": "none" } ], - "12324": [ + "1370": [ { - "name": "L3X Mainnet Explorer", - "url": "https://explorer.l3x.com", + "name": "ramascan", + "url": "https://ramascan.com", + "icon": "ramestta", "standard": "EIP3091" } ], - "12325": [ + "1377": [ { - "name": "L3X Testnet Explorer", - "url": "https://explorer-testnet.l3x.com", + "name": "Pingaksha", + "url": "https://pingaksha.ramascan.com", + "icon": "ramestta", "standard": "EIP3091" } ], - "12345": [ + "1379": [ { - "name": "StepScan", - "url": "https://testnet.stepscan.io", - "icon": "step", + "name": "kalarscan", + "url": "https://explorer.kalarchain.tech", + "icon": "kalarscan", "standard": "EIP3091" } ], - "12553": [ + "1388": [ { - "name": "RSS3 VSL Scan", - "url": "https://scan.rss3.io", + "name": "amstarscan", + "url": "https://mainnet.amstarscan.com", "standard": "EIP3091" } ], - "12715": [ + "1392": [ { - "name": "Rikeza Blockchain explorer", - "url": "https://testnet.rikscan.com", + "name": "BlockExplorer", + "url": "https://www.blockexplorer.com", "standard": "EIP3091" } ], - "12781": [ + "1433": [ { - "name": "Playdapp Testnet Explorer", - "url": "https://subnets-test.avax.network/playdappte", + "name": "Rikeza Blockchain explorer", + "url": "https://rikscan.com", "standard": "EIP3091" } ], - "12890": [ + "1442": [ { - "name": "Quantum Scan Testnet", - "url": "https://testnet.quantumscan.org", + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", "standard": "EIP3091" } ], - "12898": [ + "1452": [ { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets-test.avax.network/letsplayfair", + "name": "GIL Explorer", + "url": "https://explorer.giltestnet.com", "standard": "EIP3091" } ], - "13000": [ + "1453": [ { - "name": "SPS Explorer", - "url": "http://spsscan.ssquad.games", + "name": "MetaExplorer", + "url": "https://istanbul-explorer.metachain.dev", "standard": "EIP3091" } ], - "13308": [ + "1455": [ { - "name": "Creditscan", - "url": "https://scan.creditsmartchain.com", - "icon": "credit", - "standard": "EIP3091" + "name": "Ctex Scan Explorer", + "url": "https://ctexscan.com", + "standard": "none" } ], - "13337": [ + "1490": [ { - "name": "Beam Explorer", - "url": "https://subnets-test.avax.network/beam", + "name": "Vitruveo Explorer", + "url": "https://explorer.vitruveo.xyz", + "icon": "vitruveo", "standard": "EIP3091" } ], - "13371": [ + "1499": [ { - "name": "Immutable explorer", - "url": "https://explorer.immutable.com", - "standard": "EIP3091", - "icon": "immutable" + "name": "IGC-Scan", + "url": "https://igcscan.com", + "standard": "EIP3091" } ], - "13381": [ + "1501": [ { - "name": "phoenixplorer", - "url": "https://phoenixplorer.com", - "standard": "EIP3091" + "name": "bevm canary scan", + "url": "https://scan-canary.bevm.io", + "standard": "none" } ], - "13396": [ + "1506": [ { - "name": "Masa Explorer", - "url": "https://subnets.avax.network/masa", - "standard": "EIP3091" + "name": "Sherpax Mainnet Explorer", + "url": "https://evm.sherpax.io", + "standard": "none" } ], - "13473": [ + "1507": [ { - "name": "Immutable Testnet explorer", - "url": "https://explorer.testnet.immutable.com", - "standard": "EIP3091", - "icon": "immutable" + "name": "Sherpax Testnet Explorer", + "url": "https://evm-pre.sherpax.io", + "standard": "none" } ], - "13505": [ + "1515": [ { - "name": "Gravity Alpha Testnet Sepolia Explorer", - "url": "https://explorer-sepolia.gravity.xyz", + "name": "Beagle Messaging Chain Explorer", + "url": "https://eth.beagle.chat", "standard": "EIP3091" } ], - "13600": [ + "1559": [ { - "name": "qbitscan", - "url": "https://explorer.qbitscan.com", - "icon": "kronobit", + "name": "TenetScan Mainnet", + "url": "https://tenetscan.io", + "icon": "tenet", "standard": "EIP3091" } ], - "13812": [ + "1617": [ { - "name": "Susono", - "url": "http://explorer.opn.network", + "name": "Ethereum Inscription Explorer", + "url": "https://explorer.etins.org", "standard": "none" } ], - "14000": [ + "1625": [ { - "name": "SPS Test Explorer", - "url": "https://explorer.3sps.net", + "name": "Gravity Alpha Mainnet Explorer", + "url": "https://explorer.gravity.xyz", "standard": "EIP3091" } ], - "14324": [ + "1662": [ { - "name": "Evolve Testnet Explorer", - "url": "https://testnet.evolveblockchain.io", + "name": "Liquichain Mainnet", + "url": "https://mainnet.liquichain.io", "standard": "EIP3091" } ], - "14333": [ + "1663": [ { - "name": "Vitruveo Testnet Explorer", - "url": "https://test-explorer.vitruveo.xyz", - "icon": "vitruveo", + "name": "Gobi Testnet Block Explorer", + "url": "https://gobi-explorer.horizen.io", + "icon": "eon", "standard": "EIP3091" } ], - "14801": [ + "1686": [ { - "name": "satoriscan", - "url": "https://satori.vanascan.io", + "name": "blockscout", + "url": "https://testnet-explorer.mintchain.io", + "icon": "mintTestnet", "standard": "EIP3091" } ], - "15003": [ - { - "name": "Immutable Devnet explorer", - "url": "https://explorer.dev.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } - ], - "15257": [ + "1687": [ { - "name": "Poodl Testnet Explorer", - "url": "https://testnet.poodl.org", + "name": "blockscout", + "url": "https://sepolia-testnet-explorer.mintchain.io", + "icon": "mintTestnet", "standard": "EIP3091" } ], - "15259": [ + "1701": [ { - "name": "Poodl Mainnet Explorer", - "url": "https://explorer.poodl.org", + "name": "Anytype Explorer", + "url": "https://explorer.anytype.io", + "icon": "any", "standard": "EIP3091" } ], - "15551": [ + "1707": [ { - "name": "loopscan", - "url": "http://explorer.mainnetloop.com", - "standard": "none" + "name": "blockscout", + "url": "https://exp.blockchain.or.th", + "standard": "EIP3091" } ], - "15555": [ + "1708": [ { - "name": "Trust EVM Explorer", - "url": "https://trustscan.one", + "name": "blockscout", + "url": "https://exp.testnet.blockchain.or.th", "standard": "EIP3091" } ], - "15557": [ + "1717": [ { - "name": "EOS EVM Explorer", - "url": "https://explorer.testnet.evm.eosnetwork.com", + "name": "Doric Explorer", + "url": "https://explorer.doric.network", "standard": "EIP3091" } ], - "16116": [ + "1718": [ { - "name": "DeFiVerse Explorer", - "url": "https://scan.defi-verse.org", - "icon": "defiverse", - "standard": "EIP3091" + "name": "Palettescan", + "url": "https://palettescan.com", + "icon": "PLT", + "standard": "none" } ], - "16507": [ + "1729": [ { - "name": "GchainExplorer", - "url": "https://gchainexplorer.genesys.network", + "name": "Reya Network Explorer", + "url": "https://explorer.reya.network", "standard": "EIP3091" } ], - "16688": [ + "1740": [ { - "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", - "url": "https://nyancat.iobscan.io", - "standard": "none", - "icon": "nyancat" + "name": "blockscout", + "url": "https://testnet.explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" } ], - "16718": [ + "1750": [ { - "name": "AirDAO Network Explorer", - "url": "https://airdao.io/explorer", - "standard": "none" + "name": "blockscout", + "url": "https://explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" } ], - "16888": [ + "1773": [ { - "name": "ivarscan", - "url": "https://testnet.ivarscan.com", + "name": "PartyExplorer", + "url": "https://partyexplorer.co", + "icon": "grams", "standard": "EIP3091" } ], - "17000": [ - { - "name": "Holesky Explorer", - "url": "https://holesky.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" - }, + "1777": [ { - "name": "otterscan-holesky", - "url": "https://holesky.otterscan.io", - "icon": "ethereum", + "name": "Gauss Explorer", + "url": "https://explorer.gaussgang.com", "standard": "EIP3091" - }, + } + ], + "1789": [ { - "name": "Holesky Etherscan", - "url": "https://holesky.etherscan.io", - "icon": "ethereum", + "name": "ZKbase Block Explorer", + "url": "https://sepolia-explorer.zkbase.app", + "icon": "zkbase", "standard": "EIP3091" } ], - "17069": [ + "1804": [ { - "name": "blockscout", - "url": "https://explorer.garnetchain.com", - "icon": "blockscout", + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/kerleano", + "icon": "pocr", "standard": "EIP3091" } ], - "17117": [ + "1807": [ { - "name": "DeFiVerse Testnet Explorer", - "url": "https://scan-testnet.defi-verse.org", - "icon": "defiverse", - "standard": "EIP3091" + "name": "blockscout", + "url": "https://rabbit.analogscan.com", + "standard": "none" } ], - "17171": [ + "1818": [ { - "name": "G8Chain", - "url": "https://mainnet.oneg8.network", + "name": "cube-scan", + "url": "https://cubescan.network", "standard": "EIP3091" } ], - "17172": [ + "1819": [ { - "name": "ECLIPSE Explorer", - "url": "https://subnets-test.avax.network/eclipse", + "name": "cubetest-scan", + "url": "https://testnet.cubescan.network", "standard": "EIP3091" } ], - "17180": [ + "1821": [ { - "name": "Palettescan", - "url": "https://testnet.palettescan.com", - "icon": "PLT", + "name": "RUBY Smart Chain MAINNET Explorer", + "icon": "ruby", + "url": "https://rubyscan.net", "standard": "none" } ], - "17217": [ + "1875": [ { - "name": "konet-explorer", - "url": "https://explorer.kon-wallet.com", + "name": "whitechain-explorer", + "url": "https://explorer.whitechain.io", "standard": "EIP3091" } ], - "17777": [ + "1881": [ { - "name": "EOS EVM Explorer", - "url": "https://explorer.evm.eosnetwork.com", + "name": "blockscout", + "url": "https://scan.cartenz.works", "standard": "EIP3091" } ], - "18000": [ + "1890": [ { - "name": "Game Network", - "url": "https://explorer.fod.games", + "name": "phoenix", + "url": "https://phoenix.lightlink.io", + "icon": "lightlink", "standard": "EIP3091" } ], - "18122": [ + "1891": [ { - "name": "stnscan", - "url": "https://stnscan.com", - "icon": "stn", - "standard": "none" + "name": "pegasus", + "url": "https://pegasus.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" } ], - "18159": [ + "1898": [ { - "name": "explorer-proofofmemes", - "url": "https://memescan.io", + "name": "explorer", + "url": "https://explorer.boyanet.org:4001", "standard": "EIP3091" } ], - "18181": [ + "1904": [ { - "name": "G8Chain", - "url": "https://testnet.oneg8.network", + "name": "blockscout", + "url": "https://explorer.sportschainnetwork.xyz", "standard": "EIP3091" } ], - "18233": [ + "1907": [ { - "name": "blockscout", - "url": "https://unreal.blockscout.com", - "icon": "unreal", + "name": "Bitci Explorer", + "url": "https://bitciexplorer.com", "standard": "EIP3091" } ], - "18686": [ + "1908": [ { - "name": "MXC zkEVM Moonchain", - "url": "https://explorer.moonchain.com", + "name": "Bitci Explorer Testnet", + "url": "https://testnet.bitciexplorer.com", "standard": "EIP3091" } ], - "18888": [ + "1909": [ { - "name": "Titan Explorer", - "url": "https://tkxscan.io/Titan", - "standard": "none", - "icon": "titan_tkx" + "name": "blockscout", + "url": "https://merklescan.com", + "standard": "none" } ], - "18889": [ + "1911": [ { - "name": "Titan Explorer", - "url": "https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet", - "standard": "none", - "icon": "titan_tkx" + "name": "scalind", + "url": "https://explorer.scalind.com", + "standard": "EIP3091" } ], - "19011": [ + "1912": [ { - "name": "HOME Verse Explorer", - "url": "https://explorer.oasys.homeverse.games", + "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" } ], - "19224": [ + "1954": [ { - "name": "Decentraconnect Social", - "url": "https://decentraconnect.io", + "name": "dos-mainnet", + "url": "https://exp.dexilla.com", "standard": "EIP3091" } ], - "19600": [ + "1956": [ { - "name": "LBRY Block Explorer", - "url": "https://explorer.lbry.com", - "icon": "lbry", + "name": "aiw3 testnet scan", + "url": "https://scan-testnet.aiw3.io", "standard": "none" } ], - "19845": [ + "1961": [ { - "name": "BTCIXScan", - "url": "https://btcixscan.com", + "name": "Selendra Scan", + "url": "https://scan.selendra.org", "standard": "none" } ], - "20001": [ + "1967": [ { - "name": "CamelarkScan", - "url": "https://scan.camelark.com", + "name": "metaexplorer-eleanor", + "url": "https://explorer.metatime.com/eleanor", "standard": "EIP3091" } ], - "20041": [ + "1969": [ { - "name": "NizaScan", - "url": "https://nizascan.io", + "name": "blockscout", + "url": "https://testnetscan.scschain.com", "standard": "EIP3091" } ], - "20073": [ + "1970": [ { - "name": "NizaScan", - "url": "https://testnet.nizascan.io", + "name": "blockscout", + "url": "https://scan.scschain.com", "standard": "EIP3091" } ], - "20736": [ + "1972": [ { - "name": "P12 Chain Explorer", - "url": "https://explorer.p12.games", - "standard": "EIP3091" + "name": "RedeCoin Explorer", + "url": "https://explorer3.redecoin.eu", + "standard": "none" } ], - "20765": [ + "1975": [ { - "name": "JONO11 Explorer", - "url": "https://subnets-test.avax.network/jono11", + "name": "Onus explorer mainnet", + "url": "https://explorer.onuschain.io", + "icon": "onus", "standard": "EIP3091" } ], - "21004": [ + "1984": [ { - "name": "C4EI sirato", - "url": "https://exp.c4ei.net", - "icon": "c4ei", + "name": "testnetexplorer", + "url": "https://testnetexplorer.eurus.network", + "icon": "eurus", "standard": "none" } ], - "21133": [ + "1985": [ { - "name": "AAH Blockscout", - "url": "https://exp.c4ex.net", - "icon": "aah", + "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" } ], - "21223": [ + "1994": [ { - "name": "DCpay Mainnet Explorer", - "url": "https://mainnet.dcpay.io", + "name": "ektascan", + "url": "https://ektascan.io", + "icon": "ekta", "standard": "EIP3091" } ], - "21224": [ + "1995": [ { - "name": "DCpay Testnet Explorer", - "url": "https://testnet.dcpay.io", + "name": "edexa-testnet", + "url": "https://explorer.testnet.edexa.network", "standard": "EIP3091" } ], - "21337": [ + "1996": [ { - "name": "UNcover", - "url": "https://uncoverexplorer.com", - "standard": "none" + "name": "Sanko Explorer", + "url": "https://explorer.sanko.xyz", + "standard": "EIP3091" } ], - "21816": [ + "1997": [ { - "name": "omChain Explorer", - "url": "https://explorer.omchain.io", + "name": "Kyotoscan", + "url": "https://kyotoscan.io", "standard": "EIP3091" } ], - "21912": [ + "1998": [ { - "name": "BSL Mainnet Explorer", - "url": "https://scan.nftruth.io", + "name": "Kyotoscan", + "url": "https://testnet.kyotoscan.io", "standard": "EIP3091" } ], - "22023": [ + "2000": [ { - "name": "Taycan Explorer(Blockscout)", - "url": "https://taycan-evmscan.hupayx.io", - "standard": "none", - "icon": "shuffle" - }, + "name": "dogechain explorer", + "url": "https://explorer.dogechain.dog", + "standard": "EIP3091" + } + ], + "2001": [ { - "name": "Taycan Cosmos Explorer(BigDipper)", - "url": "https://taycan-cosmoscan.hupayx.io", - "standard": "none", - "icon": "shuffle" + "name": "Blockscout", + "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", + "standard": "none" } ], - "22040": [ + "2002": [ { - "name": "AirDAO Network Explorer", - "url": "https://testnet.airdao.io/explorer", + "name": "Blockscout", + "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", "standard": "none" } ], - "22222": [ + "2004": [ { - "name": "Nautscan", - "url": "https://nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" + "name": "MetaScan", + "url": "http://twoto3.com:3000", + "standard": "none" } ], - "22324": [ + "2008": [ { - "name": "GoldXChain Testnet Explorer", - "url": "https://testnet-explorer.goldxchain.io", - "standard": "EIP3091" + "name": "CloudWalk Testnet Explorer", + "url": "https://explorer.testnet.cloudwalk.io", + "standard": "none" } ], - "22776": [ + "2009": [ { - "name": "maposcan", - "url": "https://maposcan.io", - "standard": "EIP3091" + "name": "CloudWalk Mainnet Explorer", + "url": "https://explorer.mainnet.cloudwalk.io", + "standard": "none" } ], - "23006": [ + "2014": [ { - "name": "Antofy Testnet", - "url": "https://test.antofyscan.com", + "name": "nowscan", + "url": "https://nowscan.io", "standard": "EIP3091" } ], - "23118": [ + "2016": [ { - "name": "opsideInfo", - "url": "https://opside.info", + "name": "MainnetZ", + "url": "https://explorer.mainnetz.io", "standard": "EIP3091" } ], - "23294": [ + "2017": [ { - "name": "Oasis Sapphire Explorer", - "url": "https://explorer.oasis.io/mainnet/sapphire", + "name": "telscan", + "url": "https://telscan.io", + "icon": "telcoin", "standard": "EIP3091" } ], - "23295": [ + "2018": [ { - "name": "Oasis Sapphire Testnet Explorer", - "url": "https://explorer.oasis.io/testnet/sapphire", + "name": "PublicMint Explorer", + "url": "https://explorer.dev.publicmint.io", "standard": "EIP3091" } ], - "23451": [ + "2019": [ { - "name": "drxscan", - "url": "https://scan.dreyerx.com", - "icon": "dreyerx", + "name": "PublicMint Explorer", + "url": "https://explorer.tst.publicmint.io", "standard": "EIP3091" } ], - "23452": [ + "2020": [ { - "name": "drxscan", - "url": "https://testnet-scan.dreyerx.com", - "icon": "dreyerx", + "name": "PublicMint Explorer", + "url": "https://explorer.publicmint.io", "standard": "EIP3091" } ], - "23888": [ + "2021": [ { - "name": "Blast Testnet", - "url": "http://testnet-explorer.blastblockchain.com", + "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" } ], - "25186": [ + "2022": [ { - "name": "LiquidLayer Mainnet Explorer", - "url": "https://scan.liquidlayer.network", + "name": "Edgscan by Bharathcoorg", + "url": "https://testnet.edgscan.live", "standard": "EIP3091" } ], - "25839": [ + "2023": [ { - "name": "AlveyScan Testnet", - "url": "https://alveytestnet.com", - "icon": "alveychain", - "standard": "EIP3091" + "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" } ], - "25888": [ + "2025": [ { - "name": "Hammer Chain Explorer", - "url": "https://www.hammerchain.io", + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", "standard": "none" } ], - "25925": [ + "2026": [ { - "name": "bkcscan-testnet", - "url": "https://testnet.bkcscan.com", - "standard": "none", - "icon": "bkc" + "name": "Edgeless Explorer", + "url": "https://explorer.edgeless.network", + "standard": "EIP3091" } ], - "26026": [ + "2031": [ { - "name": "polkadotjs", - "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", - "standard": "none" + "name": "subscan", + "url": "https://centrifuge.subscan.io", + "standard": "EIP3091", + "icon": "subscan" } ], - "26600": [ + "2037": [ { - "name": "Hertz Scan", - "url": "https://hertzscan.com", - "icon": "hertz-network", + "name": "KIWI Explorer", + "url": "https://subnets-test.avax.network/kiwi", "standard": "EIP3091" } ], - "26863": [ + "2038": [ { - "name": "OasisChain Explorer", - "url": "https://scan.oasischain.io", + "name": "SHRAPNEL Explorer", + "url": "https://subnets-test.avax.network/shrapnel", "standard": "EIP3091" } ], - "27181": [ + "2039": [ { - "name": "blockscout", - "url": "https://blockscout.klaosnova.laosfoundation.io", - "icon": "k-laos", - "standard": "EIP3091" + "name": "Aleph Zero Testnet", + "url": "https://test.azero.dev/#/explorer", + "icon": "aleph", + "standard": "none" } ], - "27483": [ + "2040": [ { - "name": "Nanon Sepolia Rollup Testnet Explorer", - "url": "https://sepolia-explorer.nanon.network", + "name": "Vanar Explorer", + "url": "https://explorer.vanarchain.com", + "icon": "vanar", "standard": "EIP3091" } ], - "27827": [ + "2047": [ { - "name": "ZEROONEMAI Explorer", - "url": "https://subnets.avax.network/zeroonemai", - "standard": "EIP3091" + "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" } ], - "28516": [ + "2048": [ { - "name": "blockscout", - "url": "https://explorer-sepolia.vizing.com", - "icon": "vizing", - "standard": "EIP3091" + "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" } ], - "28518": [ + "2049": [ + { + "name": "movoscan", + "url": "https://movoscan.com", + "icon": "movoscan", + "standard": "none" + } + ], + "2077": [ { "name": "blockscout", - "url": "https://explorer.vizing.com", - "icon": "vizing", + "url": "https://explorer.qkacoin.org", "standard": "EIP3091" } ], - "28528": [ + "2100": [ { - "name": "blockscout", - "url": "https://blockscout.com/optimism/bedrock-alpha", + "name": "Ecoball Explorer", + "url": "https://scan.ecoball.org", "standard": "EIP3091" } ], - "28882": [ + "2101": [ { - "name": "Bobascan", - "url": "https://testnet.bobascan.com", - "standard": "none" + "name": "Ecoball Testnet Explorer", + "url": "https://espuma-scan.ecoball.org", + "standard": "EIP3091" } ], - "29112": [ + "2109": [ { "name": "blockscout", - "url": "https://testnet.explorer.hychain.com", - "icon": "hychain", + "url": "https://explorer.exosama.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "29536": [ + "2112": [ { - "name": "KaiChain Explorer", - "url": "https://testnet-explorer.kaichain.net", + "name": "uchain.info", + "url": "https://uchain.info", "standard": "EIP3091" } ], - "29548": [ + "2121": [ { - "name": "MCH Verse Explorer", - "url": "https://explorer.oasys.mycryptoheroes.net", + "name": "catenascan", + "url": "https://catenascan.com", "standard": "EIP3091" } ], - "30067": [ + "2122": [ { - "name": "Piece Scan", - "url": "https://testnet-scan.piecenetwork.com", + "name": "Metad Scan", + "url": "https://scan.metaplayer.one", + "icon": "metad", "standard": "EIP3091" } ], - "30088": [ + "2124": [ { - "name": "MiYou block explorer", - "url": "https://myscan.miyou.io", + "name": "MP1Scan", + "url": "https://dubai.mp1scan.io", "standard": "EIP3091" } ], - "30103": [ + "2136": [ { - "name": "canxium explorer", - "url": "https://cerium-explorer.canxium.net", + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer", "standard": "none" } ], - "30730": [ + "2138": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", + "name": "Quorum Explorer", + "url": "https://public-2138.defi-oracle.io", "standard": "none" } ], - "30731": [ + "2140": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" + "name": "oneness-mainnet", + "url": "https://scan.onenesslabs.io", + "standard": "EIP3091" } ], - "30732": [ + "2141": [ { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" + "name": "oneness-testnet", + "url": "https://scan.testnet.onenesslabs.io", + "standard": "EIP3091" } ], - "31223": [ + "2151": [ { - "name": "cloudtxscan", - "url": "https://scan.cloudtx.finance", + "name": "BOASCAN", + "url": "https://boascan.io", + "icon": "agora", "standard": "EIP3091" } ], - "31224": [ + "2152": [ { - "name": "cloudtxexplorer", - "url": "https://explorer.cloudtx.finance", + "name": "findorascan", + "url": "https://evm.findorascan.io", "standard": "EIP3091" } ], - "31337": [ + "2153": [ { - "name": "GoChain Testnet Explorer", - "url": "https://testnet-explorer.gochain.io", + "name": "findorascan", + "url": "https://testnet-anvil.evm.findorascan.io", "standard": "EIP3091" } ], - "31414": [ + "2154": [ { - "name": "Evoke SmartChain Testnet Explorer", - "url": "https://testnet-explorer.evokescan.org", + "name": "findorascan", + "url": "https://testnet-forge.evm.findorascan.io", "standard": "EIP3091" } ], - "31753": [ + "2199": [ { - "name": "Xchain Mainnet Explorer", - "url": "https://xchainscan.com", + "name": "blockscout", + "url": "https://explorer.moonsama.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "31754": [ + "2202": [ { - "name": "Xchain Testnet Explorer", - "url": "https://xchaintest.net", + "name": "Antofy Mainnet", + "url": "https://antofyscan.com", "standard": "EIP3091" } ], - "32001": [ + "2203": [ { - "name": "W3Gamez Holesky Explorer", - "url": "https://w3gamez-holesky.web3games.com", - "icon": "web3games", - "standard": "EIP3091" + "name": "Explorer", + "url": "https://explorer.bitcoinevm.com", + "icon": "ebtc", + "standard": "none" } ], - "32382": [ + "2213": [ { - "name": "Santiment Intelligence Explorer", - "url": "https://app-explorer-pos.sanr.app", + "name": "Evanesco Explorer", + "url": "https://explorer.evanesco.org", "standard": "none" } ], - "32520": [ + "2221": [ { - "name": "Brise Scan", - "url": "https://brisescan.com", - "icon": "brise", - "standard": "EIP3091" + "name": "Kava Testnet Explorer", + "url": "http://testnet.kavascan.com", + "standard": "EIP3091", + "icon": "kava" } ], - "32659": [ + "2222": [ { - "name": "fsnscan", - "url": "https://fsnscan.com", - "icon": "fsnscan", + "name": "Kava EVM Explorer", + "url": "https://kavascan.com", + "standard": "EIP3091", + "icon": "kava" + } + ], + "2223": [ + { + "name": "VChain Scan", + "url": "https://scan.vcex.xyz", "standard": "EIP3091" } ], - "32769": [ + "2241": [ { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", + "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" } ], - "32990": [ + "2300": [ { - "name": "Zilliqa EVM Isolated Server Explorer", - "url": "https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com", - "standard": "none" + "name": "bombscan", + "icon": "bomb", + "url": "https://bombscan.com", + "standard": "EIP3091" } ], - "33033": [ + "2323": [ { - "name": "Entangle Mainnet Explorer", - "url": "https://explorer.entangle.fi", + "name": "SOMA Testnet Explorer", + "icon": "soma", + "url": "https://testnet.somascan.io", "standard": "none" } ], - "33101": [ + "2330": [ { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", + "name": "expedition", + "url": "http://expedition.altcoinchain.org", + "icon": "altcoinchain", "standard": "none" } ], - "33210": [ + "2331": [ { - "name": "CLOUDVERSE Explorer", - "url": "https://subnets.avax.network/cloudverse", + "name": "RSS3 VSL Sepolia Testnet Scan", + "url": "https://scan.testnet.rss3.io", "standard": "EIP3091" } ], - "33333": [ + "2332": [ { - "name": "avescan", - "url": "https://avescan.io", - "icon": "avescan", - "standard": "EIP3091" + "name": "SOMA Explorer Mainnet", + "icon": "soma", + "url": "https://somascan.io", + "standard": "none" } ], - "33385": [ + "2340": [ { - "name": "Zilliqa EVM Devnet Explorer", - "url": "https://otterscan.devnet.zilliqa.com", - "standard": "EIP3091" + "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" } ], - "33469": [ + "2342": [ { - "name": "Zilliqa-2 EVM Devnet Explorer", - "url": "https://explorer.zq2-devnet.zilliqa.com", + "name": "OmniaVerse Explorer", + "url": "https://scan.omniaverse.io", "standard": "EIP3091" } ], - "33979": [ + "2358": [ { - "name": "Funki Mainnet Explorer", - "url": "https://mainnet.funkichain.com", - "standard": "none" + "name": "blockscout", + "url": "https://blockscout.sepolia.kroma.network", + "icon": "kroma", + "standard": "EIP3091" } ], - "34443": [ + "2370": [ { - "name": "modescout", - "url": "https://explorer.mode.network", - "standard": "none" + "name": "Nexis Testnet Explorer", + "url": "https://evm-testnet.nexscan.io", + "standard": "EIP3091" } ], - "35011": [ + "2399": [ { - "name": "J2O Taro Explorer", - "url": "https://exp.j2o.io", - "icon": "j2otaro", + "name": "bombscan-testnet", + "icon": "bomb", + "url": "https://explorer.bombchain-testnet.ankr.com", "standard": "EIP3091" } ], - "35441": [ + "2400": [ { - "name": "Q explorer", - "url": "https://explorer.q.org", - "icon": "q", + "name": "TCG Verse Explorer", + "url": "https://explorer.tcgverse.xyz", "standard": "EIP3091" } ], - "35443": [ + "2410": [ { - "name": "Q explorer", - "url": "https://explorer.qtestnet.org", - "icon": "q", + "name": "Karak Mainnet Explorer", + "url": "https://explorer.karak.network", "standard": "EIP3091" } ], - "38400": [ + "2415": [ { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" + "name": "XODEX Explorer", + "url": "https://explorer.xo-dex.com", + "standard": "EIP3091", + "icon": "xodex" } ], - "38401": [ + "2425": [ { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" + "name": "King Of Legends Devnet Explorer", + "url": "https://devnet.kingscan.org", + "icon": "kol", + "standard": "EIP3091" } ], - "39656": [ + "2442": [ { - "name": "Primal Network", - "url": "https://prmscan.org", + "name": "polygonscan", + "url": "https://cardona-zkevm.polygonscan.com", "standard": "EIP3091" } ], - "39815": [ + "2458": [ { - "name": "ohoscan", - "url": "https://ohoscan.com", - "icon": "ohoscan", - "standard": "EIP3091" + "name": "Hybrid Chain Explorer Testnet", + "icon": "hybrid", + "url": "https://testnet.hybridscan.ai", + "standard": "none" } ], - "41500": [ + "2468": [ { - "name": "Opulent-X BETA Explorer", - "url": "https://explorer.opulent-x.com", + "name": "Hybrid Chain Explorer Mainnet", + "icon": "hybrid", + "url": "https://hybridscan.ai", "standard": "none" } ], - "42072": [ + "2484": [ { - "name": "AgentLayer Testnet Explorer", - "url": "https://testnet-explorer.agentlayer.xyz", + "icon": "u2u_nebulas", + "name": "U2U Explorer", + "url": "https://testnet.u2uscan.xyz", "standard": "EIP3091" } ], - "42161": [ - { - "name": "Arbiscan", - "url": "https://arbiscan.io", - "standard": "EIP3091" - }, - { - "name": "Arbitrum Explorer", - "url": "https://explorer.arbitrum.io", - "standard": "EIP3091" - }, + "2522": [ { - "name": "dexguru", - "url": "https://arbitrum.dex.guru", - "icon": "dexguru", + "name": "fraxscan", + "url": "https://holesky.fraxscan.com", "standard": "EIP3091" } ], - "42170": [ + "2569": [ { - "name": "Arbitrum Nova Chain Explorer", - "url": "https://nova-explorer.arbitrum.io", - "icon": "blockscout", + "name": "tpcscan", + "url": "https://tpcscan.com", + "icon": "techpay", "standard": "EIP3091" - }, + } + ], + "2606": [ { - "name": "dexguru", - "url": "https://nova.dex.guru", - "icon": "dexguru", + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/pocrnet", + "icon": "pocr", "standard": "EIP3091" } ], - "42220": [ + "2611": [ { - "name": "Celoscan", - "url": "https://celoscan.io", + "name": "REDLC Explorer", + "url": "https://redlightscan.finance", "standard": "EIP3091" - }, - { - "name": "blockscout", - "url": "https://explorer.celo.org", - "standard": "none" } ], - "42261": [ + "2612": [ { - "name": "Oasis Emerald Testnet Explorer", - "url": "https://explorer.oasis.io/testnet/emerald", + "name": "ezchain", + "url": "https://cchain-explorer.ezchain.com", "standard": "EIP3091" } ], - "42262": [ + "2613": [ { - "name": "Oasis Emerald Explorer", - "url": "https://explorer.oasis.io/mainnet/emerald", + "name": "ezchain", + "url": "https://testnet-cchain-explorer.ezchain.com", "standard": "EIP3091" } ], - "42355": [ + "2625": [ { - "name": "GoldXChain Explorer", - "url": "https://explorer.goldxchain.io", + "name": "whitechain-testnet-explorer", + "url": "https://testnet.whitechain.io", "standard": "EIP3091" } ], - "42766": [ + "2648": [ { "name": "blockscout", - "url": "https://scan.zkfair.io", - "icon": "zkfair", + "url": "https://testnet-explorer.ailayer.xyz", + "icon": "ailayer", "standard": "EIP3091" } ], - "42793": [ + "2649": [ { - "name": "Etherlink Explorer", - "url": "https://explorer.etherlink.com", + "name": "blockscout", + "url": "https://mainnet-explorer.ailayer.xyz", + "icon": "ailayer", "standard": "EIP3091" } ], - "42801": [ + "2710": [ { - "name": "Gesoten Verse Testnet Explorer", - "url": "https://explorer.testnet.verse.gesoten.com", + "name": "Morph Testnet Explorer", + "url": "https://explorer-testnet.morphl2.io", "standard": "EIP3091" } ], - "42888": [ + "2718": [ { - "name": "kintoscan", - "url": "http://35.215.120.180:4000", + "name": "blockscout", + "url": "https://blockscout.klaos.laosfoundation.io", + "icon": "k-laos", "standard": "EIP3091" } ], - "43113": [ + "2730": [ { - "name": "snowtrace", - "url": "https://testnet.snowtrace.io", + "name": "XR Sepolia Explorer", + "url": "https://xr-sepolia-testnet.explorer.caldera.xyz", + "icon": "blockscout", "standard": "EIP3091" } ], - "43114": [ + "2731": [ { - "name": "snowtrace", - "url": "https://snowtrace.io", - "standard": "EIP3091" + "name": "Time Network Explorer", + "url": "https://testnet-scanner.timenetwork.io", + "standard": "none", + "icon": "timenet" } ], - "43851": [ + "2748": [ { - "name": "ZKFair Testnet Info", - "url": "https://testnet-scan.zkfair.io", - "icon": "zkfair", + "name": "Nanon Rollup Explorer", + "url": "https://explorer.nanon.network", "standard": "EIP3091" } ], - "44444": [ + "2777": [ { - "name": "blockscout", - "url": "https://frenscan.io", - "icon": "fren", + "name": "GM Network Mainnet Explorer", + "url": "https://scan.gmnetwork.ai", "standard": "EIP3091" } ], - "44445": [ + "2810": [ { - "name": "Quantum Explorer", - "url": "https://qtm.avescoin.io", - "icon": "quantum", + "name": "Morph Holesky Testnet Explorer", + "url": "https://explorer-holesky.morphl2.io", "standard": "EIP3091" } ], - "44787": [ + "2907": [ { - "name": "Alfajoresscan", - "url": "https://alfajores.celoscan.io", - "standard": "EIP3091" + "name": "blockscout", + "url": "https://eluxscan.com", + "standard": "none" } ], - "45000": [ + "2911": [ { - "name": "autobahn explorer", - "url": "https://explorer.autobahn.network", - "icon": "autobahn", + "name": "blockscout", + "url": "https://explorer.hychain.com", + "icon": "hychain", "standard": "EIP3091" } ], - "45454": [ + "2941": [ { - "name": "blockscout", - "url": "https://swamps-explorer.tc.l2aas.com", - "icon": "blockscout", - "standard": "EIP3091" + "name": "Xenon testnet Explorer", + "url": "https://testnet.xenonchain.com", + "standard": "none" } ], - "45510": [ + "2999": [ { - "name": "Deelance Mainnet Explorer", - "url": "https://deescan.com", - "standard": "EIP3091" + "name": "BitYuan Block Chain Explorer", + "url": "https://mainnet.bityuan.com", + "standard": "none" } ], - "46688": [ + "3001": [ { - "name": "fsnscan", - "url": "https://testnet.fsnscan.com", - "icon": "fsnscan", - "standard": "EIP3091" + "name": "UNcover", + "url": "https://www.uncoverexplorer.com/?network=Nikau", + "standard": "none" } ], - "47805": [ + "3003": [ { - "name": "rei-scan", - "url": "https://scan.rei.network", + "name": "canxium explorer", + "url": "https://explorer.canxium.org", "standard": "none" } ], - "48795": [ + "3011": [ { - "name": "SPACE Explorer", - "url": "https://subnets-test.avax.network/space", + "name": "PLAYA3ULL GAMES Explorer", + "url": "https://3011.routescan.io", + "icon": "playa3ull", "standard": "EIP3091" } ], - "48899": [ + "3031": [ { - "name": "Zircuit", - "url": "https://explorer.zircuit.com", - "icon": "zircuit", - "standard": "none" + "name": "Orlando (ORL) Explorer", + "url": "https://orlscan.com", + "icon": "orl", + "standard": "EIP3091" } ], - "49049": [ + "3033": [ { - "name": "Wire Explorer", - "url": "https://floripa-explorer.wireshape.org", - "standard": "EIP3091" + "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" } ], - "49088": [ + "3068": [ { "name": "explorer-thebifrost", - "url": "https://explorer.testnet.bifrostnetwork.com", + "url": "https://explorer.mainnet.bifrostnetwork.com", "standard": "EIP3091" } ], - "49321": [ + "3073": [ { - "name": "blockscout", - "url": "https://testnet.gunzscan.io", - "standard": "EIP3091" + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" } ], - "50005": [ + "3306": [ { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.yooldo-verse.xyz", + "name": "Debounce Devnet Explorer", + "url": "https://explorer.debounce.network", "standard": "EIP3091" } ], - "50006": [ + "3334": [ { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.testnet.yooldo-verse.xyz", + "name": "w3q-galileo", + "url": "https://explorer.galileo.web3q.io", "standard": "EIP3091" } ], - "50021": [ + "3400": [ { - "name": "GTON Testnet Network Explorer", - "url": "https://explorer.testnet.gton.network", + "name": "Paribu Net Explorer", + "url": "https://explorer.paribu.network", "standard": "EIP3091" } ], - "51178": [ + "3424": [ { - "name": "LumozTestnetInfo", - "url": "https://lumoz.info", - "icon": "opside-new", + "name": "Evolve Mainnet Explorer", + "url": "https://evoexplorer.com", "standard": "EIP3091" } ], - "51712": [ + "3434": [ { - "name": "Sardis", - "url": "https://contract-mainnet.sardisnetwork.com", + "name": "SecureChain", + "url": "https://testnet.securechain.ai", "standard": "EIP3091" } ], - "52014": [ + "3456": [ { - "name": "blockscout", - "url": "https://blockexplorer.electroneum.com", - "icon": "electroneum", + "name": "LayerEdge Testnet Explorer", + "url": "https://testnet-explorer.layeredge.io", + "icon": "layerEdge", "standard": "EIP3091" } ], - "53277": [ + "3490": [ { - "name": "DOID Scan", - "url": "https://scan.doid.tech", - "icon": "doid", - "standard": "EIP3091" + "name": "GTCScan Explorer", + "url": "https://gtcscan.io", + "standard": "none", + "icon": "gtc" } ], - "53302": [ + "3500": [ { - "name": "seedscout", - "url": "https://sepolia-explorer.superseed.xyz", + "name": "Paribu Net Testnet Explorer", + "url": "https://testnet.paribuscan.com", "standard": "EIP3091" } ], - "53457": [ + "3501": [ { - "name": "DODOchain Testnet (Sepolia) Explorer", - "url": "https://testnet-scan.dodochain.com", - "icon": "dodochain_testnet", + "name": "JFIN Chain Explorer", + "url": "https://exp.jfinchain.com", "standard": "EIP3091" } ], - "53935": [ + "3601": [ { - "name": "ethernal", - "url": "https://explorer.dfkchain.com", - "icon": "ethereum", + "name": "Pando Mainnet Explorer", + "url": "https://explorer.pandoproject.org", "standard": "none" } ], - "54211": [ + "3602": [ { - "name": "TestEdge HAQQ Explorer", - "url": "https://explorer.testedge2.haqq.network", - "standard": "EIP3091" + "name": "Pando Testnet Explorer", + "url": "https://testnet.explorer.pandoproject.org", + "standard": "none" } ], - "54321": [ + "3636": [ { - "name": "toronet_explorer", - "url": "https://testnet.toronet.org", - "standard": "none" + "name": "3xpl", + "url": "https://3xpl.com/botanix", + "standard": "EIP3091" + }, + { + "name": "Blockscout", + "url": "https://blockscout.botanixlabs.dev", + "standard": "EIP3091" } ], - "54555": [ + "3637": [ { - "name": "photon_testnet_explorer", - "url": "https://testnet.photonchain.io", - "standard": "none" + "name": "Botanix", + "url": "https://btxtestchain.com", + "standard": "EIP3091" } ], - "55004": [ + "3639": [ { - "name": "blockscout", - "url": "https://explorer.titan.tokamak.network", + "name": "iChainscan", + "url": "https://ichainscan.com", "standard": "EIP3091" } ], - "55555": [ + "3645": [ { - "name": "reiscan", - "url": "https://reiscan.com", + "name": "iChainscan", + "url": "https://test.ichainscan.com", "standard": "EIP3091" } ], - "55556": [ + "3666": [ { - "name": "reiscan", - "url": "https://testnet.reiscan.com", + "name": "jscan", + "url": "https://jscan.jnsdao.com", "standard": "EIP3091" } ], - "56026": [ + "3690": [ { - "name": "Lambda Chain Mainnet Explorer", - "url": "https://scan.lambda.im", + "name": "bittexscan", + "url": "https://bittexscan.com", "standard": "EIP3091" } ], - "56288": [ + "3693": [ { - "name": "Boba BNB block explorer", - "url": "https://bobascan.com", + "name": "Empire Explorer", + "url": "https://explorer.empirenetwork.io", "standard": "none" } ], - "56400": [ + "3698": [ { - "name": "TESTNETZER Explorer", - "url": "https://subnets-test.avax.network/testnetzer", + "name": "SenjePowers", + "url": "https://testnet.senjepowersscan.com", "standard": "EIP3091" } ], - "56789": [ + "3699": [ { - "name": "novascan", - "url": "https://novascan.velo.org", + "name": "SenjePowers", + "url": "https://senjepowersscan.com", "standard": "EIP3091" } ], - "56797": [ + "3737": [ { - "name": "DOID Testnet Scan", - "url": "https://scan.testnet.doid.tech", - "icon": "doid", + "name": "Crossbell Explorer", + "url": "https://scan.crossbell.io", "standard": "EIP3091" } ], - "57000": [ + "3776": [ { - "name": "Rollux Testnet Explorer", - "url": "https://rollux.tanenbaum.io", + "name": "Blockscout Astar zkEVM explorer", + "url": "https://astar-zkevm.explorer.startale.com", "standard": "EIP3091" } ], - "57451": [ + "3797": [ { - "name": "coinsecnetwork", - "url": "https://explorer.coinsec.network", + "name": "AlveyScan", + "url": "https://alveyscan.com", + "icon": "alveychain", "standard": "EIP3091" } ], - "58008": [ + "3799": [ { - "name": "blockscout", - "url": "https://explorer.sepolia.publicgoods.network", + "name": "ttntscan", + "url": "https://testnet-explorer.tangle.tools", "icon": "blockscout", "standard": "EIP3091" } ], - "59140": [ - { - "name": "Etherscan", - "url": "https://goerli.lineascan.build", - "standard": "EIP3091", - "icon": "linea" - }, + "3888": [ { - "name": "Blockscout", - "url": "https://explorer.goerli.linea.build", - "standard": "EIP3091", - "icon": "linea" + "name": "KalyScan", + "url": "https://kalyscan.io", + "standard": "EIP3091" } ], - "59141": [ - { - "name": "Etherscan", - "url": "https://sepolia.lineascan.build", - "standard": "EIP3091", - "icon": "linea" - }, + "3889": [ { - "name": "Blockscout", - "url": "https://explorer.sepolia.linea.build", - "standard": "EIP3091", - "icon": "linea" + "name": "KalyScan", + "url": "https://testnet.kalyscan.io", + "standard": "EIP3091" } ], - "59144": [ + "3912": [ { - "name": "Etherscan", - "url": "https://lineascan.build", - "standard": "EIP3091", - "icon": "linea" - }, + "name": "DRAC_Network Scan", + "url": "https://www.dracscan.io", + "standard": "EIP3091" + } + ], + "3939": [ { - "name": "Blockscout", - "url": "https://explorer.linea.build", - "standard": "EIP3091", - "icon": "linea" - }, + "name": "DOScan-Test", + "url": "https://test.doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } + ], + "3966": [ { - "name": "L2scan", - "url": "https://linea.l2scan.co", - "standard": "EIP3091", - "icon": "linea" + "name": "DYNO Explorer", + "url": "https://dynoscan.io", + "standard": "EIP3091" } ], - "59971": [ + "3967": [ { - "name": "Genesys Scan", - "url": "https://genesysscan.io", - "icon": "genesyscode", - "standard": "none" + "name": "DYNO Explorer", + "url": "https://testnet.dynoscan.io", + "standard": "EIP3091" } ], - "60000": [ + "3993": [ { - "name": "thinkiumscan", - "url": "https://test0.thinkiumscan.net", + "name": "blockscout", + "url": "https://exp-testnet.apexlayer.xyz", "standard": "EIP3091" } ], - "60001": [ + "3999": [ { - "name": "thinkiumscan", - "url": "https://test1.thinkiumscan.net", - "standard": "EIP3091" + "name": "YuanChain Explorer", + "url": "https://mainnet.yuan.org", + "standard": "none" } ], - "60002": [ + "4000": [ { - "name": "thinkiumscan", - "url": "https://test2.thinkiumscan.net", + "name": "OZONE Scan", + "url": "https://ozonescan.io", "standard": "EIP3091" } ], - "60103": [ + "4001": [ { - "name": "thinkiumscan", - "url": "https://test103.thinkiumscan.net", + "name": "Peperium Chain Explorer", + "url": "https://scan-testnet.peperium.io", + "icon": "peperium", "standard": "EIP3091" } ], - "60808": [ + "4002": [ { - "name": "bobscout", - "url": "https://explorer.gobob.xyz", - "icon": "blockscout", + "name": "ftmscan", + "url": "https://testnet.ftmscan.com", + "icon": "ftmscan", "standard": "EIP3091" } ], - "61406": [ + "4003": [ { - "name": "KaiChain Explorer", - "url": "https://explorer.kaichain.net", + "name": "Blockscout", + "url": "https://explorer.x1-fastnet.xen.network", + "icon": "blockscout", "standard": "EIP3091" } ], - "61800": [ + "4040": [ { - "name": "AxelChain Dev-Net Explorer", - "url": "https://devexplorer2.viacube.com", - "standard": "EIP3091" + "name": "Carbonium Network tesnet Explorer", + "icon": "cbr", + "url": "https://testnet.carboniumscan.com", + "standard": "none" } ], - "61803": [ + "4048": [ { - "name": "eticascan", - "url": "https://eticascan.org", - "standard": "EIP3091" - }, + "name": "ganscan", + "url": "https://ganscan.gpu.net", + "standard": "none" + } + ], + "4058": [ { - "name": "eticastats", - "url": "http://explorer.etica-stats.org", - "standard": "EIP3091" + "name": "blockscout", + "url": "https://ocean.ftnscan.com", + "standard": "none" } ], - "61916": [ + "4061": [ { - "name": "DSC Scan", - "url": "https://explore.doken.dev", - "icon": "doken", + "name": "Nahmii 3 Mainnet Explorer", + "url": "https://explorer.nahmii.io", + "icon": "nahmii", "standard": "EIP3091" } ], - "62049": [ + "4062": [ { - "name": "optopia-testnet-scan", - "url": "https://scan-testnet.optopia.ai", - "icon": "optopia", + "name": "Nahmii 3 Testnet Explorer", + "url": "https://explorer.testnet.nahmii.io", + "icon": "nahmii", "standard": "EIP3091" } ], - "62050": [ + "4078": [ { - "name": "optopia-scan", - "url": "https://scan.optopia.ai", - "icon": "optopia", + "name": "Musterscan", + "url": "https://muster-explorer.alt.technology", "standard": "EIP3091" } ], - "62298": [ + "4080": [ { - "name": "Citrea Devnet Explorer", - "url": "https://explorer.devnet.citrea.xyz", - "icon": "citrea", + "name": "tobescan", + "url": "https://tobescan.com", "standard": "EIP3091" } ], - "62621": [ + "4090": [ { - "name": "MultiVAC Explorer", - "url": "https://e.mtv.ac", + "name": "blockscout", + "url": "https://oasis.ftnscan.com", "standard": "none" } ], - "62831": [ + "4096": [ { - "name": "Avalanche Subnet Testnet Explorer", - "url": "https://subnets-test.avax.network/plyr", + "name": "Bitindi", + "url": "https://testnet.bitindiscan.com", "standard": "EIP3091" } ], - "63000": [ + "4099": [ { - "name": "eCredits MainNet Explorer", - "url": "https://explorer.ecredits.com", - "icon": "ecredits", + "name": "Bitindi", + "url": "https://bitindiscan.com", "standard": "EIP3091" } ], - "63001": [ + "4102": [ { - "name": "eCredits TestNet Explorer", - "url": "https://explorer.tst.ecredits.com", - "icon": "ecredits", + "name": "AIOZ Network Testnet Explorer", + "url": "https://testnet.explorer.aioz.network", "standard": "EIP3091" } ], - "65450": [ + "4141": [ { - "name": "Scolscan Explorer", - "url": "https://explorer.scolcoin.com", + "name": "Tipboxcoin", + "url": "https://testnet.tipboxcoin.net", "standard": "EIP3091" } ], - "66988": [ + "4157": [ { - "name": "JanusNetwork Testnet Explorer", - "url": "https://beta.scan.janusnetwork.io", + "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" } ], - "68770": [ + "4200": [ { - "name": "DM2Verse Explorer", - "url": "https://explorer.dm2verse.dmm.com", + "name": "L2scan", + "url": "https://scan.merlinchain.io", + "icon": "merlin", "standard": "EIP3091" } ], - "69420": [ + "4201": [ { - "name": "Condrieu explorer", - "url": "https://explorer.condrieu.ethdevops.io", + "name": "Blockscout", + "url": "https://explorer.execution.testnet.lukso.network", "standard": "none" } ], - "70000": [ + "4202": [ { - "name": "thinkiumscan", - "url": "https://chain0.thinkiumscan.net", + "name": "liskscout", + "url": "https://sepolia-blockscout.lisk.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "70001": [ + "4242": [ { - "name": "thinkiumscan", - "url": "https://chain1.thinkiumscan.net", + "name": "nexiscan", + "url": "https://www.nexiscan.com", "standard": "EIP3091" } ], - "70002": [ + "4243": [ { - "name": "thinkiumscan", - "url": "https://chain2.thinkiumscan.net", + "name": "nexiscan", + "url": "https://www.nexiscan.com", "standard": "EIP3091" } ], - "70103": [ + "4337": [ { - "name": "thinkiumscan", - "url": "https://chain103.thinkiumscan.net", + "name": "Beam Explorer", + "url": "https://subnets.avax.network/beam", "standard": "EIP3091" } ], - "70700": [ + "4400": [ { - "name": "Proof of Play Apex Explorer", - "url": "https://explorer.apex.proofofplay.com", - "icon": "pop-apex", + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", "standard": "EIP3091" } ], - "71111": [ + "4444": [ { - "name": "GuapcoinX Explorer", - "url": "http://explorer.guapcoinx.com", - "standard": "none", - "icon": "guapcoinx" + "name": "htmlcoin", + "url": "https://explorer.htmlcoin.com", + "icon": "htmlcoin", + "standard": "none" } ], - "71401": [ + "4460": [ { - "name": "GWScan Block Explorer", - "url": "https://v1.testnet.gwscan.com", - "standard": "none" + "name": "basescout", + "url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz", + "icon": "blockscout", + "standard": "EIP3091" } ], - "71402": [ + "4544": [ { - "name": "GWScan Block Explorer", - "url": "https://v1.gwscan.com", + "name": "EMoney ethscan", + "url": "https://ethscan.emoney.network", + "icon": "emoney", + "standard": "EIP3091" + } + ], + "4613": [ + { + "name": "VERY explorer", + "url": "https://www.veryscan.io", "standard": "none" } ], - "72778": [ + "4689": [ { - "name": "ankara", - "url": "https://explorer.ankara-cagacrypto.com", + "name": "iotexscan", + "url": "https://iotexscan.io", "standard": "EIP3091" } ], - "72992": [ + "4690": [ { - "name": "GrokScan", - "url": "https://mainnet-explorer.grokchain.dev", - "standard": "none" + "name": "testnet iotexscan", + "url": "https://testnet.iotexscan.io", + "standard": "EIP3091" } ], - "73114": [ + "4759": [ { - "name": "ICB Tesnet Explorer", - "url": "https://testnet.icbscan.io", - "standard": "EIP3091" + "name": "MEVerse Chain Testnet Explorer", + "url": "https://testnet.meversescan.io", + "standard": "none", + "icon": "meverse" } ], - "73115": [ + "4777": [ { - "name": "ICB Explorer", - "url": "https://icbscan.io", + "name": "blockscout", + "url": "https://testnet-explorer.blackfort.network", + "icon": "blockscout", "standard": "EIP3091" } ], - "73927": [ + "4893": [ + { + "name": "blockscout", + "url": "https://gcscan.io", + "standard": "none" + } + ], + "4918": [ { - "name": "mvmscan", - "url": "https://scan.mvm.dev", - "icon": "mvm", + "name": "Venidium EVM Testnet Explorer", + "url": "https://evm-testnet.venidiumexplorer.com", "standard": "EIP3091" } ], - "75000": [ + "4919": [ { - "name": "ResinScan", - "url": "https://explorer.resincoin.dev", - "standard": "none" + "name": "Venidium Explorer", + "url": "https://evm.venidiumexplorer.com", + "standard": "EIP3091" } ], - "75512": [ + "4999": [ { - "name": "Geek Explorer", - "url": "https://explorer.geekout-pte.com", + "name": "blockscout", + "url": "https://explorer.blackfort.network", + "icon": "blockscout", "standard": "EIP3091" } ], - "75513": [ + "5000": [ { - "name": "Geek Testnet Explorer", - "url": "https://explorer-testnet.geekout-pte.com", + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", "standard": "EIP3091" } ], - "77001": [ + "5001": [ { - "name": "BORAchainscope", - "url": "https://scope.boraportal.com", + "name": "Mantle Testnet Explorer", + "url": "https://explorer.testnet.mantle.xyz", "standard": "EIP3091" } ], - "77238": [ + "5002": [ { - "name": "Foundry Scan Testnet", - "url": "https://testnet-explorer.foundryscan.org", - "standard": "EIP3091" + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.treasurenet.io", + "icon": "treasurenet", + "standard": "none" } ], - "77612": [ + "5003": [ { - "name": "ventionscan", - "url": "https://ventionscan.io", + "name": "blockscout", + "url": "https://explorer.sepolia.mantle.xyz", "standard": "EIP3091" } ], - "77777": [ + "5005": [ { - "name": "toronet_explorer", - "url": "https://toronet.org/explorer", + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.testnet.treasurenet.io", + "icon": "treasurenet", "standard": "none" } ], - "78281": [ + "5039": [ { - "name": "Dragonfly Blockscout", - "url": "https://blockscout.dragonfly.hexapod.network", - "icon": "blockscout", + "name": "ONIGIRI Explorer", + "url": "https://subnets-test.avax.network/onigiri", "standard": "EIP3091" } ], - "78430": [ + "5040": [ { - "name": "AMPLIFY Explorer", - "url": "https://subnets-test.avax.network/amplify", + "name": "ONIGIRI Explorer", + "url": "https://subnets.avax.network/onigiri", "standard": "EIP3091" } ], - "78431": [ + "5051": [ { - "name": "BULLETIN Explorer", - "url": "https://subnets-test.avax.network/bulletin", + "name": "Nollie Skate Chain Testnet Explorer", + "url": "https://nolliescan.skatechain.org", "standard": "EIP3091" } ], - "78432": [ + "5102": [ { - "name": "CONDUIT Explorer", - "url": "https://subnets-test.avax.network/conduit", + "name": "blockscout", + "url": "https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz", "standard": "EIP3091" } ], - "78600": [ + "5106": [ { - "name": "Vanguard Explorer", - "url": "https://explorer-vanguard.vanarchain.com", - "icon": "vanguard", + "name": "blockscout", + "url": "https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz", "standard": "EIP3091" } ], - "79879": [ + "5112": [ { - "name": "Gold Smart Chain", - "url": "https://testnet.goldsmartchain.com", + "name": "blockscout", + "url": "https://explorer.ham.fun", + "icon": "blockscout", "standard": "EIP3091" } ], - "80001": [ + "5165": [ { - "name": "polygonscan", - "url": "https://mumbai.polygonscan.com", - "standard": "EIP3091" + "name": "blockscout", + "url": "https://ftnscan.com", + "standard": "none" } ], - "80002": [ + "5169": [ { - "name": "polygonamoy", - "url": "https://www.oklink.com/amoy", + "name": "SLN Mainnet Explorer", + "url": "https://explorer.main.smartlayer.network", "standard": "EIP3091" } ], - "80084": [ + "5177": [ { - "name": "Beratrail", - "url": "https://bartio.beratrail.io", - "icon": "berachain", + "name": "TLChain Explorer", + "url": "https://explorer.tlchain.network", "standard": "none" } ], - "80085": [ + "5234": [ { - "name": "Beratrail", - "url": "https://artio.beratrail.io", - "icon": "berachain", + "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" } ], - "80096": [ + "5321": [ { - "name": "blockscout", - "url": "https://hizoco.net:38443", + "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" } ], - "81041": [ + "5372": [ { - "name": "nordek", - "url": "https://nordekscan.com", + "name": "Settlus Scan", + "url": "https://testnet.settlus.network", "standard": "EIP3091" } ], - "81457": [ + "5424": [ { - "name": "Blastscan", - "url": "https://blastscan.io", - "icon": "blast", + "name": "edexa-mainnet", + "url": "https://explorer.edexa.network", "standard": "EIP3091" - }, + } + ], + "5439": [ { - "name": "Blast Explorer", - "url": "https://blastexplorer.io", - "icon": "blast", + "name": "egoscan", + "url": "https://egoscan.io", "standard": "EIP3091" } ], - "81720": [ + "5522": [ { - "name": "Quantum Scan Mainnet", - "url": "https://quantumscan.org", + "name": "Vexascan-EVM-TestNet", + "url": "https://testnet.vexascan.com/evmexplorer", "standard": "EIP3091" } ], - "82459": [ + "5551": [ { - "name": "SLN Testnet Explorer", - "url": "https://explorer.test.smartlayer.network", + "name": "Nahmii 2 Mainnet Explorer", + "url": "https://explorer.n2.nahmii.io", + "icon": "nahmii", "standard": "EIP3091" } ], - "83872": [ + "5555": [ { - "name": "Zedscan", - "url": "http://zedscan.net", + "name": "Chain Verse Explorer", + "url": "https://explorer.chainverse.info", "standard": "EIP3091" } ], - "84531": [ + "5611": [ { - "name": "basescan", - "url": "https://goerli.basescan.org", - "standard": "none" + "name": "bscscan-opbnb-testnet", + "url": "https://opbnb-testnet.bscscan.com", + "standard": "EIP3091" }, { - "name": "basescout", - "url": "https://base-goerli.blockscout.com", - "icon": "blockscout", + "name": "opbnbscan", + "url": "https://opbnbscan.com", "standard": "EIP3091" - }, + } + ], + "5615": [ { - "name": "dexguru", - "url": "https://base-goerli.dex.guru", - "icon": "dexguru", + "name": "explorer-arcturus-testnet", + "url": "https://testnet.arcscan.net", "standard": "EIP3091" } ], - "84532": [ + "5656": [ { - "name": "basescout", - "url": "https://base-sepolia.blockscout.com", - "icon": "blockscout", + "name": "QIE Explorer", + "url": "https://mainnet.qiblockchain.online", "standard": "EIP3091" } ], - "84886": [ + "5675": [ { - "name": "Aerie Explorer", - "url": "https://explorer.aerielab.io", - "icon": "aerie", + "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" } ], - "88002": [ + "5700": [ { - "name": "Nautscan", - "url": "https://proteus.nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" + "name": "Syscoin Testnet Block Explorer", + "url": "https://tanenbaum.io", + "standard": "EIP3091" } ], - "88559": [ + "5729": [ { - "name": "inoai live", - "url": "https://inoai.live", + "name": "Hika Network Testnet Explorer", + "url": "https://scan-testnet.hika.network", "standard": "none" } ], - "88817": [ + "5758": [ { - "name": "explorer-testnet", - "url": "https://explorer-testnet.unit0.dev", + "name": "SatoshiChain Testnet Explorer", + "url": "https://testnet.satoshiscan.io", "standard": "EIP3091" } ], - "88819": [ + "5845": [ + { + "name": "Tangle EVM Explorer", + "url": "https://explorer.tangle.tools", + "standard": "EIP3091", + "icon": "tangle" + } + ], + "5851": [ { - "name": "explorer-stagenet", - "url": "https://explorer-stagenet.unit0.dev", + "name": "explorer", + "url": "https://explorer.ont.io/testnet", "standard": "EIP3091" } ], - "88882": [ + "5869": [ { - "name": "spicy-explorer", - "url": "https://testnet.chiliscan.com", + "name": "wegoscan2", + "url": "https://scan2.wegochain.io", "standard": "EIP3091" } ], - "88888": [ - { - "name": "chiliscan", - "url": "https://chiliscan.com", - "standard": "EIP3091" - }, + "6000": [ { - "name": "chilizscan", - "url": "https://scan.chiliz.com", - "standard": "EIP3091" + "name": "BBScan Testnet Explorer", + "url": "https://bbscan.io", + "standard": "none" } ], - "90210": [ + "6001": [ { - "name": "Beverly Hills explorer", - "url": "https://explorer.beverlyhills.ethdevops.io", + "name": "BBScan Mainnet Explorer", + "url": "https://bbscan.io", "standard": "none" } ], - "90354": [ + "6065": [ { - "name": "blockscout", - "url": "https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz", - "icon": "blockscout", + "name": "treslechesexplorer", + "url": "https://explorer-test.tresleches.finance", + "icon": "treslechesexplorer", "standard": "EIP3091" } ], - "91002": [ + "6066": [ { - "name": "Nautscan", - "url": "https://triton.nautscan.com", + "name": "treslechesexplorer", + "url": "https://explorer.tresleches.finance", + "icon": "treslechesexplorer", "standard": "EIP3091" } ], - "91120": [ + "6102": [ { - "name": "MetaDAP Enterprise Mainnet explorer", - "url": "https://explorer.chain.metadap.io", - "standard": "none" + "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" } ], - "91715": [ + "6118": [ { - "name": "combotrace explorer", - "url": "https://combotrace-testnet.nodereal.io", + "name": "UPTN Testnet Explorer", + "url": "https://testnet.explorer.uptn.io", "standard": "EIP3091" } ], - "92001": [ + "6119": [ { - "name": "Lambda EVM Explorer", - "url": "https://explorer.lambda.top", - "standard": "EIP3091", - "icon": "lambda" + "name": "UPTN Explorer", + "url": "https://explorer.uptn.io", + "standard": "EIP3091" } ], - "93572": [ + "6321": [ { - "name": "LiquidLayer Testnet Explorer", - "url": "https://testnet-scan.liquidlayer.network", - "standard": "EIP3091" + "name": "Aurascan Explorer", + "url": "https://euphoria.aurascan.io", + "standard": "none", + "icon": "aura" } ], - "96970": [ + "6322": [ { - "name": "Mantis Blockscout", - "url": "https://blockscout.mantis.hexapod.network", - "icon": "blockscout", - "standard": "EIP3091" + "name": "Aurascan Explorer", + "url": "https://aurascan.io", + "standard": "none", + "icon": "aura" } ], - "97531": [ + "6552": [ { - "name": "Green Chain Explorer", - "url": "https://explorer.greenchain.app", + "name": "Scolscan Testnet Explorer", + "url": "https://testnet-explorer.scolcoin.com", "standard": "EIP3091" } ], - "97970": [ + "6565": [ { - "name": "OptimusZ7 Testnet Explorer", - "url": "https://testnet.optimusz7.com", - "standard": "EIP3091" + "name": "FOX Testnet Explorer", + "icon": "fox", + "url": "https://testnet.foxscan.app", + "standard": "none" } ], - "99099": [ + "6626": [ { - "name": "eLiberty Testnet", - "url": "https://testnet.eliberty.ngo", - "standard": "EIP3091" + "name": "blockscout", + "url": "https://scan.chain.pixie.xyz", + "standard": "none" } ], - "100001": [ + "6660": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/0", + "name": "Latest Chain", + "url": "http://testnet.latestchain.io", "standard": "EIP3091" } ], - "100002": [ + "6661": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/1", + "name": "Cybria Explorer", + "url": "https://cybascan.io", + "icon": "cybascan", "standard": "EIP3091" } ], - "100003": [ + "6666": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/2", + "name": "Cybria Explorer", + "url": "https://explorer.cybascan.io", + "icon": "cybascan", "standard": "EIP3091" } ], - "100004": [ + "6688": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/3", - "standard": "EIP3091" + "name": "IRISHub Cosmos Explorer (IOBScan)", + "url": "https://irishub.iobscan.io", + "standard": "none", + "icon": "irishub" } ], - "100005": [ + "6701": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/4", + "name": "PAXB Explorer", + "url": "https://scan.paxb.io", + "icon": "paxb", "standard": "EIP3091" } ], - "100006": [ + "6779": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/5", + "name": "cpvscan", + "url": "https://scan.compverse.io", "standard": "EIP3091" } ], - "100007": [ + "6789": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/6", + "name": "Gold Smart Chain", + "url": "https://mainnet.goldsmartchain.com", "standard": "EIP3091" } ], - "100008": [ + "6868": [ { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/7", + "name": "poolsscan", + "url": "https://scan.poolsmobility.com", + "icon": "POOLS", "standard": "EIP3091" } ], - "100009": [ - { - "name": "VeChain Stats", - "url": "https://vechainstats.com", - "standard": "none" - }, + "6969": [ { - "name": "VeChain Explorer", - "url": "https://explore.vechain.org", + "name": "tombscout", + "url": "https://tombscout.com", "standard": "none" } ], - "100010": [ + "7000": [ { - "name": "VeChain Explorer", - "url": "https://explore-testnet.vechain.org", + "name": "ZetaChain Mainnet Explorer", + "url": "https://explorer.zetachain.com", "standard": "none" } ], - "101010": [ + "7001": [ + { + "name": "ZetaChain Athens Testnet Explorer", + "url": "https://athens3.explorer.zetachain.com", + "standard": "none" + }, { "name": "blockscout", - "url": "https://stability.blockscout.com", + "url": "https://zetachain-athens-3.blockscout.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "102031": [ + "7007": [ { "name": "blockscout", - "url": "https://creditcoin-testnet.blockscout.com", - "icon": "blockscout", + "url": "https://bstscan.com", "standard": "EIP3091" } ], - "103090": [ + "7027": [ { - "name": "blockscout", - "url": "https://scan.crystaleum.org", - "icon": "crystal", + "name": "Ella", + "url": "https://ella.network", "standard": "EIP3091" } ], - "103454": [ + "7070": [ { - "name": "Masa Testnet Explorer", - "url": "https://subnets-test.avax.network/masatestnet", - "standard": "EIP3091" + "name": "Planq EVM Explorer (Blockscout)", + "url": "https://evm.planq.network", + "standard": "none" + }, + { + "name": "Planq Cosmos Explorer (BigDipper)", + "url": "https://explorer.planq.network", + "standard": "none" } ], - "104566": [ + "7100": [ { - "name": "KaspaClassic Explorer", - "url": "https://explorer.kaspaclassic.world", + "name": "numeexplorer", + "url": "https://explorer.numecrypto.com", + "icon": "nume", "standard": "none" } ], - "105105": [ + "7171": [ { - "name": "Stratis Explorer", - "url": "https://explorer.stratisevm.com", + "name": "Bitrock Explorer", + "url": "https://explorer.bit-rock.io", "standard": "EIP3091" } ], - "108801": [ + "7300": [ { - "name": "BROChain Explorer", - "url": "https://explorer.brochain.org", + "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" } ], - "110001": [ + "7341": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/0", + "name": "Shyft BX", + "url": "https://bx.shyft.network", "standard": "EIP3091" } ], - "110002": [ + "7484": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/1", - "standard": "EIP3091" + "name": "raba", + "url": "https://x.raba.app/explorer", + "standard": "none" } ], - "110003": [ + "7518": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/2", - "standard": "EIP3091" + "name": "MEVerse Chain Explorer", + "url": "https://www.meversescan.io", + "standard": "none", + "icon": "meverse" } ], - "110004": [ + "7560": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/3", + "name": "Cyber Mainnet Explorer", + "url": "https://cyberscan.co", "standard": "EIP3091" } ], - "110005": [ + "7575": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/4", + "name": "ADIL Testnet Explorer", + "url": "https://testnet.adilchain-scan.io", "standard": "EIP3091" } ], - "110006": [ + "7576": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/5", + "name": "ADIL Mainnet Explorer", + "url": "https://adilchain-scan.io", "standard": "EIP3091" } ], - "110007": [ + "7668": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/6", + "name": "rootnet", + "url": "https://explorer.rootnet.live", "standard": "EIP3091" } ], - "110008": [ + "7672": [ { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/7", + "name": "rootnet", + "url": "https://explorer.rootnet.cloud", "standard": "EIP3091" } ], - "111000": [ + "7700": [ { - "name": "Siberium Testnet Explorer - blockscout", - "url": "https://explorer.test.siberium.net", - "icon": "siberium", + "name": "Canto Explorer (OKLink)", + "url": "https://www.oklink.com/canto", "standard": "EIP3091" - } - ], - "111111": [ + }, { - "name": "Siberium Mainnet Explorer - blockscout - 1", - "url": "https://explorer.main.siberium.net", - "icon": "siberium", + "name": "Canto EVM Explorer (Blockscout)", + "url": "https://tuber.build", "standard": "EIP3091" }, { - "name": "Siberium Mainnet Explorer - blockscout - 2", - "url": "https://explorer.main.siberium.net.ru", - "icon": "siberium", + "name": "dexguru", + "url": "https://canto.dex.guru", + "icon": "dexguru", "standard": "EIP3091" } ], - "111188": [ + "7701": [ { - "name": "blockscout", - "url": "https://explorer.re.al", - "icon": "real", + "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" } ], - "112358": [ + "7771": [ { - "name": "blockscout", - "url": "https://explorer.metachain.one", - "icon": "blockscout", + "name": "Bitrock Testnet Explorer", + "url": "https://testnetscan.bit-rock.io", "standard": "EIP3091" } ], - "119139": [ + "7775": [ { - "name": "MetaDAP Enterprise Testnet explorer", - "url": "https://explorer.testnet.chain.metadap.io", + "name": "GDCC", + "url": "https://testnet.gdccscan.io", "standard": "none" } ], - "123456": [ + "7777": [ { - "name": "ADIL Devnet Explorer", - "url": "https://devnet.adilchain-scan.io", + "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" } ], - "128123": [ + "7860": [ { - "name": "Etherlink Testnet Explorer", - "url": "https://testnet-explorer.etherlink.com", + "name": "maalscan testnet", + "url": "https://testnet.maalscan.io", "standard": "EIP3091" } ], - "131419": [ + "7878": [ { - "name": "etndscan", - "url": "https://scan.etnd.pro", - "icon": "ETND", + "name": "Hazlor Testnet Explorer", + "url": "https://explorer.hazlor.com", "standard": "none" } ], - "132902": [ + "7887": [ { - "name": "Form Testnet explorer", - "url": "https://testnet-explorer.form.network", + "name": "Kinto Explorer", + "url": "https://explorer.kinto.xyz", + "icon": "kinto", "standard": "EIP3091" } ], - "141319": [ + "7895": [ { - "name": "etherscan", - "url": "http://testnet-api.magape.io:81", - "icon": "magape", - "standard": "EIP3091" + "name": "ARDENIUM Athena Explorer", + "icon": "ard", + "url": "https://testnet.ardscan.com", + "standard": "none" } ], - "142857": [ + "7923": [ { - "name": "ICPlaza", - "url": "https://browsemainnet.ic-plaza.org/index", + "name": "blockscout", + "url": "https://explorer.dotblox.io", "standard": "none" } ], - "165279": [ + "7924": [ { - "name": "Eclat Mainnet Explorer", - "url": "https://eclatscan.com", - "standard": "EIP3091" + "name": "MO Explorer", + "url": "https://moscan.app", + "standard": "none" } ], - "167000": [ + "7979": [ { - "name": "etherscan", - "url": "https://taikoscan.io", + "name": "DOScan", + "url": "https://doscan.io", + "icon": "doschain", "standard": "EIP3091" } ], - "167008": [ + "8000": [ { - "name": "blockscout", - "url": "https://explorer.katla.taiko.xyz", - "standard": "EIP3091" + "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" } ], - "167009": [ + "8001": [ { - "name": "blockscout", - "url": "https://blockscoutapi.hekla.taiko.xyz", - "standard": "EIP3091" + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" }, { - "name": "routescan", - "url": "https://hekla.taikoscan.network", - "standard": "EIP3091" + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" } ], - "188710": [ + "8047": [ { - "name": "Bitica DPOS Blockchain Explorer", - "url": "https://biticablockchain.com", - "standard": "none" + "name": "BOAT Mainnet Explorer", + "url": "https://scan.come.boats", + "icon": "boat", + "standard": "EIP3091" } ], - "188881": [ + "8054": [ { - "name": "CondorScan", - "url": "https://explorer.condor.systems", - "standard": "none" + "name": "Karak Sepolia Explorer", + "url": "https://explorer.sepolia.karak.network", + "standard": "EIP3091" } ], - "200101": [ + "8080": [ { - "name": "Blockscout", - "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", - "standard": "none" + "name": "Shardeum Scan", + "url": "https://explorer-liberty10.shardeum.org", + "standard": "EIP3091" } ], - "200202": [ + "8081": [ { - "name": "Blockscout", - "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", - "standard": "none" + "name": "Shardeum Scan", + "url": "https://explorer-liberty20.shardeum.org", + "standard": "EIP3091" } ], - "200810": [ + "8082": [ { - "name": "bitlayer testnet scan", - "url": "https://testnet.btrscan.com", + "name": "Shardeum Scan", + "url": "https://explorer-sphinx.shardeum.org", "standard": "EIP3091" } ], - "200901": [ + "8131": [ { - "name": "bitlayer mainnet scan", - "url": "https://www.btrscan.com", + "name": "meerscan testnet", + "icon": "meer", + "url": "https://testnet-qng.qitmeer.io", "standard": "EIP3091" } ], - "201018": [ - { - "name": "alaya explorer", - "url": "https://scan.alaya.network", + "8181": [ + { + "name": "Testnet BeOne Chain", + "url": "https://testnet.beonescan.com", + "icon": "beonechain", "standard": "none" } ], - "201030": [ + "8192": [ { - "name": "alaya explorer", - "url": "https://devnetscan.alaya.network", - "standard": "none" + "name": "blockscout", + "url": "https://toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" } ], - "201804": [ + "8194": [ { - "name": "Mythical Chain Explorer", - "url": "https://explorer.mythicalgames.com", - "icon": "mythical", + "name": "blockscout", + "url": "https://testnet.toruscan.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "202020": [ + "8217": [ { - "name": "DSC Explorer Testnet", - "url": "https://testnet.explorer.decimalchain.com", - "icon": "dsc", + "name": "Klaytnscope", + "url": "https://scope.klaytn.com", + "standard": "EIP3091" + }, + { + "name": "Klaytnfinder", + "url": "https://klaytnfinder.io", "standard": "EIP3091" } ], - "202212": [ + "8227": [ { - "name": "Blockscout", - "url": "https://explorer.x1-devnet.xen.network", - "icon": "blockscout", + "name": "SPACE Explorer", + "url": "https://subnets.avax.network/space", "standard": "EIP3091" } ], - "202401": [ + "8272": [ { - "name": "YMTECH-BESU Chainlens", - "url": "http://39.119.118.198", + "name": "Blockton Explorer", + "url": "https://blocktonscan.com", "standard": "none" } ], - "202624": [ + "8329": [ { - "name": "Jellie Blockchain Explorer", - "url": "https://jellie.twala.io", - "standard": "EIP3091", - "icon": "twala" + "name": "Lorenzo Explorer", + "url": "https://scan.lorenzo-protocol.xyz", + "standard": "none", + "icon": "lorenzo" } ], - "204005": [ + "8453": [ { - "name": "Blockscout", - "url": "https://explorer.x1-testnet.xen.network", + "name": "basescan", + "url": "https://basescan.org", + "standard": "none" + }, + { + "name": "basescout", + "url": "https://base.blockscout.com", "icon": "blockscout", "standard": "EIP3091" - } - ], - "205205": [ + }, { - "name": "Auroria Testnet Explorer", - "url": "https://auroria.explorer.stratisevm.com", + "name": "dexguru", + "url": "https://base.dex.guru", + "icon": "dexguru", "standard": "EIP3091" } ], - "210425": [ + "8668": [ { - "name": "PlatON explorer", - "url": "https://scan.platon.network", - "standard": "none" + "name": "Hela Official Runtime Mainnet Explorer", + "url": "https://mainnet-blockexplorer.helachain.com", + "standard": "EIP3091" } ], - "220315": [ + "8723": [ { - "name": "explorer masnet", - "url": "https://explorer.masnet.ai", + "name": "OLO Block Explorer", + "url": "https://www.olo.network", "standard": "EIP3091" } ], - "221230": [ + "8726": [ { - "name": "Reapchain Dashboard", - "url": "https://dashboard.reapchain.org", - "icon": "reapchain", + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", "standard": "none" } ], - "221231": [ + "8727": [ { - "name": "Reapchain Testnet Dashboard", - "url": "https://test-dashboard.reapchain.org", - "icon": "reapchain", + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", "standard": "none" } ], - "222222": [ + "8738": [ { - "name": "blockscout", - "url": "https://explorer.evm.hydration.cloud", + "name": "alphscan", + "url": "https://explorer.alph.network", "standard": "EIP3091" } ], - "222555": [ + "8822": [ { - "name": "DeepL Mainnet Explorer", - "url": "https://scan.deeplnetwork.org", - "icon": "deepl", + "name": "explorer", + "url": "https://explorer.evm.iota.org", + "icon": "iotaevm", "standard": "EIP3091" } ], - "222666": [ + "8844": [ { - "name": "DeepL Testnet Explorer", - "url": "https://testnet-scan.deeplnetwork.org", - "icon": "deepl", + "name": "Hydra Chain Testnet explorer", + "url": "https://hydragon.hydrachain.org", + "icon": "hydra", "standard": "EIP3091" } ], - "224168": [ + "8848": [ { - "name": "Taf ECO Chain Mainnet", - "url": "https://ecoscan.tafchain.com", - "standard": "EIP3091" + "name": "MARO Scan", + "url": "https://scan.ma.ro/#", + "standard": "none" } ], - "224422": [ + "8866": [ { - "name": "CONET Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" + "name": "Lumio explorer", + "url": "https://explorer.lumio.io", + "standard": "none" } ], - "224433": [ + "8880": [ { - "name": "CONET Holesky Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" + "name": "Unique Scan", + "url": "https://uniquescan.io/unique", + "standard": "none" } ], - "230315": [ + "8881": [ { - "name": "HashKey Chain Testnet Explorer", - "url": "https://testnet.hashkeyscan.io", + "name": "Unique Scan / Quartz", + "url": "https://uniquescan.io/quartz", "standard": "none" } ], - "240515": [ + "8882": [ { - "name": "Blockscout", - "url": "https://testnet-scan.orangechain.xyz", - "icon": "orange", - "standard": "EIP3091" + "name": "Unique Scan / Opal", + "url": "https://uniquescan.io/opal", + "standard": "none" } ], - "247253": [ + "8883": [ { - "name": "saakuru-explorer-testnet", - "url": "https://explorer-testnet.saakuru.network", - "standard": "EIP3091" + "name": "Unique Scan / Sapphire", + "url": "https://uniquescan.io/sapphire", + "standard": "none" } ], - "256256": [ + "8888": [ { - "name": "Mainnet Scan", - "url": "https://mainnet.scan.caduceus.foundation", - "standard": "none" + "name": "XANAChain", + "url": "https://xanachain.xana.net", + "standard": "EIP3091" } ], - "262371": [ + "8890": [ { - "name": "Eclat Testnet Explorer", - "url": "https://testnet-explorer.eclatscan.com", - "standard": "EIP3091" + "name": "ORE Testnet Explorer", + "icon": "ore", + "url": "https://testnet.oreniumscan.org", + "standard": "none" } ], - "271271": [ + "8898": [ { - "name": "EgonCoin Testnet", - "url": "https://testnet.egonscan.com", - "standard": "EIP3091" + "name": "mmtscan", + "url": "https://mmtscan.io", + "standard": "EIP3091", + "icon": "mmt" } ], - "282828": [ + "8899": [ { - "name": "zillscout", - "url": "https://sepolia.zillnet.io", - "icon": "zillion", + "name": "JIBCHAIN Explorer", + "url": "https://exp-l1.jibchain.net", "standard": "EIP3091" } ], - "309075": [ + "8911": [ { - "name": "One World Chain Mainnet Explorer", - "url": "https://mainnet.oneworldchain.org", + "name": "algscan", + "url": "https://scan.algen.network", + "icon": "alg", "standard": "EIP3091" } ], - "313313": [ + "8912": [ { - "name": "Testnet Scan", - "url": "https://explorer.saharaa.info", + "name": "algscan", + "url": "https://scan.test.algen.network", + "icon": "alg", "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" - }, + "8921": [ { - "name": "Beryx", - "url": "https://beryx.zondax.ch", - "standard": "none" + "name": "algl2scan", + "url": "https://scan.alg2.algen.network", + "icon": "algl2", + "standard": "EIP3091" } ], - "322202": [ + "8922": [ { - "name": "Parex Mainnet Explorer", - "url": "https://scan.parex.network", - "icon": "parexmain", + "name": "algl2scan", + "url": "https://scan.alg2-test.algen.network", + "icon": "algl2", "standard": "EIP3091" } ], - "323213": [ + "8989": [ { - "name": "Bloom Genesis Testnet", - "url": "https://testnet.bloomgenesis.com", - "standard": "EIP3091" + "name": "gmmtscan", + "url": "https://scan.gmmtchain.io", + "standard": "EIP3091", + "icon": "gmmt" } ], - "330844": [ + "9000": [ { - "name": "TTcoin Smart Chain Explorer", - "url": "https://tscscan.com", - "standard": "EIP3091", - "icon": "tscscan" + "name": "Evmos Explorer (Escan)", + "url": "https://testnet.escan.live", + "standard": "none", + "icon": "evmos" } ], - "333313": [ + "9001": [ { - "name": "Bloom Genesis Mainnet", - "url": "https://explorer.bloomgenesis.com", - "standard": "EIP3091" + "name": "Evmos Explorer (Escan)", + "url": "https://escan.live", + "standard": "none", + "icon": "evmos" } ], - "333331": [ + "9007": [ { - "name": "avescan", - "url": "https://testnet.avescoin.io", - "icon": "avescan", - "standard": "EIP3091" + "name": "Shidoblock Testnet Explorer", + "url": "https://testnet.shidoscan.com", + "standard": "none", + "icon": "shidoChain" } ], - "333333": [ + "9008": [ { - "name": "Nativ3 Test Explorer", - "url": "https://scantest.nativ3.network", - "standard": "EIP3091" + "name": "Shidoblock Mainnet Explorer", + "url": "https://shidoscan.com", + "standard": "none", + "icon": "shidoChain" } ], - "333666": [ + "9012": [ { - "name": "blockscout", - "url": "https://testnet.oonescan.com", - "standard": "none" + "name": "berylbit-explorer", + "url": "https://explorer.berylbit.io", + "standard": "EIP3091" } ], - "333777": [ + "9024": [ { - "name": "blockscout", - "url": "https://dev.oonescan.com", - "standard": "none" + "name": "Nexablock Testnet Explorer", + "url": "https://testnet.nexablockscan.io", + "standard": "none", + "icon": "nexaChain" } ], - "336655": [ + "9025": [ { - "name": "UPchain Testnet Explorer", - "url": "https://explorer-testnet.uniport.network", - "icon": "up", - "standard": "EIP3091" + "name": "Nexablock Mainnet Explorer", + "url": "https://nexablockscan.io", + "standard": "none", + "icon": "nexaChain" } ], - "336666": [ + "9223": [ { - "name": "UPchain Mainnet Explorer", - "url": "https://explorer.uniport.network", - "icon": "up", + "name": "Codefin Net Explorer", + "url": "https://explorer.codefin.pro", "standard": "EIP3091" } ], - "355110": [ + "9339": [ { - "name": "Bitfinity Mainnet Block Explorer", - "url": "https://explorer.mainnet.bitfinity.network", - "icon": "bitfinity", + "name": "Dogcoin", + "url": "https://testnet.dogcoin.network", "standard": "EIP3091" } ], - "355113": [ + "9393": [ { - "name": "Bitfinity Testnet Block Explorer", - "url": "https://explorer.testnet.bitfinity.network", - "icon": "bitfinity", + "name": "basescout", + "url": "https://sepolia-delascan.deperp.com", + "icon": "blockscout", "standard": "EIP3091" - }, + } + ], + "9395": [ { - "name": "Bitfinity Testnet Block Explorer", - "url": "https://bitfinity-test.dex.guru", - "icon": "dexguru", + "name": "Evoke SmartChain Explorer", + "url": "https://explorer.evokescan.org", "standard": "EIP3091" } ], - "360890": [ + "9527": [ { - "name": "LAVITA Mainnet Explorer", - "url": "https://tsub360890-explorer.thetatoken.org", - "icon": "lavita", - "standard": "EIP3091" + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" } ], - "363636": [ + "9528": [ { - "name": "Digit Soul Explorer", - "url": "https://dgs-exp.digitsoul.co.th", + "name": "QEasyWeb3 Explorer", + "url": "https://www.qeasyweb3.com", "standard": "EIP3091" } ], - "373737": [ + "9559": [ { - "name": "HAP EVM Explorer (Blockscout)", - "url": "https://blockscout-test.hap.land", - "standard": "none", - "icon": "hap" + "name": "Neon Blockchain Explorer", + "url": "https://testnet-scan.neonlink.io", + "standard": "EIP3091", + "icon": "neonlink" } ], - "381931": [ + "9700": [ { - "name": "metalscan", - "url": "https://metalscan.io", - "standard": "EIP3091" + "name": "Oort MainnetDev Scan", + "url": "https://dev-scan.oortech.com", + "standard": "none", + "icon": "oort" } ], - "381932": [ + "9728": [ { - "name": "metalscan", - "url": "https://tahoe.metalscan.io", - "standard": "EIP3091" + "name": "Boba BNB Testnet block explorer", + "url": "https://testnet.bobascan.com", + "standard": "none" } ], - "404040": [ + "9768": [ { - "name": "Tipboxcoin", - "url": "https://tipboxcoin.net", + "name": "MainnetZ", + "url": "https://testnet.mainnetz.io", "standard": "EIP3091" } ], - "413413": [ + "9779": [ { - "name": "aiescan-testnet", - "icon": "aie", - "url": "https://testnet.aiescan.io", + "name": "Pepe Explorer", + "url": "https://explorer.pepenetwork.io", + "icon": "pepenetwork", "standard": "none" } ], - "420420": [ + "9789": [ { - "name": "blockscout", - "url": "https://mainnet-explorer.kekchain.com", - "icon": "kek", - "standard": "EIP3091" + "name": "Tabi Testnet Explorer", + "url": "https://testnet.tabiscan.com", + "standard": "none" } ], - "420666": [ + "9797": [ { - "name": "blockscout", - "url": "https://testnet-explorer.kekchain.com", - "icon": "kek", + "name": "OptimusZ7 Mainnet Explorer", + "url": "https://explorer.optimusz7.com", "standard": "EIP3091" } ], - "420692": [ + "9818": [ { - "name": "Alterium L2 Testnet Explorer", - "url": "https://l2-testnet.altscan.org", - "standard": "EIP3091" + "name": "IMPERIUM TESTNET Explorer", + "icon": "timp", + "url": "https://network.impscan.com", + "standard": "none" } ], - "421611": [ - { - "name": "arbiscan-testnet", - "url": "https://testnet.arbiscan.io", - "standard": "EIP3091" - }, + "9819": [ { - "name": "arbitrum-rinkeby", - "url": "https://rinkeby-explorer.arbitrum.io", - "standard": "EIP3091" + "name": "IMPERIUM Explorer", + "icon": "imp", + "url": "https://impscan.com", + "standard": "none" } ], - "421613": [ + "9888": [ { - "name": "Arbitrum Goerli Arbiscan", - "url": "https://goerli.arbiscan.io", + "name": "Dogelayer mainnet explorer", + "url": "https://dl-explorer.dogelayer.org", "standard": "EIP3091" } ], - "421614": [ + "9898": [ { - "name": "Arbitrum Sepolia Rollup Testnet Explorer", - "url": "https://sepolia-explorer.arbitrum.io", + "name": "Larissa Scan", + "url": "https://scan.larissa.network", "standard": "EIP3091" } ], - "424242": [ + "9911": [ { - "name": "blockscout", - "url": "https://testnet.ftnscan.com", - "standard": "none" + "name": "escscan", + "url": "https://escscan.com", + "icon": "espento", + "standard": "EIP3091" } ], - "432201": [ + "9977": [ { - "name": "Avalanche Subnet Testnet Explorer", - "url": "https://subnets-test.avax.network/dexalot", + "name": "Mind Chain explorer", + "url": "https://testnet.mindscan.info", "standard": "EIP3091" } ], - "432204": [ + "9980": [ { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets.avax.network/dexalot", + "name": "combotrace explorer", + "url": "https://combotrace.nodereal.io", "standard": "EIP3091" } ], - "444444": [ + "9981": [ { - "name": "Syndr L3 Sepolia Testnet Explorer", - "url": "https://sepolia-explorer.syndr.com", + "name": "Volley Mainnet Explorer", + "url": "https://volleyscan.io", "standard": "EIP3091" } ], - "444900": [ + "9990": [ { - "name": "weelink-testnet", - "url": "https://weelink.cloud/#/blockView/overview", + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", "standard": "none" - } - ], - "473861": [ + }, { - "name": "ultraproscan", - "url": "https://ultraproscan.io", - "icon": "ultrapro", - "standard": "EIP3091" + "name": "Subscan", + "url": "https://agung.subscan.io", + "standard": "none" } ], - "474142": [ + "9996": [ { - "name": "SIDE SCAN", - "url": "https://sidescan.luniverse.io/1641349324562974539", - "standard": "none" + "name": "Mind Chain explorer", + "url": "https://mainnet.mindscan.info", + "standard": "EIP3091" } ], - "504441": [ + "9997": [ { - "name": "Playdapp Explorer", - "url": "https://subnets.avax.network/playdappne", + "name": "blockscout", + "url": "https://testnet-rollup-explorer.altlayer.io", + "icon": "blockscout", "standard": "EIP3091" } ], - "512512": [ + "10024": [ { - "name": "Galaxy Scan", - "url": "https://galaxy.scan.caduceus.foundation", + "name": "Gon Explorer", + "url": "https://gonscan.com", "standard": "none" } ], - "513100": [ + "10081": [ { - "name": "DisChain", - "url": "https://www.oklink.com/dis", + "name": "Testnet Block Explorer", + "url": "https://explorer.testnet.japanopenchain.org", "standard": "EIP3091" } ], - "526916": [ + "10200": [ { - "name": "DoCoin Community Chain Explorer", - "url": "https://explorer.docoin.shop", + "name": "blockscout-chiadochain", + "url": "https://blockscout.chiadochain.net", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://gnosis-chiado.blockscout.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "534351": [ + "10201": [ { - "name": "Scroll Sepolia Etherscan", - "url": "https://sepolia.scrollscan.com", + "name": "MaxxChain Block Explorer", + "url": "https://explorer.maxxchain.org", "standard": "EIP3091" } ], - "534352": [ + "10222": [ { - "name": "Scrollscan", - "url": "https://scrollscan.com", - "standard": "EIP3091" + "name": "GLScan Explorer", + "url": "https://glscan.io", + "standard": "none", + "icon": "glc" } ], - "534849": [ + "10242": [ { - "name": "shinascan", - "url": "https://shinascan.shinarium.org", + "name": "blockscout", + "url": "https://explorer.arthera.net", + "icon": "blockscout", "standard": "EIP3091" } ], - "535037": [ + "10243": [ { - "name": "bescscan", - "url": "https://Bescscan.io", + "name": "blockscout", + "url": "https://explorer-test.arthera.net", + "icon": "blockscout", "standard": "EIP3091" } ], - "552981": [ + "10248": [ { - "name": "One World Chain Testnet Explorer", - "url": "https://testnet.oneworldchain.org", - "standard": "EIP3091" + "name": "0xtrade Scan", + "url": "https://www.0xtscan.com", + "standard": "none" } ], - "555555": [ + "10321": [ { - "name": "Pentagon Testnet Explorer", - "url": "https://explorer-testnet.pentagon.games", - "icon": "pentagon", + "name": "TAO Mainnet Explorer", + "url": "https://taoscan.org", "standard": "EIP3091" } ], - "555666": [ + "10324": [ { - "name": "ECLIPSE Explorer", - "url": "https://subnets-test.avax.network/eclipsecha", + "name": "TAO Testnet Explorer", + "url": "https://testnet.taoscan.org", "standard": "EIP3091" } ], - "622277": [ + "10395": [ { - "name": "hypra", - "url": "https://explorer.hypra.network", - "icon": "blockscout", + "name": "Worldland Explorer", + "url": "https://testscan.worldland.foundation", "standard": "EIP3091" } ], - "622463": [ + "10507": [ { - "name": "Atlas Testnet Scan", - "url": "https://explorer.testnet.atl.network", - "icon": "atlas", + "name": "ethernal", + "url": "https://mainnet.num.network", "standard": "EIP3091" } ], - "641230": [ + "10508": [ { - "name": "brnkscan", - "url": "https://brnkscan.bearnetwork.net", + "name": "ethernal", + "url": "https://testnet.num.network", "standard": "EIP3091" } ], - "651940": [ + "10823": [ { - "name": "Alltra SmartChain Explorer", - "url": "https://alltra.global", + "name": "CCP Explorer", + "url": "https://cryptocoinpay.info", "standard": "EIP3091" } ], - "656476": [ + "10849": [ { - "name": "Open Campus Codex", - "url": "https://opencampus-codex.blockscout.com", - "icon": "open-campus-codex", - "standard": "none" + "name": "Lamina1 Explorer", + "url": "https://subnets.avax.network/lamina1", + "standard": "EIP3091" } ], - "660279": [ + "10850": [ { - "name": "Blockscout", - "url": "https://explorer.xai-chain.net", + "name": "Lamina1 Identity Explorer", + "url": "https://subnets.avax.network/lamina1id", "standard": "EIP3091" } ], - "666888": [ + "10946": [ { - "name": "Hela Official Runtime Testnet Explorer", - "url": "https://testnet-blockexplorer.helachain.com", + "name": "explorer", + "url": "https://explorer.quadrans.io", + "icon": "quadrans", "standard": "EIP3091" } ], - "686868": [ + "10947": [ { - "name": "Won Explorer", - "url": "https://scan.wonnetwork.org", + "name": "explorer", + "url": "https://explorer.testnet.quadrans.io", + "icon": "quadrans", "standard": "EIP3091" } ], - "696969": [ + "11110": [ { - "name": "Galadriel Explorer", - "url": "https://explorer.galadriel.com", - "standard": "none" + "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" } ], - "710420": [ + "11111": [ { - "name": "TILTYARD Explorer", - "url": "https://subnets.avax.network/tiltyard", + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/wagmi", "standard": "EIP3091" } ], - "713715": [ + "11115": [ { - "name": "Seistream", - "url": "https://seistream.app", - "standard": "none" + "name": "Astra EVM Explorer", + "url": "https://explorer.astranaut.dev", + "standard": "EIP3091", + "icon": "astra" }, { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.dev/astra", + "standard": "none", + "icon": "astra" } ], - "721529": [ + "11119": [ { - "name": "Eramscan", - "url": "https://eramscan.com", + "name": "hashbitscan", + "url": "https://explorer.hashbit.org", "standard": "EIP3091" } ], - "743111": [ + "11221": [ { - "name": "blockscout", - "url": "https://testnet.explorer.hemi.xyz", - "icon": "blockscout", - "standard": "EIP3091" + "name": "shinescan", + "url": "https://shinescan.io", + "icon": "shine", + "standard": "none" } ], - "751230": [ + "11227": [ { - "name": "brnktestscan", - "url": "https://brnktest-scan.bearnetwork.net", + "name": "JIRITSUTES Explorer", + "url": "https://subnets-test.avax.network/jiritsutes", "standard": "EIP3091" } ], - "761412": [ + "11235": [ { - "name": "Miexs Smartchain Explorer", - "url": "https://miexs.com", + "name": "Mainnet HAQQ Explorer", + "url": "https://explorer.haqq.network", "standard": "EIP3091" } ], - "764984": [ + "11437": [ { - "name": "Lamina1 Test Explorer", - "url": "https://subnets-test.avax.network/lamina1tes", + "name": "Shyft Testnet BX", + "url": "https://bx.testnet.shyft.network", "standard": "EIP3091" } ], - "767368": [ + "11501": [ { - "name": "Lamina1 Identity Testnet Explorer", - "url": "https://subnets-test.avax.network/lamina1id", - "standard": "EIP3091" + "name": "bevm mainnet scan", + "url": "https://scan-mainnet.bevm.io", + "standard": "none" } ], - "776877": [ + "11503": [ { - "name": "Tanssi Explorer", - "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network", + "name": "bevm testnet scan", + "url": "https://scan-testnet.bevm.io", "standard": "none" } ], - "800001": [ + "11612": [ { - "name": "blockscout", - "url": "https://explorer.octa.space", - "icon": "blockscout", + "name": "Sardis", + "url": "https://testnet.sardisnetwork.com", "standard": "EIP3091" } ], - "808080": [ + "11822": [ { - "name": "BIZ Smart Chain Testnet Explorer", - "url": "https://testnet.btscan.io", + "name": "ArtelaScan", + "url": "https://betanet-scan.artela.network", "standard": "EIP3091" } ], - "810180": [ + "11891": [ { - "name": "zkLink Nova Block Explorer", - "url": "https://explorer.zklink.io", - "icon": "zklink-nova", + "name": "Polygon Supernet Arianee Explorer", + "url": "https://polygonsupernet.explorer.arianee.net", + "standard": "EIP3091" + } + ], + "12009": [ + { + "name": "SatoshiChain Explorer", + "url": "https://satoshiscan.io", "standard": "EIP3091" } ], - "810181": [ + "12020": [ { - "name": "zkLink Nova Block Explorer", - "url": "https://sepolia.explorer.zklink.io", - "icon": "zklink-nova", + "name": "blockscout", + "url": "https://explorer.aternoschain.com", + "icon": "blockscout", "standard": "EIP3091" } ], - "810182": [ + "12051": [ { - "name": "zkLink Nova Block Explorer", - "url": "https://goerli.explorer.zklink.io", - "icon": "zklink-nova", + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", "standard": "EIP3091" } ], - "820522": [ + "12052": [ { - "name": "tscscan", - "url": "https://testnet.tscscan.io", - "icon": "netxscan", - "standard": "none" + "name": "zeroscan", + "url": "https://zeroscan.singularity.gold", + "standard": "EIP3091" } ], - "827431": [ + "12123": [ { - "name": "CURVE Mainnet", - "url": "https://curvescan.io", + "name": "BRC Chain Explorer", + "url": "https://scan.brcchain.io", "standard": "EIP3091" } ], - "839320": [ + "12306": [ { - "name": "Primal Network Testnet", - "url": "https://testnet-explorer.prmscan.org", + "name": "fiboscan", + "url": "https://scan.fibochain.org", "standard": "EIP3091" } ], - "855456": [ + "12324": [ { - "name": "Dodao Explorer", - "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", - "icon": "dodao", + "name": "L3X Mainnet Explorer", + "url": "https://explorer.l3x.com", "standard": "EIP3091" } ], - "879151": [ + "12325": [ { - "name": "BlocX Mainnet Explorer", - "url": "https://explorer.blxscan.com", - "icon": "blx", - "standard": "none" + "name": "L3X Testnet Explorer", + "url": "https://explorer-testnet.l3x.com", + "standard": "EIP3091" } ], - "888882": [ + "12345": [ { - "name": "REXX Mainnet Explorer", - "url": "https://rexxnetwork.com", + "name": "StepScan", + "url": "https://testnet.stepscan.io", + "icon": "step", "standard": "EIP3091" } ], - "888888": [ + "12553": [ { - "name": "Visionscan", - "url": "https://www.visionscan.org", + "name": "RSS3 VSL Scan", + "url": "https://scan.rss3.io", "standard": "EIP3091" } ], - "900000": [ + "12715": [ { - "name": "Posichain Explorer", - "url": "https://explorer.posichain.org", + "name": "Rikeza Blockchain explorer", + "url": "https://testnet.rikscan.com", "standard": "EIP3091" } ], - "910000": [ + "12781": [ { - "name": "Posichain Explorer Testnet", - "url": "https://explorer-testnet.posichain.org", + "name": "Playdapp Testnet Explorer", + "url": "https://subnets-test.avax.network/playdappte", "standard": "EIP3091" } ], - "912559": [ + "12890": [ { - "name": "Astria EVM Dusknet Explorer", - "url": "https://explorer.evm.dusk-3.devnet.astria.org", + "name": "Quantum Scan Testnet", + "url": "https://testnet.quantumscan.org", "standard": "EIP3091" } ], - "920000": [ + "12898": [ { - "name": "Posichain Explorer Devnet", - "url": "https://explorer-devnet.posichain.org", + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/letsplayfair", "standard": "EIP3091" } ], - "920001": [ + "13000": [ { - "name": "Posichain Explorer Devnet", - "url": "https://explorer-devnet.posichain.org", + "name": "SPS Explorer", + "url": "http://spsscan.ssquad.games", "standard": "EIP3091" } ], - "923018": [ + "13308": [ { - "name": "fncy scan testnet", - "url": "https://fncyscan-testnet.fncy.world", - "icon": "fncy", + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", "standard": "EIP3091" } ], - "955081": [ + "13337": [ { - "name": "JONO12 Explorer", - "url": "https://subnets-test.avax.network/jono12", + "name": "Beam Explorer", + "url": "https://subnets-test.avax.network/beam", "standard": "EIP3091" } ], - "955305": [ + "13371": [ { - "name": "blockscout", - "url": "https://explorer.eluv.io", - "standard": "EIP3091" + "name": "Immutable explorer", + "url": "https://explorer.immutable.com", + "standard": "EIP3091", + "icon": "immutable" } ], - "978657": [ + "13381": [ { - "name": "treasurescan", - "url": "https://testnet.treasurescan.io", - "icon": "treasure", + "name": "phoenixplorer", + "url": "https://phoenixplorer.com", "standard": "EIP3091" } ], - "984122": [ + "13396": [ { - "name": "blockscout", - "url": "https://explorer.forma.art", - "icon": "blockscout", + "name": "Masa Explorer", + "url": "https://subnets.avax.network/masa", "standard": "EIP3091" } ], - "984123": [ + "13473": [ { - "name": "blockscout", - "url": "https://explorer.sketchpad-1.forma.art", - "icon": "blockscout", - "standard": "EIP3091" + "name": "Immutable Testnet explorer", + "url": "https://explorer.testnet.immutable.com", + "standard": "EIP3091", + "icon": "immutable" } ], - "988207": [ + "13505": [ { - "name": "Ecrox Chain Explorer", - "url": "https://ecroxscan.com", + "name": "Gravity Alpha Testnet Sepolia Explorer", + "url": "https://explorer-sepolia.gravity.xyz", "standard": "EIP3091" } ], - "998899": [ + "13600": [ { - "name": "supernet-testnet-explorer", - "url": "https://testnet-explorer.supernet.chaingames.io", + "name": "qbitscan", + "url": "https://explorer.qbitscan.com", + "icon": "kronobit", "standard": "EIP3091" } ], - "999999": [ + "13812": [ { - "name": "AMCAmChain explorer", - "url": "https://explorer.amchain.net", + "name": "Susono", + "url": "http://explorer.opn.network", "standard": "none" } ], - "1100789": [ + "14000": [ { - "name": "NetMind Testnet Explorer", - "url": "https://testbrower.protago-dev.com", - "icon": "netmind", + "name": "SPS Test Explorer", + "url": "https://explorer.3sps.net", "standard": "EIP3091" } ], - "1127469": [ + "14324": [ { - "name": "TILTYARD Explorer", - "url": "http://testnet-explorer.tiltyard.gg", + "name": "Evolve Testnet Explorer", + "url": "https://testnet.evolveblockchain.io", "standard": "EIP3091" } ], - "1261120": [ + "14333": [ { - "name": "Blockscout zKatana chain explorer", - "url": "https://zkatana.blockscout.com", + "name": "Vitruveo Testnet Explorer", + "url": "https://test-explorer.vitruveo.xyz", + "icon": "vitruveo", "standard": "EIP3091" - }, + } + ], + "14801": [ { - "name": "Startale zKatana chain explorer", - "url": "https://zkatana.explorer.startale.com", + "name": "satoriscan", + "url": "https://satori.vanascan.io", "standard": "EIP3091" } ], - "1313114": [ + "15003": [ { - "name": "blockscout", - "url": "https://explorer.ethoprotocol.com", - "standard": "none" + "name": "Immutable Devnet explorer", + "url": "https://explorer.dev.immutable.com", + "standard": "EIP3091", + "icon": "immutable" } ], - "1337702": [ + "15257": [ { - "name": "kintsugi explorer", - "url": "https://explorer.kintsugi.themerge.dev", + "name": "Poodl Testnet Explorer", + "url": "https://testnet.poodl.org", "standard": "EIP3091" } ], - "1337802": [ + "15259": [ { - "name": "Kiln Explorer", - "url": "https://explorer.kiln.themerge.dev", - "icon": "ethereum", + "name": "Poodl Mainnet Explorer", + "url": "https://explorer.poodl.org", "standard": "EIP3091" } ], - "1337803": [ + "15551": [ { - "name": "Zhejiang Explorer", - "url": "https://zhejiang.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" + "name": "loopscan", + "url": "http://explorer.mainnetloop.com", + "standard": "none" } ], - "1612127": [ + "15555": [ { - "name": "PlayFi Block Explorer", - "url": "https://albireo-explorer.playfi.ai", + "name": "Trust EVM Explorer", + "url": "https://trustscan.one", "standard": "EIP3091" } ], - "1637450": [ + "15557": [ { - "name": "Xterio Testnet Explorer", - "url": "https://testnet.xterscan.io", + "name": "EOS EVM Explorer", + "url": "https://explorer.testnet.evm.eosnetwork.com", "standard": "EIP3091" } ], - "2021398": [ + "16116": [ { - "name": "DeBank Chain Explorer", - "url": "https://explorer.testnet.debank.com", + "name": "DeFiVerse Explorer", + "url": "https://scan.defi-verse.org", + "icon": "defiverse", "standard": "EIP3091" } ], - "2099156": [ + "16507": [ { - "name": "piscan", - "url": "https://piscan.plian.org/pchain", + "name": "GchainExplorer", + "url": "https://gchainexplorer.genesys.network", "standard": "EIP3091" } ], - "2206132": [ + "16688": [ { - "name": "PlatON explorer", - "url": "https://devnet2scan.platon.network", - "standard": "none" + "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", + "url": "https://nyancat.iobscan.io", + "standard": "none", + "icon": "nyancat" } ], - "3397901": [ + "16718": [ { - "name": "Funki Sepolia Sandbox Explorer", - "url": "https://sepolia-sandbox.funkichain.com", + "name": "AirDAO Network Explorer", + "url": "https://airdao.io/explorer", "standard": "none" } ], - "3441005": [ + "16888": [ { - "name": "manta-testnet Explorer", - "url": "https://manta-testnet.calderaexplorer.xyz", + "name": "ivarscan", + "url": "https://testnet.ivarscan.com", "standard": "EIP3091" } ], - "3441006": [ + "17000": [ { - "name": "manta-testnet Explorer", - "url": "https://pacific-explorer.sepolia-testnet.manta.network", + "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" } ], - "4000003": [ + "17069": [ { "name": "blockscout", - "url": "https://zero-explorer.alt.technology", + "url": "https://explorer.garnetchain.com", "icon": "blockscout", "standard": "EIP3091" } ], - "5112023": [ - { - "name": "NumBlock Explorer", - "url": "https://mainnet.numblock.org", - "standard": "none", - "icon": "NumBlock" - } - ], - "5167003": [ + "17117": [ { - "name": "MXC Wannsee zkEVM Testnet", - "url": "https://wannsee-explorer.mxc.com", + "name": "DeFiVerse Testnet Explorer", + "url": "https://scan-testnet.defi-verse.org", + "icon": "defiverse", "standard": "EIP3091" } ], - "5167004": [ + "17171": [ { - "name": "Moonchain Geneva Testnet", - "url": "https://geneva-explorer.moonchain.com", + "name": "G8Chain", + "url": "https://mainnet.oneg8.network", "standard": "EIP3091" } ], - "5201420": [ + "17172": [ { - "name": "blockscout", - "url": "https://blockexplorer.thesecurityteam.rocks", - "icon": "electroneum", + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipse", "standard": "EIP3091" } ], - "5318008": [ + "17180": [ { - "name": "reactscan", - "url": "https://kopli.reactscan.net", + "name": "Palettescan", + "url": "https://testnet.palettescan.com", + "icon": "PLT", "standard": "none" } ], - "5555555": [ + "17217": [ { - "name": "Imversed EVM explorer (Blockscout)", - "url": "https://txe.imversed.network", - "icon": "imversed", + "name": "konet-explorer", + "url": "https://explorer.kon-wallet.com", "standard": "EIP3091" - }, + } + ], + "17777": [ { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-c.imversed.com", - "icon": "imversed", - "standard": "none" + "name": "EOS EVM Explorer", + "url": "https://explorer.evm.eosnetwork.com", + "standard": "EIP3091" } ], - "5555558": [ + "18000": [ { - "name": "Imversed EVM Explorer (Blockscout)", - "url": "https://txe-test.imversed.network", - "icon": "imversed", + "name": "Game Network", + "url": "https://explorer.fod.games", "standard": "EIP3091" - }, + } + ], + "18122": [ { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-t.imversed.com", - "icon": "imversed", + "name": "stnscan", + "url": "https://stnscan.com", + "icon": "stn", "standard": "none" } ], - "6038361": [ + "18159": [ { - "name": "Blockscout zKyoto explorer", - "url": "https://astar-zkyoto.blockscout.com", + "name": "explorer-proofofmemes", + "url": "https://memescan.io", "standard": "EIP3091" } ], - "6666665": [ + "18181": [ { - "name": "Safe(AnWang) Explorer", - "url": "http://safe4.anwang.com", - "icon": "safe-anwang", + "name": "G8Chain", + "url": "https://testnet.oneg8.network", "standard": "EIP3091" } ], - "6666666": [ + "18233": [ { - "name": "Safe(AnWang) Testnet Explorer", - "url": "http://safe4-testnet.anwang.com", - "icon": "safe-anwang", + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", "standard": "EIP3091" } ], - "7225878": [ + "18686": [ { - "name": "saakuru-explorer", - "url": "https://explorer.saakuru.network", + "name": "MXC zkEVM Moonchain", + "url": "https://explorer.moonchain.com", "standard": "EIP3091" } ], - "7355310": [ + "18888": [ { - "name": "openvessel-mainnet", - "url": "https://mainnet-explorer.openvessel.io", - "standard": "none" + "name": "Titan Explorer", + "url": "https://tkxscan.io/Titan", + "standard": "none", + "icon": "titan_tkx" } ], - "7668378": [ + "18889": [ { - "name": "QL1 Testnet Explorer", - "url": "https://testnet.qom.one", - "icon": "qom", - "standard": "EIP3091" + "name": "Titan Explorer", + "url": "https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet", + "standard": "none", + "icon": "titan_tkx" } ], - "7777777": [ + "19011": [ { - "name": "Zora Network Explorer", - "url": "https://explorer.zora.energy", + "name": "HOME Verse Explorer", + "url": "https://explorer.oasys.homeverse.games", "standard": "EIP3091" } ], - "8007736": [ + "19224": [ { - "name": "piscan", - "url": "https://piscan.plian.org/child_0", + "name": "Decentraconnect Social", + "url": "https://decentraconnect.io", "standard": "EIP3091" } ], - "8008135": [ + "19600": [ { - "name": "Fhenix Helium Explorer (Blockscout)", - "url": "https://explorer.helium.fhenix.zone", - "standard": "EIP3091" + "name": "LBRY Block Explorer", + "url": "https://explorer.lbry.com", + "icon": "lbry", + "standard": "none" } ], - "8080808": [ + "19845": [ { - "name": "Hokum Explorer", - "url": "https://explorer.hokum.gg", - "standard": "EIP3091" + "name": "BTCIXScan", + "url": "https://btcixscan.com", + "standard": "none" } ], - "8794598": [ + "20001": [ { - "name": "HAP EVM Explorer (Blockscout)", - "url": "https://blockscout.hap.land", - "standard": "none", - "icon": "hap" + "name": "CamelarkScan", + "url": "https://scan.camelark.com", + "standard": "EIP3091" } ], - "9322252": [ + "20041": [ { - "name": "blockscout", - "url": "https://xcap-mainnet.explorer.xcap.network", - "icon": "blockscout", + "name": "NizaScan", + "url": "https://nizascan.io", "standard": "EIP3091" } ], - "9322253": [ + "20073": [ { - "name": "blockscout", - "url": "https://xcap-milvine.explorer.xcap.network", - "icon": "blockscout", + "name": "NizaScan", + "url": "https://testnet.nizascan.io", "standard": "EIP3091" } ], - "10067275": [ + "20736": [ { - "name": "piscan", - "url": "https://testnet.plian.org/child_test", + "name": "P12 Chain Explorer", + "url": "https://explorer.p12.games", "standard": "EIP3091" } ], - "10101010": [ + "20765": [ { - "name": "Soverun", - "url": "https://explorer.soverun.com", + "name": "JONO11 Explorer", + "url": "https://subnets-test.avax.network/jono11", "standard": "EIP3091" } ], - "10241025": [ + "21004": [ { - "name": "Hal Explorer", - "url": "https://hal-explorer.alienxchain.io", - "standard": "EIP3091" + "name": "C4EI sirato", + "url": "https://exp.c4ei.net", + "icon": "c4ei", + "standard": "none" } ], - "11155111": [ - { - "name": "etherscan-sepolia", - "url": "https://sepolia.etherscan.io", - "standard": "EIP3091" - }, + "21133": [ { - "name": "otterscan-sepolia", - "url": "https://sepolia.otterscan.io", + "name": "AAH Blockscout", + "url": "https://exp.c4ex.net", + "icon": "aah", "standard": "EIP3091" } ], - "11155420": [ + "21223": [ { - "name": "opscout", - "url": "https://optimism-sepolia.blockscout.com", - "icon": "blockscout", + "name": "DCpay Mainnet Explorer", + "url": "https://mainnet.dcpay.io", "standard": "EIP3091" } ], - "13068200": [ + "21224": [ { - "name": "coti devnet explorer", - "url": "https://explorer-devnet.coti.io", - "icon": "ethernal", + "name": "DCpay Testnet Explorer", + "url": "https://testnet.dcpay.io", "standard": "EIP3091" } ], - "14288640": [ - { - "name": "anduschain explorer", - "url": "https://explorer.anduschain.io", - "icon": "daon", + "21337": [ + { + "name": "UNcover", + "url": "https://uncoverexplorer.com", "standard": "none" } ], - "16658437": [ + "21816": [ { - "name": "piscan", - "url": "https://testnet.plian.org/testnet", + "name": "omChain Explorer", + "url": "https://explorer.omchain.io", "standard": "EIP3091" } ], - "17000920": [ + "21912": [ { - "name": "Lambda Chain Testnet Explorer", - "url": "https://testscan.lambda.im", + "name": "BSL Mainnet Explorer", + "url": "https://scan.nftruth.io", "standard": "EIP3091" } ], - "20180427": [ + "22023": [ { - "name": "blockscout", - "url": "https://stability-testnet.blockscout.com", - "standard": "EIP3091" + "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" } ], - "20180430": [ + "22040": [ { - "name": "spectrum", - "url": "https://spectrum.pub", + "name": "AirDAO Network Explorer", + "url": "https://testnet.airdao.io/explorer", "standard": "none" } ], - "20181205": [ + "22222": [ { - "name": "qkiscan", - "url": "https://qkiscan.io", - "standard": "EIP3091" + "name": "Nautscan", + "url": "https://nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" } ], - "20201022": [ + "22324": [ { - "name": "Pego Network Explorer", - "url": "https://scan.pego.network", + "name": "GoldXChain Testnet Explorer", + "url": "https://testnet-explorer.goldxchain.io", "standard": "EIP3091" } ], - "20240324": [ + "22776": [ { - "name": "DeBank Chain Explorer", - "url": "https://sepolia-explorer.testnet.debank.com", + "name": "maposcan", + "url": "https://maposcan.io", "standard": "EIP3091" } ], - "20241133": [ + "23006": [ { - "name": "Swan Proxima Chain explorer", - "url": "https://proxima-explorer.swanchain.io", + "name": "Antofy Testnet", + "url": "https://test.antofyscan.com", "standard": "EIP3091" } ], - "20482050": [ + "23118": [ { - "name": "Hokum Explorer", - "url": "https://testnet-explorer.hokum.gg", + "name": "opsideInfo", + "url": "https://opside.info", "standard": "EIP3091" } ], - "22052002": [ + "23294": [ { - "name": "Excelon explorer", - "url": "https://explorer.excelon.io", + "name": "Oasis Sapphire Explorer", + "url": "https://explorer.oasis.io/mainnet/sapphire", "standard": "EIP3091" } ], - "27082017": [ + "23295": [ { - "name": "exlscan", - "url": "https://testnet-explorer.exlscan.com", - "icon": "exl", + "name": "Oasis Sapphire Testnet Explorer", + "url": "https://explorer.oasis.io/testnet/sapphire", "standard": "EIP3091" } ], - "27082022": [ + "23451": [ { - "name": "exlscan", - "url": "https://exlscan.com", - "icon": "exl", + "name": "drxscan", + "url": "https://scan.dreyerx.com", + "icon": "dreyerx", "standard": "EIP3091" } ], - "28122024": [ + "23452": [ { - "name": "scan-testnet", - "url": "https://scanv2-testnet.ancient8.gg", + "name": "drxscan", + "url": "https://testnet-scan.dreyerx.com", + "icon": "dreyerx", "standard": "EIP3091" } ], - "29032022": [ + "23888": [ { - "name": "FLXExplorer", - "url": "https://explorer.flaexchange.top", + "name": "Blast Testnet", + "url": "http://testnet-explorer.blastblockchain.com", "standard": "EIP3091" } ], - "37084624": [ + "25186": [ { - "name": "Blockscout", - "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", + "name": "LiquidLayer Mainnet Explorer", + "url": "https://scan.liquidlayer.network", "standard": "EIP3091" } ], - "39916801": [ + "25839": [ { - "name": "TravelSong", - "url": "https://www.beastkingdom.io/travelsong", + "name": "AlveyScan Testnet", + "url": "https://alveytestnet.com", + "icon": "alveychain", "standard": "EIP3091" } ], - "43214913": [ + "25888": [ { - "name": "maistesntet", - "url": "http://174.138.9.169:3006/?network=maistesntet", + "name": "Hammer Chain Explorer", + "url": "https://www.hammerchain.io", "standard": "none" } ], - "65010002": [ + "25925": [ { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" + "name": "bkcscan-testnet", + "url": "https://testnet.bkcscan.com", + "standard": "none", + "icon": "bkc" } ], - "65100002": [ + "26026": [ { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" + "name": "polkadotjs", + "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", + "standard": "none" } ], - "68840142": [ + "26600": [ { - "name": "Frame Testnet Explorer", - "url": "https://explorer.testnet.frame.xyz", + "name": "Hertz Scan", + "url": "https://hertzscan.com", + "icon": "hertz-network", "standard": "EIP3091" } ], - "77787778": [ + "26863": [ { - "name": "blockscout", - "url": "https://test.0xhashscan.io", - "icon": "blockscout", + "name": "OasisChain Explorer", + "url": "https://scan.oasischain.io", "standard": "EIP3091" } ], - "88888888": [ + "27181": [ { - "name": "teamscan", - "url": "https://teamblockchain.team", + "name": "blockscout", + "url": "https://blockscout.klaosnova.laosfoundation.io", + "icon": "k-laos", "standard": "EIP3091" } ], - "94204209": [ + "27483": [ { - "name": "blockscout", - "url": "https://polygon-blackberry.gelatoscout.com", - "icon": "blockscout", + "name": "Nanon Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.nanon.network", "standard": "EIP3091" } ], - "111557560": [ + "27827": [ { - "name": "Cyber Testnet Explorer", - "url": "https://testnet.cyberscan.co", + "name": "ZEROONEMAI Explorer", + "url": "https://subnets.avax.network/zeroonemai", "standard": "EIP3091" } ], - "123420111": [ + "28516": [ { "name": "blockscout", - "url": "https://opcelestia-raspberry.gelatoscout.com", - "icon": "blockscout", + "url": "https://explorer-sepolia.vizing.com", + "icon": "vizing", "standard": "EIP3091" } ], - "161221135": [ + "28518": [ { - "name": "Blockscout", - "url": "https://testnet-explorer.plumenetwork.xyz", - "icon": "blockscout", + "name": "blockscout", + "url": "https://explorer.vizing.com", + "icon": "vizing", "standard": "EIP3091" } ], - "168587773": [ + "28528": [ { - "name": "Blast Sepolia Explorer", - "url": "https://testnet.blastscan.io", - "icon": "blast", + "name": "blockscout", + "url": "https://blockscout.com/optimism/bedrock-alpha", "standard": "EIP3091" } ], - "192837465": [ + "28882": [ { - "name": "Blockscout", - "url": "https://explorer.gather.network", - "icon": "gather", + "name": "Bobascan", + "url": "https://testnet.bobascan.com", "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" - }, + "29112": [ { "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", + "url": "https://testnet.explorer.hychain.com", + "icon": "hychain", "standard": "EIP3091" } ], - "278611351": [ + "29536": [ { - "name": "turbulent-unique-scheat", - "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", + "name": "KaiChain Explorer", + "url": "https://testnet-explorer.kaichain.net", "standard": "EIP3091" } ], - "311752642": [ + "29548": [ { - "name": "OneLedger Block Explorer", - "url": "https://mainnet-explorer.oneledger.network", + "name": "MCH Verse Explorer", + "url": "https://explorer.oasys.mycryptoheroes.net", "standard": "EIP3091" } ], - "328527624": [ + "30067": [ { - "name": "Nal Sepolia Testnet Network Explorer", - "url": "https://testnet-scan.nal.network", + "name": "Piece Scan", + "url": "https://testnet-scan.piecenetwork.com", "standard": "EIP3091" } ], - "333000333": [ - { - "name": "explorer", - "url": "https://meldscan.io", - "icon": "meld", - "standard": "EIP3091" - }, + "30088": [ { - "name": "explorer", - "url": "https://subnets.avax.network/meld", - "icon": "meld", + "name": "MiYou block explorer", + "url": "https://myscan.miyou.io", "standard": "EIP3091" } ], - "356256156": [ + "30103": [ { - "name": "Blockscout", - "url": "https://testnet-explorer.gather.network", - "icon": "gather", + "name": "canxium explorer", + "url": "https://cerium-explorer.canxium.net", "standard": "none" } ], - "486217935": [ + "30730": [ { - "name": "Blockscout", - "url": "https://devnet-explorer.gather.network", + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", "standard": "none" } ], - "888888888": [ + "30731": [ { - "name": "Ancient8 Explorer", - "url": "https://scan.ancient8.gg", - "standard": "EIP3091" + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" } ], - "889910245": [ + "30732": [ { - "name": "PTCESCAN Testnet Explorer", - "url": "https://explorer-testnet.ptcscan.io", - "standard": "EIP3091" + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" } ], - "889910246": [ + "31223": [ { - "name": "PTCESCAN Explorer", - "url": "https://ptcscan.io", + "name": "cloudtxscan", + "url": "https://scan.cloudtx.finance", "standard": "EIP3091" } ], - "974399131": [ + "31224": [ { - "name": "Blockscout", - "url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", + "name": "cloudtxexplorer", + "url": "https://explorer.cloudtx.finance", "standard": "EIP3091" } ], - "999999999": [ + "31337": [ { - "name": "Zora Sepolia Testnet Network Explorer", - "url": "https://sepolia.explorer.zora.energy", + "name": "GoChain Testnet Explorer", + "url": "https://testnet-explorer.gochain.io", "standard": "EIP3091" } ], - "1020352220": [ + "31414": [ { - "name": "Blockscout", - "url": "https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com", + "name": "Evoke SmartChain Testnet Explorer", + "url": "https://testnet-explorer.evokescan.org", "standard": "EIP3091" } ], - "1146703430": [ + "31753": [ { - "name": "CybEthExplorer", - "url": "http://cybeth1.cyberdeck.eu:8000", - "icon": "cyberdeck", - "standard": "none" + "name": "Xchain Mainnet Explorer", + "url": "https://xchainscan.com", + "standard": "EIP3091" } ], - "1273227453": [ + "31754": [ { - "name": "Blockscout", - "url": "https://wan-red-ain.explorer.mainnet.skalenodes.com", - "icon": "human", + "name": "Xchain Testnet Explorer", + "url": "https://xchaintest.net", "standard": "EIP3091" } ], - "1313161554": [ + "32001": [ { - "name": "aurorascan.dev", - "url": "https://aurorascan.dev", + "name": "W3Gamez Holesky Explorer", + "url": "https://w3gamez-holesky.web3games.com", + "icon": "web3games", "standard": "EIP3091" } ], - "1313161555": [ + "32382": [ { - "name": "aurorascan.dev", - "url": "https://testnet.aurorascan.dev", - "standard": "EIP3091" + "name": "Santiment Intelligence Explorer", + "url": "https://app-explorer-pos.sanr.app", + "standard": "none" } ], - "1313161560": [ + "32520": [ { - "name": "PowerGold explorer", - "url": "https://explorer.powergold.aurora.dev", + "name": "Brise Scan", + "url": "https://brisescan.com", + "icon": "brise", "standard": "EIP3091" } ], - "1350216234": [ + "32659": [ { - "name": "Blockscout", - "url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com", + "name": "fsnscan", + "url": "https://fsnscan.com", + "icon": "fsnscan", "standard": "EIP3091" } ], - "1351057110": [ + "32769": [ { - "name": "Blockscout", - "url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com", - "icon": "chaos", - "standard": "EIP3091" + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" } ], - "1380012617": [ + "32990": [ { - "name": "rarichain-explorer", - "url": "https://mainnet.explorer.rarichain.org", - "standard": "EIP3091" + "name": "Zilliqa EVM Isolated Server Explorer", + "url": "https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com", + "standard": "none" } ], - "1380996178": [ + "33033": [ { - "name": "RaptorChain Explorer", - "url": "https://explorer.raptorchain.io", - "icon": "raptorchain_explorer", - "standard": "EIP3091" + "name": "Entangle Mainnet Explorer", + "url": "https://explorer.entangle.fi", + "standard": "none" } ], - "1444673419": [ + "33101": [ { - "name": "Blockscout", - "url": "https://juicy-low-small-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" } ], - "1482601649": [ + "33103": [ { - "name": "Blockscout", - "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", + "name": "Zilliqa 2 EVM proto-testnet explorer", + "url": "https://explorer.zq2-prototestnet.zilliqa.com", "standard": "EIP3091" } ], - "1564830818": [ + "33210": [ { - "name": "Blockscout", - "url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com", + "name": "CLOUDVERSE Explorer", + "url": "https://subnets.avax.network/cloudverse", "standard": "EIP3091" } ], - "1666600000": [ + "33333": [ { - "name": "Harmony Block Explorer", - "url": "https://explorer.harmony.one", + "name": "avescan", + "url": "https://avescan.io", + "icon": "avescan", "standard": "EIP3091" } ], - "1666600001": [ + "33385": [ { - "name": "Harmony Block Explorer", - "url": "https://explorer.harmony.one/blocks/shard/1", - "standard": "none" + "name": "Zilliqa EVM Devnet Explorer", + "url": "https://otterscan.devnet.zilliqa.com", + "standard": "EIP3091" } ], - "1666700000": [ + "33469": [ { - "name": "Harmony Testnet Block Explorer", - "url": "https://explorer.testnet.harmony.one", + "name": "Zilliqa-2 EVM Devnet Explorer", + "url": "https://explorer.zq2-devnet.zilliqa.com", "standard": "EIP3091" } ], - "1666700001": [ + "33979": [ { - "name": "Harmony Block Explorer", - "url": "https://explorer.testnet.harmony.one", + "name": "Funki Mainnet Explorer", + "url": "https://mainnet.funkichain.com", "standard": "none" } ], - "1802203764": [ - { - "name": "Kakarot Scan", - "url": "https://sepolia.kakarotscan.org", - "standard": "EIP3091" - }, + "34443": [ { - "name": "Kakarot Explorer", - "url": "https://sepolia-explorer.kakarot.org", - "standard": "EIP3091" + "name": "modescout", + "url": "https://explorer.mode.network", + "standard": "none" } ], - "1918988905": [ + "35011": [ { - "name": "rarichain-testnet-explorer", - "url": "https://explorer.rarichain.org", + "name": "J2O Taro Explorer", + "url": "https://exp.j2o.io", + "icon": "j2otaro", "standard": "EIP3091" } ], - "2046399126": [ + "35441": [ { - "name": "Blockscout", - "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", + "name": "Q explorer", + "url": "https://explorer.q.org", + "icon": "q", "standard": "EIP3091" } ], - "4216137055": [ + "35443": [ { - "name": "OneLedger Block Explorer", - "url": "https://frankenstein-explorer.oneledger.network", + "name": "Q explorer", + "url": "https://explorer.qtestnet.org", + "icon": "q", "standard": "EIP3091" } ], - "11297108109": [ + "38400": [ { - "name": "Chainlens", - "url": "https://palm.chainlens.com", - "standard": "EIP3091" - }, + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } + ], + "38401": [ { - "name": "Dora", - "url": "https://www.ondora.xyz/network/palm", + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", "standard": "none" } ], - "11297108099": [ + "39656": [ { - "name": "Chainlens", - "url": "https://testnet.palm.chainlens.com", + "name": "Primal Network", + "url": "https://prmscan.org", "standard": "EIP3091" - }, - { - "name": "Dora", - "url": "https://www.ondora.xyz/network/palm-testnet", - "standard": "none" } ], - "37714555429": [ + "39815": [ { - "name": "Blockscout", - "url": "https://testnet-explorer-v2.xai-chain.net", + "name": "ohoscan", + "url": "https://ohoscan.com", + "icon": "ohoscan", "standard": "EIP3091" } ], - "88153591557": [ + "41500": [ + { + "name": "Opulent-X BETA Explorer", + "url": "https://explorer.opulent-x.com", + "standard": "none" + } + ], + "42072": [ { - "name": "blockscout", - "url": "https://arb-blueberry.gelatoscout.com", - "icon": "blockscout", + "name": "AgentLayer Testnet Explorer", + "url": "https://testnet-explorer.agentlayer.xyz", "standard": "EIP3091" } ], - "111222333444": [ + "42161": [ { - "name": "Alphabet Explorer", - "url": "https://scan.alphabetnetwork.org", + "name": "Arbiscan", + "url": "https://arbiscan.io", "standard": "EIP3091" - } - ], - "197710212030": [ + }, { - "name": "Ntity Blockscout", - "url": "https://blockscout.ntity.io", - "icon": "ntity", + "name": "Arbitrum Explorer", + "url": "https://explorer.arbitrum.io", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://arbitrum.dex.guru", + "icon": "dexguru", "standard": "EIP3091" } ], - "197710212031": [ + "42170": [ { - "name": "Ntity Haradev Blockscout", - "url": "https://blockscout.haradev.com", - "icon": "ntity", + "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" } ], - "202402181627": [ + "42220": [ { - "name": "gmnetwork-testnet", - "url": "https://gmnetwork-testnet-explorer.alt.technology", + "name": "Celoscan", + "url": "https://celoscan.io", "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://explorer.celo.org", + "standard": "none" } ], - "383414847825": [ + "42261": [ { - "name": "zeniq-smart-chain-explorer", - "url": "https://smart.zeniq.net", + "name": "Oasis Emerald Testnet Explorer", + "url": "https://explorer.oasis.io/testnet/emerald", "standard": "EIP3091" } ], - "666301171999": [ + "42262": [ { - "name": "ipdcscan", - "url": "https://scan.ipdc.io", + "name": "Oasis Emerald Explorer", + "url": "https://explorer.oasis.io/mainnet/emerald", "standard": "EIP3091" } ], - "2713017997578000": [ + "42355": [ { - "name": "dchaint scan", - "url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", + "name": "GoldXChain Explorer", + "url": "https://explorer.goldxchain.io", "standard": "EIP3091" } ], - "2716446429837000": [ + "42766": [ { - "name": "dchain scan", - "url": "https://dchain-2716446429837000-1.sagaexplorer.io", + "name": "blockscout", + "url": "https://scan.zkfair.io", + "icon": "zkfair", "standard": "EIP3091" } - ] -}; - -export const NETWORK_FAUCETS = { - "1": [], - "2": [], - "3": [ - "http://fauceth.komputing.org?chain=3&address=${ADDRESS}", - "https://faucet.ropsten.be?${ADDRESS}" - ], - "4": [ - "http://fauceth.komputing.org?chain=4&address=${ADDRESS}", - "https://faucet.rinkeby.io" - ], - "5": [ - "http://fauceth.komputing.org?chain=5&address=${ADDRESS}", - "https://goerli-faucet.slock.it?address=${ADDRESS}", - "https://faucet.goerli.mudit.blog" - ], - "7": [], - "8": [], - "9": [], - "10": [], - "11": [], - "12": [], - "13": [], - "14": [], - "15": [], - "16": [ - "https://faucet.flare.network" - ], - "17": [], - "18": [ - "https://faucet-testnet.thundercore.com" - ], - "19": [], - "20": [], - "21": [ - "https://esc-faucet.elastos.io/" - ], - "22": [], - "23": [], - "24": [], - "25": [], - "26": [], - "27": [], - "29": [], - "30": [], - "31": [ - "https://faucet.rsk.co/" - ], - "32": [], - "33": [], - "34": [], - "35": [], - "36": [], - "37": [], - "38": [], - "39": [], - "40": [], - "41": [ - "https://app.telos.net/testnet/developers" - ], - "42": [], - "43": [ - "https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a" - ], - "44": [], - "45": [ - "https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2" - ], - "46": [], - "47": [], - "48": [], - "49": [], - "50": [], - "51": [ - "https://faucet.apothem.network" - ], - "52": [], - "53": [], - "54": [], - "55": [], - "56": [], - "57": [ - "https://faucet.syscoin.org" - ], - "58": [], - "60": [], - "61": [], - "63": [ - "https://easy.hebeswap.com/#/faucet", - "https://faucet.mordortest.net" - ], - "64": [], - "65": [ - "https://www.okex.com/drawdex" - ], - "66": [], - "67": [], - "68": [], - "69": [ - "http://fauceth.komputing.org?chain=69&address=${ADDRESS}" - ], - "70": [], - "71": [ - "https://faucet.confluxnetwork.org" - ], - "72": [ - "https://faucet.dxscan.io" - ], - "73": [ - "https://faucet-testnet.fncy.world" - ], - "74": [], - "75": [], - "76": [], - "77": [], - "78": [], - "79": [], - "80": [], - "81": [], - "82": [ - "https://faucet.meter.io" - ], - "83": [ - "https://faucet-warringstakes.meter.io" - ], - "84": [], - "85": [ - "https://www.gatescan.org/testnet/faucet" - ], - "86": [ - "https://www.gatescan.org/faucet" - ], - "87": [], - "88": [], - "89": [], - "90": [], - "91": [], - "92": [], - "93": [], - "94": [], - "95": [ - "https://faucet.camdl.gov.kh/" - ], - "96": [], - "97": [ - "https://testnet.bnbchain.org/faucet-smart" - ], - "98": [], - "99": [], - "100": [ - "https://gnosisfaucet.com", - "https://stakely.io/faucet/gnosis-chain-xdai", - "https://faucet.prussia.dev/xdai" - ], - "101": [], - "102": [], - "103": [], - "104": [], - "105": [], - "106": [], - "107": [ - "https://faucet.novanetwork.io" - ], - "108": [], - "109": [], - "110": [], - "111": [ - "https://etherlite.org/faucets" - ], - "112": [], - "113": [ - "https://buy.dehvo.com" - ], - "114": [ - "https://faucet.flare.network" ], - "117": [], - "118": [], - "119": [], - "120": [ - "http://faucet.nuls.io" + "42793": [ + { + "name": "Etherlink Explorer", + "url": "https://explorer.etherlink.com", + "standard": "EIP3091" + } ], - "121": [], - "122": [], - "123": [ - "https://get.fusespark.io" + "42801": [ + { + "name": "Gesoten Verse Testnet Explorer", + "url": "https://explorer.testnet.verse.gesoten.com", + "standard": "EIP3091" + } ], - "124": [], - "125": [ - "https://faucet.oychain.io" + "42888": [ + { + "name": "kintoscan", + "url": "http://35.215.120.180:4000", + "standard": "EIP3091" + } ], - "126": [], - "127": [], - "128": [], - "129": [], - "131": [], - "132": [], - "133": [], - "134": [], - "135": [ - "https://faucet.alyxchain.com" + "43113": [ + { + "name": "snowtrace", + "url": "https://testnet.snowtrace.io", + "standard": "EIP3091" + } ], - "136": [], - "137": [], - "138": [], - "139": [], - "140": [], - "141": [], - "142": [], - "144": [], - "145": [], - "147": [], - "148": [], - "150": [ - "https://faucet.sixprotocol.net" + "43114": [ + { + "name": "snowtrace", + "url": "https://snowtrace.io", + "standard": "EIP3091" + } ], - "151": [], - "152": [], - "153": [], - "154": [], - "155": [ - "https://faucet.testnet.tenet.org" + "43851": [ + { + "name": "ZKFair Testnet Info", + "url": "https://testnet-scan.zkfair.io", + "icon": "zkfair", + "standard": "EIP3091" + } ], - "156": [], - "157": [ - "https://beta.shibariumtech.com/faucet" + "44444": [ + { + "name": "blockscout", + "url": "https://frenscan.io", + "icon": "fren", + "standard": "EIP3091" + } ], - "158": [], - "159": [], - "160": [], - "161": [], - "162": [ - "https://discuss.lightstreams.network/t/request-test-tokens" + "44445": [ + { + "name": "Quantum Explorer", + "url": "https://qtm.avescoin.io", + "icon": "quantum", + "standard": "EIP3091" + } ], - "163": [], - "164": [], - "166": [], - "167": [], - "168": [], - "169": [], - "170": [ - "https://faucet-testnet.hscscan.com/" + "44787": [ + { + "name": "Alfajoresscan", + "url": "https://alfajores.celoscan.io", + "standard": "EIP3091" + } ], - "172": [ - "https://faucet.latam-blockchain.com" + "45000": [ + { + "name": "autobahn explorer", + "url": "https://explorer.autobahn.network", + "icon": "autobahn", + "standard": "EIP3091" + } ], - "176": [], - "180": [], - "181": [], - "185": [], - "186": [], - "188": [], - "189": [], - "191": [], - "193": [], - "195": [ - "https://www.okx.com/xlayer/faucet" + "45454": [ + { + "name": "blockscout", + "url": "https://swamps-explorer.tc.l2aas.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "196": [], - "197": [ - "https://neutrinoschain.com/faucet" + "45510": [ + { + "name": "Deelance Mainnet Explorer", + "url": "https://deescan.com", + "standard": "EIP3091" + } ], - "198": [], - "199": [], - "200": [], - "201": [], - "202": [], - "204": [], - "206": [], - "207": [], - "208": [], - "210": [], - "211": [ - "http://faucet.freight.sh" + "46688": [ + { + "name": "fsnscan", + "url": "https://testnet.fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } ], - "212": [ - "https://faucet.mapprotocol.io" + "47805": [ + { + "name": "rei-scan", + "url": "https://scan.rei.network", + "standard": "none" + } ], - "213": [], - "214": [], - "217": [], - "220": [ - "https://faucet.scalind.com" + "48795": [ + { + "name": "SPACE Explorer", + "url": "https://subnets-test.avax.network/space", + "standard": "EIP3091" + } ], - "223": [], - "224": [ - "https://faucet.vrd.network" + "48899": [ + { + "name": "Zircuit", + "url": "https://explorer.zircuit.com", + "icon": "zircuit", + "standard": "none" + } ], - "225": [], - "226": [], - "228": [], - "230": [], - "234": [ - "https://protojumbo.jumbochain.org/faucet-smart" + "49049": [ + { + "name": "Wire Explorer", + "url": "https://floripa-explorer.wireshape.org", + "standard": "EIP3091" + } ], - "236": [ - "https://faucet.deamchain.com" + "49088": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.testnet.bifrostnetwork.com", + "standard": "EIP3091" + } ], - "242": [], - "246": [], - "248": [], - "250": [], - "252": [], - "255": [], - "256": [ - "https://scan-testnet.hecochain.com/faucet" + "49321": [ + { + "name": "blockscout", + "url": "https://testnet.gunzscan.io", + "standard": "EIP3091" + } ], - "258": [], - "259": [], - "262": [], - "266": [], - "267": [ - "https://testnet.neuraprotocol.io/faucet" + "50005": [ + { + "name": "Yooldo Verse Explorer", + "url": "https://explorer.yooldo-verse.xyz", + "standard": "EIP3091" + } ], - "268": [], - "269": [ - "https://myhpbwallet.com/" + "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" + } ], - "271": [], - "274": [], - "278": [], - "279": [], - "282": [ - "https://zkevm.cronos.org/faucet" + "51178": [ + { + "name": "LumozTestnetInfo", + "url": "https://lumoz.info", + "icon": "opside-new", + "standard": "EIP3091" + } ], - "288": [], - "291": [], - "295": [], - "296": [ - "https://portal.hedera.com" + "51712": [ + { + "name": "Sardis", + "url": "https://contract-mainnet.sardisnetwork.com", + "standard": "EIP3091" + } ], - "297": [ - "https://portal.hedera.com" + "52014": [ + { + "name": "blockscout", + "url": "https://blockexplorer.electroneum.com", + "icon": "electroneum", + "standard": "EIP3091" + } ], - "298": [], - "300": [], - "302": [], - "303": [], - "305": [], - "307": [ - "https://faucet.lovely.network" + "53277": [ + { + "name": "DOID Scan", + "url": "https://scan.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } ], - "308": [], - "309": [], - "311": [ - "https://faucet.omaxray.com/" + "53302": [ + { + "name": "seedscout", + "url": "https://sepolia-explorer.superseed.xyz", + "standard": "EIP3091" + } ], - "313": [], - "314": [], - "321": [], - "322": [ - "https://faucet-testnet.kcc.network" + "53457": [ + { + "name": "DODOchain Testnet (Sepolia) Explorer", + "url": "https://testnet-scan.dodochain.com", + "icon": "dodochain_testnet", + "standard": "EIP3091" + } ], - "323": [], - "324": [], - "333": [], - "335": [], - "336": [], - "338": [ - "https://cronos.org/faucet" + "53935": [ + { + "name": "ethernal", + "url": "https://explorer.dfkchain.com", + "icon": "ethereum", + "standard": "none" + } ], - "345": [], - "361": [], - "363": [], - "364": [], - "365": [], - "369": [], - "371": [], - "380": [], - "381": [], - "385": [ - "https://pipa.lisinski.online" + "54211": [ + { + "name": "TestEdge HAQQ Explorer", + "url": "https://explorer.testedge2.haqq.network", + "standard": "EIP3091" + } ], - "395": [ - "https://faucet.testnet.camdl.gov.kh/" + "54321": [ + { + "name": "toronet_explorer", + "url": "https://testnet.toronet.org", + "standard": "none" + } ], - "397": [], - "398": [], - "399": [], - "400": [ - "https://faucet.hyperonchain.com" + "54555": [ + { + "name": "photon_testnet_explorer", + "url": "https://testnet.photonchain.io", + "standard": "none" + } ], - "401": [], - "404": [], - "411": [], - "416": [], - "418": [ - "https://faucet.lachain.network" + "55004": [ + { + "name": "blockscout", + "url": "https://explorer.titan.tokamak.network", + "standard": "EIP3091" + } ], - "420": [], - "422": [], - "424": [], - "427": [], - "428": [], - "434": [], - "443": [], - "444": [], - "456": [], - "462": [], - "463": [], - "499": [], - "500": [], - "501": [], - "510": [], - "512": [], - "513": [ - "https://scan-testnet.acuteangle.com/faucet" + "55555": [ + { + "name": "reiscan", + "url": "https://reiscan.com", + "standard": "EIP3091" + } ], - "516": [], - "520": [ - "https://xsc.pub/faucet" + "55556": [ + { + "name": "reiscan", + "url": "https://testnet.reiscan.com", + "standard": "EIP3091" + } ], - "529": [], - "530": [], - "534": [], - "537": [], - "542": [], - "545": [ - "https://testnet-faucet.onflow.org" + "56026": [ + { + "name": "Lambda Chain Mainnet Explorer", + "url": "https://scan.lambda.im", + "standard": "EIP3091" + } ], - "555": [], - "558": [], - "568": [ - "https://faucet.dogechain.dog" + "56288": [ + { + "name": "Boba BNB block explorer", + "url": "https://bobascan.com", + "standard": "none" + } ], - "570": [ - "https://rollux.id/faucetapp" + "56400": [ + { + "name": "TESTNETZER Explorer", + "url": "https://subnets-test.avax.network/testnetzer", + "standard": "EIP3091" + } ], - "571": [], - "579": [], - "592": [], - "595": [], - "596": [], - "597": [], - "600": [], - "601": [ - "https://vne.network/rose" + "56789": [ + { + "name": "novascan", + "url": "https://novascan.velo.org", + "standard": "EIP3091" + } ], - "612": [], - "614": [], - "634": [], - "646": [ - "https://previewnet-faucet.onflow.org" + "56797": [ + { + "name": "DOID Testnet Scan", + "url": "https://scan.testnet.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } ], - "647": [ - "https://faucet.toronto.sx.technology" + "57000": [ + { + "name": "Rollux Testnet Explorer", + "url": "https://rollux.tanenbaum.io", + "standard": "EIP3091" + } ], - "648": [], - "653": [], - "654": [], - "662": [], - "666": [ - "https://chain.pixie.xyz/faucet" + "57451": [ + { + "name": "coinsecnetwork", + "url": "https://explorer.coinsec.network", + "standard": "EIP3091" + } ], - "667": [], - "668": [], - "669": [ - "https://faucet-testnet.juncachain.com" + "58008": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "686": [], - "690": [], - "700": [], - "701": [], - "707": [], - "708": [ - "https://faucet.bcsdev.io" + "59140": [ + { + "name": "Etherscan", + "url": "https://goerli.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.goerli.linea.build", + "standard": "EIP3091", + "icon": "linea" + } ], - "710": [], - "713": [], - "719": [], - "721": [], - "727": [], - "730": [], - "741": [ - "https://faucet.vention.network" + "59141": [ + { + "name": "Etherscan", + "url": "https://sepolia.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.sepolia.linea.build", + "standard": "EIP3091", + "icon": "linea" + } ], - "742": [], - "747": [], - "766": [], - "776": [ - "https://faucet.openchain.info/" + "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" + } ], - "777": [], - "786": [], - "787": [], - "788": [ - "https://faucet.aerochain.id/" + "59971": [ + { + "name": "Genesys Scan", + "url": "https://genesysscan.io", + "icon": "genesyscode", + "standard": "none" + } ], - "789": [], - "799": [ - "https://faucet.testnet.rupaya.io" + "60000": [ + { + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net", + "standard": "EIP3091" + } ], - "800": [ - "https://faucet.lucidcoin.io" + "60001": [ + { + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net", + "standard": "EIP3091" + } ], - "803": [], - "808": [], - "810": [ - "https://www.haven1.org/faucet" + "60002": [ + { + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net", + "standard": "EIP3091" + } ], - "813": [], - "814": [], - "818": [], - "820": [], - "822": [ - "https://faucet.runic.build" + "60103": [ + { + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + } ], - "831": [], - "841": [], - "842": [], - "859": [], - "868": [], - "876": [], - "877": [ - "https://faucet.dexit.network" + "60808": [ + { + "name": "bobscout", + "url": "https://explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "880": [], - "888": [], - "898": [ - "https://faucet.maxi.network" + "61406": [ + { + "name": "KaiChain Explorer", + "url": "https://explorer.kaichain.net", + "standard": "EIP3091" + } ], - "899": [], - "900": [ - "https://faucet-testnet.garizon.com" + "61800": [ + { + "name": "AxelChain Dev-Net Explorer", + "url": "https://devexplorer2.viacube.com", + "standard": "EIP3091" + } ], - "901": [ - "https://faucet-testnet.garizon.com" + "61803": [ + { + "name": "eticascan", + "url": "https://eticascan.org", + "standard": "EIP3091" + }, + { + "name": "eticastats", + "url": "http://explorer.etica-stats.org", + "standard": "EIP3091" + } ], - "902": [ - "https://faucet-testnet.garizon.com" + "61916": [ + { + "name": "DSC Scan", + "url": "https://explore.doken.dev", + "icon": "doken", + "standard": "EIP3091" + } ], - "903": [ - "https://faucet-testnet.garizon.com" + "62049": [ + { + "name": "optopia-testnet-scan", + "url": "https://scan-testnet.optopia.ai", + "icon": "optopia", + "standard": "EIP3091" + } ], - "909": [], - "910": [], - "911": [], - "917": [ - "https://faucet.thefirechain.com" + "62050": [ + { + "name": "optopia-scan", + "url": "https://scan.optopia.ai", + "icon": "optopia", + "standard": "EIP3091" + } ], - "919": [ - "https://sepoliafaucet.com/" + "62298": [ + { + "name": "Citrea Devnet Explorer", + "url": "https://explorer.devnet.citrea.xyz", + "icon": "citrea", + "standard": "EIP3091" + } ], - "927": [], - "943": [ - "https://faucet.v4.testnet.pulsechain.com/" + "62621": [ + { + "name": "MultiVAC Explorer", + "url": "https://e.mtv.ac", + "standard": "none" + } ], - "956": [], - "957": [], - "963": [], - "969": [], - "970": [], - "971": [], - "972": [], - "977": [ - "https://faucet.nepalblockchain.network" + "62831": [ + { + "name": "Avalanche Subnet Testnet Explorer", + "url": "https://subnets-test.avax.network/plyr", + "standard": "EIP3091" + } ], - "979": [], - "980": [], - "985": [ - "https://faucet.metamemo.one/" + "63000": [ + { + "name": "eCredits MainNet Explorer", + "url": "https://explorer.ecredits.com", + "icon": "ecredits", + "standard": "EIP3091" + } ], - "989": [], - "990": [ - "https://faucet.eliberty.ngo" + "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" + } ], - "997": [ - "https://explorer.5ire.network/faucet" + "66988": [ + { + "name": "JanusNetwork Testnet Explorer", + "url": "https://beta.scan.janusnetwork.io", + "standard": "none" + } ], - "998": [], - "999": [], - "1000": [], - "1001": [ - "https://baobab.wallet.klaytn.com/access?next=faucet" + "68770": [ + { + "name": "DM2Verse Explorer", + "url": "https://explorer.dm2verse.dmm.com", + "standard": "EIP3091" + } ], - "1003": [], - "1004": [], - "1007": [], - "1008": [], - "1009": [], - "1010": [], - "1011": [], - "1012": [], - "1022": [], - "1023": [], - "1024": [], - "1028": [], - "1030": [], - "1031": [], - "1038": [ - "https://faucet.bronos.org" + "69420": [ + { + "name": "Condrieu explorer", + "url": "https://explorer.condrieu.ethdevops.io", + "standard": "none" + } ], - "1039": [], - "1073": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" + "70000": [ + { + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net", + "standard": "EIP3091" + } ], - "1075": [ - "https://evm-toolkit.evm.testnet.iotaledger.net" + "70001": [ + { + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net", + "standard": "EIP3091" + } ], - "1079": [], - "1080": [], - "1088": [], - "1089": [], - "1099": [], - "1100": [], - "1101": [], - "1107": [], - "1108": [], - "1111": [], - "1112": [ - "https://wallet.test.wemix.com/faucet" + "70002": [ + { + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net", + "standard": "EIP3091" + } ], - "1113": [], - "1115": [ - "https://scan.test.btcs.network/faucet" + "70103": [ + { + "name": "thinkiumscan", + "url": "https://chain103.thinkiumscan.net", + "standard": "EIP3091" + } ], - "1116": [], - "1117": [ - "https://faucet.dogcoin.network" + "70700": [ + { + "name": "Proof of Play Apex Explorer", + "url": "https://explorer.apex.proofofplay.com", + "icon": "pop-apex", + "standard": "EIP3091" + } ], - "1123": [], - "1130": [], - "1131": [], - "1133": [ - "http://tc04.mydefichain.com/faucet" + "71111": [ + { + "name": "GuapcoinX Explorer", + "url": "http://explorer.guapcoinx.com", + "standard": "none", + "icon": "guapcoinx" + } ], - "1135": [], - "1138": [], - "1139": [], - "1140": [ - "https://scan.boka.network/#/Galois/faucet" + "71401": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.testnet.gwscan.com", + "standard": "none" + } ], - "1147": [ - "https://faucet.flagscan.xyz" + "71402": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.gwscan.com", + "standard": "none" + } ], - "1149": [], - "1170": [], - "1177": [], - "1188": [], - "1197": [], - "1200": [], - "1201": [], - "1202": [], - "1209": [], - "1210": [ - "https://cuckoo.network/portal/faucet/" + "72778": [ + { + "name": "ankara", + "url": "https://explorer.ankara-cagacrypto.com", + "standard": "EIP3091" + } ], - "1213": [], - "1214": [], - "1221": [], - "1225": [], - "1229": [], - "1230": [], - "1231": [], - "1234": [], - "1235": [], - "1243": [], - "1244": [ - "https://faucet.archiechain.io" + "72992": [ + { + "name": "GrokScan", + "url": "https://mainnet-explorer.grokchain.dev", + "standard": "none" + } ], - "1246": [], - "1248": [], - "1252": [ - "https://cicfaucet.com" + "73114": [ + { + "name": "ICB Tesnet Explorer", + "url": "https://testnet.icbscan.io", + "standard": "EIP3091" + } ], - "1280": [], - "1284": [], - "1285": [], - "1287": [], - "1288": [], - "1291": [ - "https://faucet.testnet.swisstronik.com" + "73115": [ + { + "name": "ICB Explorer", + "url": "https://icbscan.io", + "standard": "EIP3091" + } ], - "1311": [], - "1314": [], - "1319": [], - "1320": [ - "https://aia-faucet-testnet.aiachain.org" + "73927": [ + { + "name": "mvmscan", + "url": "https://scan.mvm.dev", + "icon": "mvm", + "standard": "EIP3091" + } ], - "1328": [ - "https://atlantic-2.app.sei.io/faucet" + "75000": [ + { + "name": "ResinScan", + "url": "https://explorer.resincoin.dev", + "standard": "none" + } ], - "1329": [], - "1337": [], - "1338": [], - "1339": [], - "1343": [], - "1353": [], - "1369": [], - "1370": [], - "1377": [], - "1379": [], - "1388": [], - "1392": [], - "1414": [], - "1433": [], - "1440": [], - "1442": [], - "1452": [], - "1453": [ - "https://istanbul-faucet.metachain.dev" + "75512": [ + { + "name": "Geek Explorer", + "url": "https://explorer.geekout-pte.com", + "standard": "EIP3091" + } ], - "1455": [ - "https://faucet.ctexscan.com" + "75513": [ + { + "name": "Geek Testnet Explorer", + "url": "https://explorer-testnet.geekout-pte.com", + "standard": "EIP3091" + } ], - "1490": [], - "1499": [], - "1501": [], - "1506": [], - "1507": [], - "1515": [ - "https://faucet.beagle.chat/" + "77001": [ + { + "name": "BORAchainscope", + "url": "https://scope.boraportal.com", + "standard": "EIP3091" + } + ], + "77238": [ + { + "name": "Foundry Scan Testnet", + "url": "https://testnet-explorer.foundryscan.org", + "standard": "EIP3091" + } ], - "1559": [], - "1617": [], - "1618": [], - "1620": [], - "1625": [], - "1657": [], - "1662": [], - "1663": [ - "https://faucet.horizen.io" + "77612": [ + { + "name": "ventionscan", + "url": "https://ventionscan.io", + "standard": "EIP3091" + } ], - "1686": [], - "1687": [], - "1688": [], - "1701": [ - "https://evm.anytype.io/faucet" + "77777": [ + { + "name": "toronet_explorer", + "url": "https://toronet.org/explorer", + "standard": "none" + } ], - "1707": [], - "1708": [ - "https://faucet.blockchain.or.th" + "78281": [ + { + "name": "Dragonfly Blockscout", + "url": "https://blockscout.dragonfly.hexapod.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "1717": [], - "1718": [], - "1729": [], - "1740": [], - "1750": [], - "1773": [], - "1777": [], - "1789": [], - "1804": [ - "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" + "78430": [ + { + "name": "AMPLIFY Explorer", + "url": "https://subnets-test.avax.network/amplify", + "standard": "EIP3091" + } ], - "1807": [ - "https://analogfaucet.com" + "78431": [ + { + "name": "BULLETIN Explorer", + "url": "https://subnets-test.avax.network/bulletin", + "standard": "EIP3091" + } ], - "1818": [], - "1819": [ - "https://faucet.cube.network" + "78432": [ + { + "name": "CONDUIT Explorer", + "url": "https://subnets-test.avax.network/conduit", + "standard": "EIP3091" + } ], - "1821": [], - "1856": [], - "1875": [], - "1881": [], - "1890": [], - "1891": [ - "https://faucet.pegasus.lightlink.io/" + "78600": [ + { + "name": "Vanguard Explorer", + "url": "https://explorer-vanguard.vanarchain.com", + "icon": "vanguard", + "standard": "EIP3091" + } ], - "1898": [], - "1904": [], - "1907": [], - "1908": [ - "https://faucet.bitcichain.com" + "79879": [ + { + "name": "Gold Smart Chain", + "url": "https://testnet.goldsmartchain.com", + "standard": "EIP3091" + } ], - "1909": [], - "1911": [], - "1912": [ - "https://claim-faucet.rubychain.io/" + "80001": [ + { + "name": "polygonscan", + "url": "https://mumbai.polygonscan.com", + "standard": "EIP3091" + } ], - "1918": [], - "1945": [], - "1951": [], - "1953": [], - "1954": [], - "1956": [], - "1961": [], - "1967": [ - "https://faucet.metatime.com/eleanor" + "80002": [ + { + "name": "polygonamoy", + "url": "https://www.oklink.com/amoy", + "standard": "EIP3091" + } ], - "1969": [ - "https://testnet.scschain.com" + "80084": [ + { + "name": "Beratrail", + "url": "https://bartio.beratrail.io", + "icon": "berachain", + "standard": "none" + } ], - "1970": [], - "1971": [], - "1972": [], - "1975": [], - "1984": [], - "1985": [], - "1986": [], - "1987": [], - "1992": [], - "1994": [], - "1995": [ - "https://faucet.edexa.com/" + "80085": [ + { + "name": "Beratrail", + "url": "https://artio.beratrail.io", + "icon": "berachain", + "standard": "none" + } ], - "1996": [], - "1997": [], - "1998": [ - "https://faucet.kyotoprotocol.io" + "80096": [ + { + "name": "blockscout", + "url": "https://hizoco.net:38443", + "standard": "none" + } ], - "2000": [], - "2001": [], - "2002": [], - "2004": [], - "2008": [], - "2009": [], - "2013": [], - "2014": [], - "2016": [], - "2017": [ - "https://telcoin.network/faucet" + "81041": [ + { + "name": "nordek", + "url": "https://nordekscan.com", + "standard": "EIP3091" + } ], - "2018": [], - "2019": [], - "2020": [], - "2021": [], - "2022": [], - "2023": [ - "https://ttaycan-faucet.hupayx.io/" + "81457": [ + { + "name": "Blastscan", + "url": "https://blastscan.io", + "icon": "blast", + "standard": "EIP3091" + }, + { + "name": "Blast Explorer", + "url": "https://blastexplorer.io", + "icon": "blast", + "standard": "EIP3091" + } ], - "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" + "81720": [ + { + "name": "Quantum Scan Mainnet", + "url": "https://quantumscan.org", + "standard": "EIP3091" + } ], - "2202": [ - "https://faucet.antofy.io" + "82459": [ + { + "name": "SLN Testnet Explorer", + "url": "https://explorer.test.smartlayer.network", + "standard": "EIP3091" + } ], - "2203": [], - "2213": [], - "2221": [ - "https://faucet.kava.io" + "83872": [ + { + "name": "Zedscan", + "url": "http://zedscan.net", + "standard": "EIP3091" + } ], - "2222": [], - "2223": [], - "2241": [], - "2300": [], - "2306": [], - "2309": [], - "2323": [ - "https://faucet.somanetwork.io" + "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" + } ], - "2330": [], - "2331": [], - "2332": [ - "https://airdrop.somanetwork.io" + "84532": [ + { + "name": "basescout", + "url": "https://base-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "2340": [ - "https://app-olympia.atleta.network/faucet" + "84886": [ + { + "name": "Aerie Explorer", + "url": "https://explorer.aerielab.io", + "icon": "aerie", + "standard": "EIP3091" + } ], - "2342": [ - "https://www.omniaverse.io" + "88002": [ + { + "name": "Nautscan", + "url": "https://proteus.nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } ], - "2355": [], - "2358": [], - "2370": [ - "https://evm-faucet.nexis.network" + "88559": [ + { + "name": "inoai live", + "url": "https://inoai.live", + "standard": "none" + } ], - "2399": [ - "https://faucet.bombchain-testnet.ankr.com/" + "88817": [ + { + "name": "explorer-testnet", + "url": "https://explorer-testnet.unit0.dev", + "standard": "EIP3091" + } ], - "2400": [], - "2410": [], - "2415": [], - "2425": [], - "2442": [], - "2458": [ - "https://faucet-testnet.hybridchain.ai" + "88819": [ + { + "name": "explorer-stagenet", + "url": "https://explorer-stagenet.unit0.dev", + "standard": "EIP3091" + } ], - "2468": [ - "https://faucet-testnet.hybridchain.ai" + "88882": [ + { + "name": "spicy-explorer", + "url": "https://testnet.chiliscan.com", + "standard": "EIP3091" + } ], - "2484": [ - "https://faucet.uniultra.xyz" + "88888": [ + { + "name": "chiliscan", + "url": "https://chiliscan.com", + "standard": "EIP3091" + }, + { + "name": "chilizscan", + "url": "https://scan.chiliz.com", + "standard": "EIP3091" + } ], - "2522": [], - "2525": [], - "2559": [], - "2569": [], - "2606": [], - "2611": [], - "2612": [], - "2613": [ - "https://testnet-faucet.ezchain.com" + "90210": [ + { + "name": "Beverly Hills explorer", + "url": "https://explorer.beverlyhills.ethdevops.io", + "standard": "none" + } ], - "2625": [ - "https://testnet.whitechain.io/faucet" + "90354": [ + { + "name": "blockscout", + "url": "https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "2648": [], - "2649": [], - "2662": [], - "2710": [], - "2718": [], - "2730": [], - "2731": [], - "2748": [], - "2777": [], - "2810": [], - "2907": [], - "2911": [], - "2941": [ - "https://xfaucet.xenonchain.com" + "91002": [ + { + "name": "Nautscan", + "url": "https://triton.nautscan.com", + "standard": "EIP3091" + } ], - "2999": [], - "3000": [ - "https://app-faucet.centrality.me" + "91120": [ + { + "name": "MetaDAP Enterprise Mainnet explorer", + "url": "https://explorer.chain.metadap.io", + "standard": "none" + } ], - "3001": [ - "https://app-faucet.centrality.me" + "91715": [ + { + "name": "combotrace explorer", + "url": "https://combotrace-testnet.nodereal.io", + "standard": "EIP3091" + } ], - "3003": [], - "3011": [], - "3031": [], - "3033": [], - "3068": [], - "3073": [], - "3100": [], - "3102": [], - "3109": [], - "3110": [], - "3269": [], - "3270": [ - "https://faucet.arabianchain.org/" + "92001": [ + { + "name": "Lambda EVM Explorer", + "url": "https://explorer.lambda.top", + "standard": "EIP3091", + "icon": "lambda" + } ], - "3306": [], - "3331": [ - "https://faucet.zcore.cash" + "93572": [ + { + "name": "LiquidLayer Testnet Explorer", + "url": "https://testnet-scan.liquidlayer.network", + "standard": "EIP3091" + } ], - "3333": [], - "3334": [], - "3335": [], - "3400": [], - "3424": [], - "3434": [ - "https://faucet.securechain.ai" + "96970": [ + { + "name": "Mantis Blockscout", + "url": "https://blockscout.mantis.hexapod.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "3456": [ - "https://testnet-faucet.layeredge.io" + "97531": [ + { + "name": "Green Chain Explorer", + "url": "https://explorer.greenchain.app", + "standard": "EIP3091" + } ], - "3490": [], - "3500": [ - "https://faucet.paribuscan.com" + "97970": [ + { + "name": "OptimusZ7 Testnet Explorer", + "url": "https://testnet.optimusz7.com", + "standard": "EIP3091" + } ], - "3501": [], - "3601": [], - "3602": [], - "3630": [], - "3636": [ - "https://faucet.botanixlabs.dev" + "99099": [ + { + "name": "eLiberty Testnet", + "url": "https://testnet.eliberty.ngo", + "standard": "EIP3091" + } ], - "3637": [ - "https://faucet.btxtestchain.com" + "100001": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/0", + "standard": "EIP3091" + } ], - "3639": [], - "3645": [], - "3666": [], - "3690": [], - "3693": [], - "3698": [ - "https://faucet.senjepowersscan.com" + "100002": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/1", + "standard": "EIP3091" + } ], - "3699": [ - "https://faucet.senjepowersscan.com" + "100003": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/2", + "standard": "EIP3091" + } ], - "3737": [ - "https://faucet.crossbell.io" + "100004": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/3", + "standard": "EIP3091" + } ], - "3776": [], - "3797": [], - "3799": [ - "https://faucet.tangle.tools" + "100005": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/4", + "standard": "EIP3091" + } ], - "3885": [ - "zkevm-faucet.thefirechain.com" + "100006": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/5", + "standard": "EIP3091" + } ], - "3888": [], - "3889": [], - "3912": [ - "https://www.dracscan.io/faucet" + "100007": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/6", + "standard": "EIP3091" + } ], - "3939": [], - "3966": [ - "https://faucet.dynoscan.io" + "100008": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/7", + "standard": "EIP3091" + } ], - "3967": [ - "https://faucet.dynoscan.io" + "100009": [ + { + "name": "VeChain Stats", + "url": "https://vechainstats.com", + "standard": "none" + }, + { + "name": "VeChain Explorer", + "url": "https://explore.vechain.org", + "standard": "none" + } ], - "3993": [ - "https://sepoliafaucet.com/" + "100010": [ + { + "name": "VeChain Explorer", + "url": "https://explore-testnet.vechain.org", + "standard": "none" + } ], - "3999": [], - "4000": [], - "4001": [], - "4002": [ - "https://faucet.fantom.network" + "101010": [ + { + "name": "blockscout", + "url": "https://stability.blockscout.com", + "standard": "EIP3091" + } ], - "4003": [], - "4040": [ - "https://getfaucet.carbonium.network" + "102031": [ + { + "name": "blockscout", + "url": "https://creditcoin-testnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "4048": [], - "4058": [], - "4061": [], - "4062": [], - "4078": [], - "4080": [], - "4090": [ - "https://faucet.oasis.fastexchain.com" + "103090": [ + { + "name": "blockscout", + "url": "https://scan.crystaleum.org", + "icon": "crystal", + "standard": "EIP3091" + } ], - "4096": [ - "https://faucet.bitindi.org" + "103454": [ + { + "name": "Masa Testnet Explorer", + "url": "https://subnets-test.avax.network/masatestnet", + "standard": "EIP3091" + } ], - "4099": [ - "https://faucet.bitindi.org" + "104566": [ + { + "name": "KaspaClassic Explorer", + "url": "https://explorer.kaspaclassic.world", + "standard": "none" + } ], - "4102": [], - "4139": [], - "4141": [ - "https://faucet.tipboxcoin.net" + "105105": [ + { + "name": "Stratis Explorer", + "url": "https://explorer.stratisevm.com", + "standard": "EIP3091" + } ], - "4157": [], - "4181": [], - "4200": [], - "4201": [ - "https://faucet.testnet.lukso.network" + "108801": [ + { + "name": "BROChain Explorer", + "url": "https://explorer.brochain.org", + "standard": "EIP3091" + } ], - "4202": [ - "https://app.optimism.io/faucet" + "110001": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/0", + "standard": "EIP3091" + } ], - "4242": [], - "4243": [], - "4337": [ - "https://faucet.onbeam.com" + "110002": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/1", + "standard": "EIP3091" + } ], - "4400": [], - "4444": [ - "https://gruvin.me/htmlcoin" + "110003": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/2", + "standard": "EIP3091" + } ], - "4460": [], - "4488": [], - "4544": [ - "https://faucet.emoney.network/faucet" + "110004": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/3", + "standard": "EIP3091" + } ], - "4613": [], - "4653": [], - "4689": [], - "4690": [ - "https://faucet.iotex.io/" + "110005": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/4", + "standard": "EIP3091" + } ], - "4759": [], - "4777": [], - "4893": [], - "4918": [], - "4919": [], - "4999": [], - "5000": [], - "5001": [ - "https://faucet.testnet.mantle.xyz" + "110006": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/5", + "standard": "EIP3091" + } ], - "5002": [], - "5003": [ - "https://faucet.sepolia.mantle.xyz" + "110007": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/6", + "standard": "EIP3091" + } ], - "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" + "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" + } ], - "5372": [ - "https://faucet.settlus.io" + "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" + } ], - "5424": [], - "5439": [], - "5522": [ - "https://t.me/vexfaucetbot" + "111188": [ + { + "name": "blockscout", + "url": "https://explorer.re.al", + "icon": "real", + "standard": "EIP3091" + } ], - "5551": [], - "5555": [], - "5611": [ - "https://testnet.bnbchain.org/faucet-smart" + "112358": [ + { + "name": "blockscout", + "url": "https://explorer.metachain.one", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "5615": [ - "https://faucet.arcturuschain.io" + "119139": [ + { + "name": "MetaDAP Enterprise Testnet explorer", + "url": "https://explorer.testnet.chain.metadap.io", + "standard": "none" + } ], - "5616": [], - "5656": [], - "5675": [], - "5678": [], - "5700": [ - "https://faucet.tanenbaum.io" + "123456": [ + { + "name": "ADIL Devnet Explorer", + "url": "https://devnet.adilchain-scan.io", + "standard": "EIP3091" + } ], - "5729": [], - "5758": [ - "https://faucet.satoshichain.io" + "128123": [ + { + "name": "Etherlink Testnet Explorer", + "url": "https://testnet-explorer.etherlink.com", + "standard": "EIP3091" + } ], - "5777": [], - "5845": [], - "5851": [ - "https://developer.ont.io/" + "131419": [ + { + "name": "etndscan", + "url": "https://scan.etnd.pro", + "icon": "ETND", + "standard": "none" + } ], - "5869": [], - "6000": [], - "6001": [], - "6065": [ - "http://faucet.tresleches.finance:8080" + "132902": [ + { + "name": "Form Testnet explorer", + "url": "https://testnet-explorer.form.network", + "standard": "EIP3091" + } ], - "6066": [], - "6102": [ - "https://www.cascadia.foundation/faucet" + "141319": [ + { + "name": "etherscan", + "url": "http://testnet-api.magape.io:81", + "icon": "magape", + "standard": "EIP3091" + } ], - "6118": [], - "6119": [], - "6321": [ - "https://aura.faucetme.pro" + "142857": [ + { + "name": "ICPlaza", + "url": "https://browsemainnet.ic-plaza.org/index", + "standard": "none" + } ], - "6322": [], - "6363": [], - "6502": [], - "6552": [ - "https://faucet.scolcoin.com" + "165279": [ + { + "name": "Eclat Mainnet Explorer", + "url": "https://eclatscan.com", + "standard": "EIP3091" + } ], - "6565": [ - "https://faucet.foxchain.app" + "167000": [ + { + "name": "etherscan", + "url": "https://taikoscan.io", + "standard": "EIP3091" + } ], - "6626": [], - "6660": [ - "http://faucet.latestchain.io" + "167008": [ + { + "name": "blockscout", + "url": "https://explorer.katla.taiko.xyz", + "standard": "EIP3091" + } ], - "6661": [], - "6666": [ - "https://faucet.cybascan.io" + "167009": [ + { + "name": "blockscout", + "url": "https://blockscoutapi.hekla.taiko.xyz", + "standard": "EIP3091" + }, + { + "name": "routescan", + "url": "https://hekla.taikoscan.network", + "standard": "EIP3091" + } ], - "6688": [], - "6699": [], - "6701": [], - "6779": [], - "6789": [ - "https://faucet.goldsmartchain.com" + "188710": [ + { + "name": "Bitica DPOS Blockchain Explorer", + "url": "https://biticablockchain.com", + "standard": "none" + } ], - "6868": [], - "6969": [], - "6999": [], - "7000": [], - "7001": [ - "https://labs.zetachain.com/get-zeta" + "188881": [ + { + "name": "CondorScan", + "url": "https://explorer.condor.systems", + "standard": "none" + } ], - "7007": [], - "7027": [], - "7070": [], - "7077": [], - "7100": [], - "7118": [], - "7171": [], - "7300": [], - "7331": [], - "7332": [], - "7341": [], - "7484": [], - "7518": [], - "7560": [], - "7575": [ - "https://testnet-faucet.adil-scan.io" + "200101": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } ], - "7576": [], - "7668": [], - "7672": [], - "7700": [], - "7701": [], - "7771": [ - "https://faucet.bit-rock.io" + "200202": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } ], - "7775": [], - "7777": [], - "7778": [], - "7798": [ - "https://long.hub.openex.network/faucet" + "200810": [ + { + "name": "bitlayer testnet scan", + "url": "https://testnet.btrscan.com", + "standard": "EIP3091" + } ], - "7860": [ - "https://faucet-testnet.maalscan.io/" + "200901": [ + { + "name": "bitlayer mainnet scan", + "url": "https://www.btrscan.com", + "standard": "EIP3091" + } ], - "7878": [ - "https://faucet.hazlor.com" + "201018": [ + { + "name": "alaya explorer", + "url": "https://scan.alaya.network", + "standard": "none" + } ], - "7887": [], - "7895": [ - "https://faucet-athena.ardescan.com/" + "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" + } ], - "7923": [], - "7924": [ - "https://faucet.mochain.app/" + "202020": [ + { + "name": "DSC Explorer Testnet", + "url": "https://testnet.explorer.decimalchain.com", + "icon": "dsc", + "standard": "EIP3091" + } ], - "7979": [], - "8000": [], - "8001": [ - "https://chain-docs.teleport.network/testnet/faucet.html" + "202212": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-devnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "8029": [], - "8047": [], - "8054": [], - "8080": [ - "https://faucet.liberty10.shardeum.org" + "202401": [ + { + "name": "YMTECH-BESU Chainlens", + "url": "http://39.119.118.198", + "standard": "none" + } ], - "8081": [ - "https://faucet.liberty20.shardeum.org" + "202624": [ + { + "name": "Jellie Blockchain Explorer", + "url": "https://jellie.twala.io", + "standard": "EIP3091", + "icon": "twala" + } ], - "8082": [ - "https://faucet-sphinx.shardeum.org/" + "204005": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-testnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "8086": [], - "8087": [], - "8098": [], - "8131": [ - "https://faucet.qitmeer.io" + "205205": [ + { + "name": "Auroria Testnet Explorer", + "url": "https://auroria.explorer.stratisevm.com", + "standard": "EIP3091" + } ], - "8132": [], - "8133": [], - "8134": [], - "8135": [], - "8136": [], - "8181": [ - "https://testnet.beonescan.com/faucet" + "210425": [ + { + "name": "PlatON explorer", + "url": "https://scan.platon.network", + "standard": "none" + } ], - "8192": [], - "8194": [], - "8217": [], - "8227": [], - "8272": [ - "https://faucet.blocktonscan.com/" + "220315": [ + { + "name": "explorer masnet", + "url": "https://explorer.masnet.ai", + "standard": "EIP3091" + } ], - "8285": [], - "8329": [], - "8387": [], - "8453": [], - "8654": [], - "8655": [], - "8668": [], - "8723": [], - "8724": [ - "https://testnet-explorer.wolot.io" + "221230": [ + { + "name": "Reapchain Dashboard", + "url": "https://dashboard.reapchain.org", + "icon": "reapchain", + "standard": "none" + } ], - "8726": [], - "8727": [], - "8738": [], - "8768": [ - "https://faucet.tmychain.org/" + "221231": [ + { + "name": "Reapchain Testnet Dashboard", + "url": "https://test-dashboard.reapchain.org", + "icon": "reapchain", + "standard": "none" + } ], - "8822": [], - "8844": [ - "https://app.testnet.hydrachain.org/faucet" + "222222": [ + { + "name": "blockscout", + "url": "https://explorer.evm.hydration.cloud", + "standard": "EIP3091" + } ], - "8848": [], - "8866": [], - "8880": [], - "8881": [], - "8882": [ - "https://t.me/unique2faucet_opal_bot" + "222555": [ + { + "name": "DeepL Mainnet Explorer", + "url": "https://scan.deeplnetwork.org", + "icon": "deepl", + "standard": "EIP3091" + } ], - "8883": [], - "8888": [], - "8889": [], - "8890": [ - "https://faucetcoin.orenium.org" + "222666": [ + { + "name": "DeepL Testnet Explorer", + "url": "https://testnet-scan.deeplnetwork.org", + "icon": "deepl", + "standard": "EIP3091" + } ], - "8898": [ - "https://faucet.mmtscan.io/" + "224168": [ + { + "name": "Taf ECO Chain Mainnet", + "url": "https://ecoscan.tafchain.com", + "standard": "EIP3091" + } ], - "8899": [], - "8911": [], - "8912": [], - "8921": [], - "8922": [], - "8989": [], - "8995": [ - "https://faucet.bloxberg.org/" + "224422": [ + { + "name": "CONET Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } ], - "9000": [ - "https://faucet.evmos.dev" + "224433": [ + { + "name": "CONET Holesky Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } ], - "9001": [], - "9007": [ - "https://testnet.shidoscan.com/faucet" + "230315": [ + { + "name": "HashKey Chain Testnet Explorer", + "url": "https://testnet.hashkeyscan.io", + "standard": "none" + } ], - "9008": [], - "9012": [ - "https://t.me/BerylBit" + "240515": [ + { + "name": "Blockscout", + "url": "https://testnet-scan.orangechain.xyz", + "icon": "orange", + "standard": "EIP3091" + } ], - "9024": [ - "https://testnet.nexablockscan.io/faucet" + "247253": [ + { + "name": "saakuru-explorer-testnet", + "url": "https://explorer-testnet.saakuru.network", + "standard": "EIP3091" + } ], - "9025": [], - "9100": [], - "9223": [], - "9339": [ - "https://faucet.dogcoin.network" + "256256": [ + { + "name": "Mainnet Scan", + "url": "https://mainnet.scan.caduceus.foundation", + "standard": "none" + } ], - "9393": [], - "9395": [], - "9527": [ - "https://robin-faucet.rangersprotocol.com" + "262371": [ + { + "name": "Eclat Testnet Explorer", + "url": "https://testnet-explorer.eclatscan.com", + "standard": "EIP3091" + } ], - "9528": [ - "http://faucet.qeasyweb3.com" + "271271": [ + { + "name": "EgonCoin Testnet", + "url": "https://testnet.egonscan.com", + "standard": "EIP3091" + } ], - "9559": [ - "https://faucet.neonlink.io/" + "282828": [ + { + "name": "zillscout", + "url": "https://sepolia.zillnet.io", + "icon": "zillion", + "standard": "EIP3091" + } ], - "9700": [], - "9728": [], - "9768": [ - "https://faucet.mainnetz.io" + "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" + } ], - "9779": [], - "9789": [ - "https://faucet.testnet.tabichain.com" + "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" + } ], - "9790": [], - "9792": [], - "9797": [], - "9818": [ - "https://faucet.imperiumchain.com/" + "322202": [ + { + "name": "Parex Mainnet Explorer", + "url": "https://scan.parex.network", + "icon": "parexmain", + "standard": "EIP3091" + } ], - "9819": [ - "https://faucet.imperiumchain.com/" + "323213": [ + { + "name": "Bloom Genesis Testnet", + "url": "https://testnet.bloomgenesis.com", + "standard": "EIP3091" + } ], - "9888": [], - "9898": [], - "9911": [], - "9977": [ - "https://faucet.mindchain.info/" + "330844": [ + { + "name": "TTcoin Smart Chain Explorer", + "url": "https://tscscan.com", + "standard": "EIP3091", + "icon": "tscscan" + } ], - "9980": [], - "9981": [], - "9990": [], - "9996": [], - "9997": [], - "9998": [], - "9999": [], - "10000": [], - "10001": [], - "10024": [], - "10081": [], - "10086": [], - "10101": [], - "10200": [ - "https://gnosisfaucet.com" + "333313": [ + { + "name": "Bloom Genesis Mainnet", + "url": "https://explorer.bloomgenesis.com", + "standard": "EIP3091" + } ], - "10201": [ - "https://faucet.maxxchain.org" + "333331": [ + { + "name": "avescan", + "url": "https://testnet.avescoin.io", + "icon": "avescan", + "standard": "EIP3091" + } ], - "10222": [], - "10242": [], - "10243": [ - "https://faucet.arthera.net" + "333333": [ + { + "name": "Nativ3 Test Explorer", + "url": "https://scantest.nativ3.network", + "standard": "EIP3091" + } ], - "10248": [], - "10321": [], - "10324": [ - "https://faucet.taoevm.io" + "333666": [ + { + "name": "blockscout", + "url": "https://testnet.oonescan.com", + "standard": "none" + } ], - "10395": [], - "10507": [], - "10508": [ - "https://faucet.avax.network/?subnet=num", - "https://faucet.num.network" + "333777": [ + { + "name": "blockscout", + "url": "https://dev.oonescan.com", + "standard": "none" + } ], - "10823": [], - "10849": [], - "10850": [], - "10946": [], - "10947": [ - "https://faucetpage.quadrans.io" + "336655": [ + { + "name": "UPchain Testnet Explorer", + "url": "https://explorer-testnet.uniport.network", + "icon": "up", + "standard": "EIP3091" + } ], - "11110": [], - "11111": [ - "https://faucet.avax.network/?subnet=wagmi" + "336666": [ + { + "name": "UPchain Mainnet Explorer", + "url": "https://explorer.uniport.network", + "icon": "up", + "standard": "EIP3091" + } ], - "11115": [ - "https://faucet.astranaut.dev" + "355110": [ + { + "name": "Bitfinity Mainnet Block Explorer", + "url": "https://explorer.mainnet.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" + } ], - "11119": [], - "11221": [], - "11227": [], - "11235": [], - "11437": [], - "11501": [], - "11503": [], - "11612": [ - "https://faucet.sardisnetwork.com" + "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" + } ], - "11822": [], - "11891": [], - "12009": [], - "12020": [ - "https://faucet.aternoschain.com" + "360890": [ + { + "name": "LAVITA Mainnet Explorer", + "url": "https://tsub360890-explorer.thetatoken.org", + "icon": "lavita", + "standard": "EIP3091" + } ], - "12051": [ - "https://nft.singularity.gold" + "363636": [ + { + "name": "Digit Soul Explorer", + "url": "https://dgs-exp.digitsoul.co.th", + "standard": "EIP3091" + } ], - "12052": [ - "https://zeroscan.singularity.gold" + "373737": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout-test.hap.land", + "standard": "none", + "icon": "hap" + } ], - "12123": [ - "https://faucet.brcchain.io" + "381931": [ + { + "name": "metalscan", + "url": "https://metalscan.io", + "standard": "EIP3091" + } ], - "12306": [ - "https://test.fibochain.org/faucets" + "381932": [ + { + "name": "metalscan", + "url": "https://tahoe.metalscan.io", + "standard": "EIP3091" + } ], - "12321": [ - "https://faucet.blgchain.com" + "404040": [ + { + "name": "Tipboxcoin", + "url": "https://tipboxcoin.net", + "standard": "EIP3091" + } ], - "12324": [], - "12325": [], - "12345": [ - "https://faucet.step.network" + "413413": [ + { + "name": "aiescan-testnet", + "icon": "aie", + "url": "https://testnet.aiescan.io", + "standard": "none" + } ], - "12553": [], - "12715": [], - "12781": [], - "12890": [], - "12898": [], - "13000": [], - "13308": [], - "13337": [ - "https://faucet.avax.network/?subnet=beam", - "https://faucet.onbeam.com" + "420420": [ + { + "name": "blockscout", + "url": "https://mainnet-explorer.kekchain.com", + "icon": "kek", + "standard": "EIP3091" + } ], - "13371": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" + "420666": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.kekchain.com", + "icon": "kek", + "standard": "EIP3091" + } ], - "13381": [], - "13396": [], - "13473": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" + "420692": [ + { + "name": "Alterium L2 Testnet Explorer", + "url": "https://l2-testnet.altscan.org", + "standard": "EIP3091" + } ], - "13505": [], - "13600": [], - "13812": [], - "14000": [], - "14324": [ - "https://faucet.evolveblockchain.io" + "421611": [ + { + "name": "arbiscan-testnet", + "url": "https://testnet.arbiscan.io", + "standard": "EIP3091" + }, + { + "name": "arbitrum-rinkeby", + "url": "https://rinkeby-explorer.arbitrum.io", + "standard": "EIP3091" + } ], - "14333": [ - "https://faucet.vitruveo.xyz" + "421613": [ + { + "name": "Arbitrum Goerli Arbiscan", + "url": "https://goerli.arbiscan.io", + "standard": "EIP3091" + } ], - "14801": [ - "https://faucet.vana.org" + "421614": [ + { + "name": "Arbitrum Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.arbitrum.io", + "standard": "EIP3091" + } ], - "14853": [ - "https://t.me/HumanodeTestnet5FaucetBot" + "424242": [ + { + "name": "blockscout", + "url": "https://testnet.ftnscan.com", + "standard": "none" + } ], - "15003": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" + "432201": [ + { + "name": "Avalanche Subnet Testnet Explorer", + "url": "https://subnets-test.avax.network/dexalot", + "standard": "EIP3091" + } ], - "15257": [ - "https://faucet.poodl.org" + "432204": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets.avax.network/dexalot", + "standard": "EIP3091" + } ], - "15259": [], - "15551": [], - "15555": [ - "https://faucet.testnet-dev.trust.one/" + "444444": [ + { + "name": "Syndr L3 Sepolia Testnet Explorer", + "url": "https://sepolia-explorer.syndr.com", + "standard": "EIP3091" + } ], - "15557": [], - "16000": [], - "16001": [ - "https://faucet.metadot.network/" + "444900": [ + { + "name": "weelink-testnet", + "url": "https://weelink.cloud/#/blockView/overview", + "standard": "none" + } ], - "16116": [], - "16507": [], - "16688": [], - "16718": [], - "16888": [ - "https://tfaucet.ivarex.com/" + "473861": [ + { + "name": "ultraproscan", + "url": "https://ultraproscan.io", + "icon": "ultrapro", + "standard": "EIP3091" + } ], - "17000": [ - "https://faucet.holesky.ethpandaops.io", - "https://holesky-faucet.pk910.de" + "474142": [ + { + "name": "SIDE SCAN", + "url": "https://sidescan.luniverse.io/1641349324562974539", + "standard": "none" + } ], - "17069": [], - "17117": [], - "17171": [ - "https://faucet.oneg8.network" + "490000": [ + { + "name": "astral", + "url": "https://nova.subspace.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "17172": [], - "17180": [], - "17217": [], - "17777": [], - "18000": [], - "18122": [], - "18159": [], - "18181": [ - "https://faucet.oneg8.network" + "504441": [ + { + "name": "Playdapp Explorer", + "url": "https://subnets.avax.network/playdappne", + "standard": "EIP3091" + } ], - "18233": [], - "18686": [], - "18888": [], - "18889": [], - "19011": [], - "19224": [], - "19527": [], - "19600": [], - "19845": [], - "20001": [], - "20041": [], - "20073": [], - "20729": [ - "https://faucet.callisto.network/" + "512512": [ + { + "name": "Galaxy Scan", + "url": "https://galaxy.scan.caduceus.foundation", + "standard": "none" + } ], - "20736": [], - "20765": [], - "21004": [ - "https://play.google.com/store/apps/details?id=net.c4ei.fps2" + "513100": [ + { + "name": "DisChain", + "url": "https://www.oklink.com/dis", + "standard": "EIP3091" + } ], - "21133": [ - "https://t.me/c4eiAirdrop" + "526916": [ + { + "name": "DoCoin Community Chain Explorer", + "url": "https://explorer.docoin.shop", + "standard": "EIP3091" + } ], - "21223": [], - "21224": [ - "https://faucet.dcpay.io" + "534351": [ + { + "name": "Scroll Sepolia Etherscan", + "url": "https://sepolia.scrollscan.com", + "standard": "EIP3091" + } ], - "21337": [], - "21816": [], - "21912": [], - "22023": [], - "22040": [], - "22222": [], - "22324": [ - "https://faucet.goldxchain.io" + "534352": [ + { + "name": "Scrollscan", + "url": "https://scrollscan.com", + "standard": "EIP3091" + } ], - "22776": [], - "23006": [ - "https://faucet.antofy.io" + "534849": [ + { + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } ], - "23118": [ - "https://faucet.opside.network" + "535037": [ + { + "name": "bescscan", + "url": "https://Bescscan.io", + "standard": "EIP3091" + } ], - "23294": [], - "23295": [], - "23451": [], - "23452": [], - "23888": [], - "24484": [], - "24734": [], - "25186": [], - "25839": [ - "https://faucet.alveytestnet.com" + "552981": [ + { + "name": "One World Chain Testnet Explorer", + "url": "https://testnet.oneworldchain.org", + "standard": "EIP3091" + } ], - "25888": [], - "25925": [ - "https://faucet.bitkubchain.com" + "555555": [ + { + "name": "Pentagon Testnet Explorer", + "url": "https://explorer-testnet.pentagon.games", + "icon": "pentagon", + "standard": "EIP3091" + } ], - "26026": [ - "https://testnet.faucet.ferrumnetwork.io" + "555666": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipsecha", + "standard": "EIP3091" + } ], - "26600": [], - "26863": [ - "http://faucet.oasischain.io" + "622277": [ + { + "name": "hypra", + "url": "https://explorer.hypra.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "27181": [], - "27483": [], - "27827": [], - "28516": [], - "28518": [], - "28528": [], - "28882": [ - "https://www.l2faucet.com/boba" + "622463": [ + { + "name": "Atlas Testnet Scan", + "url": "https://explorer.testnet.atl.network", + "icon": "atlas", + "standard": "EIP3091" + } ], - "29112": [], - "29536": [ - "https://faucet.kaichain.net" + "641230": [ + { + "name": "brnkscan", + "url": "https://brnkscan.bearnetwork.net", + "standard": "EIP3091" + } ], - "29548": [], - "30067": [ - "https://piecenetwork.com/faucet" + "651940": [ + { + "name": "Alltra SmartChain Explorer", + "url": "https://alltra.global", + "standard": "EIP3091" + } ], - "30088": [], - "30103": [], - "30730": [], - "30731": [], - "30732": [], - "31102": [], - "31223": [], - "31224": [ - "https://faucet.cloudtx.finance" + "656476": [ + { + "name": "Open Campus Codex", + "url": "https://opencampus-codex.blockscout.com", + "icon": "open-campus-codex", + "standard": "none" + } ], - "31337": [], - "31414": [ - "https://faucet.evokescan.org" + "660279": [ + { + "name": "Blockscout", + "url": "https://explorer.xai-chain.net", + "standard": "EIP3091" + } ], - "31753": [], - "31754": [ - "https://xchainfaucet.net" + "666888": [ + { + "name": "Hela Official Runtime Testnet Explorer", + "url": "https://testnet-blockexplorer.helachain.com", + "standard": "EIP3091" + } ], - "32001": [], - "32382": [], - "32520": [], - "32659": [], - "32769": [], - "32990": [ - "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" + "686868": [ + { + "name": "Won Explorer", + "url": "https://scan.wonnetwork.org", + "standard": "EIP3091" + } ], - "33033": [], - "33101": [ - "https://dev-wallet.zilliqa.com/faucet?network=testnet" + "696969": [ + { + "name": "Galadriel Explorer", + "url": "https://explorer.galadriel.com", + "standard": "none" + } ], - "33133": [], - "33210": [], - "33333": [], - "33385": [ - "https://faucet.devnet.zilliqa.com/" + "710420": [ + { + "name": "TILTYARD Explorer", + "url": "https://subnets.avax.network/tiltyard", + "standard": "EIP3091" + } ], - "33469": [ - "https://faucet.zq2-devnet.zilliqa.com" + "713715": [ + { + "name": "Seistream", + "url": "https://seistream.app", + "standard": "none" + }, + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } ], - "33979": [], - "34443": [], - "35011": [], - "35441": [], - "35443": [], - "38400": [], - "38401": [ - "https://robin-faucet.rangersprotocol.com" + "721529": [ + { + "name": "Eramscan", + "url": "https://eramscan.com", + "standard": "EIP3091" + } ], - "39656": [], - "39797": [], - "39815": [], - "41500": [], - "42069": [], - "42072": [], - "42161": [], - "42170": [], - "42220": [], - "42261": [ - "https://faucet.testnet.oasis.io/" + "743111": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.hemi.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "42262": [], - "42355": [], - "42766": [], - "42793": [], - "42801": [], - "42888": [], - "43110": [ - "http://athfaucet.ava.network//?address=${ADDRESS}" + "751230": [ + { + "name": "brnktestscan", + "url": "https://brnktest-scan.bearnetwork.net", + "standard": "EIP3091" + } ], - "43111": [], - "43113": [ - "https://faucet.avax-test.network/" + "761412": [ + { + "name": "Miexs Smartchain Explorer", + "url": "https://miexs.com", + "standard": "EIP3091" + } ], - "43114": [], - "43851": [], - "44444": [], - "44445": [], - "44787": [ - "https://celo.org/developers/faucet", - "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" + "764984": [ + { + "name": "Lamina1 Test Explorer", + "url": "https://subnets-test.avax.network/lamina1tes", + "standard": "EIP3091" + } ], - "45000": [], - "45454": [], - "45510": [ - "https://faucet.deelance.com" + "767368": [ + { + "name": "Lamina1 Identity Testnet Explorer", + "url": "https://subnets-test.avax.network/lamina1id", + "standard": "EIP3091" + } ], - "46688": [], - "47805": [], - "48795": [], - "48899": [], - "49049": [], - "49088": [], - "49321": [], - "49797": [], - "50001": [], - "50005": [], - "50006": [], - "50021": [], - "51178": [], - "51712": [ - "https://faucet.sardisnetwork.com" + "776877": [ + { + "name": "Tanssi Explorer", + "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network", + "standard": "none" + } ], - "52014": [], - "53277": [], - "53302": [ - "https://sepoliafaucet.com" + "800001": [ + { + "name": "blockscout", + "url": "https://explorer.octa.space", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "53457": [], - "53935": [], - "54211": [ - "https://testedge2.haqq.network" + "808080": [ + { + "name": "BIZ Smart Chain Testnet Explorer", + "url": "https://testnet.btscan.io", + "standard": "EIP3091" + } ], - "54321": [], - "54555": [ - "https://photonchain.io/airdrop" + "810180": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } ], - "55004": [], - "55555": [ - "http://kururu.finance/faucet?chainId=55555" + "810181": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://sepolia.explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } ], - "55556": [ - "http://kururu.finance/faucet?chainId=55556" + "810182": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://goerli.explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } ], - "56026": [], - "56288": [], - "56400": [], - "56789": [ - "https://nova-faucet.velo.org" + "820522": [ + { + "name": "tscscan", + "url": "https://testnet.tscscan.io", + "icon": "netxscan", + "standard": "none" + } ], - "56797": [], - "57000": [ - "https://rollux.id/faucetapp" + "827431": [ + { + "name": "CURVE Mainnet", + "url": "https://curvescan.io", + "standard": "EIP3091" + } ], - "57451": [], - "58008": [], - "59140": [ - "https://faucetlink.to/goerli" + "839320": [ + { + "name": "Primal Network Testnet", + "url": "https://testnet-explorer.prmscan.org", + "standard": "EIP3091" + } ], - "59141": [], - "59144": [], - "59971": [], - "60000": [ - "https://www.thinkiumdev.net/faucet" + "855456": [ + { + "name": "Dodao Explorer", + "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", + "icon": "dodao", + "standard": "EIP3091" + } ], - "60001": [ - "https://www.thinkiumdev.net/faucet" + "879151": [ + { + "name": "BlocX Mainnet Explorer", + "url": "https://explorer.blxscan.com", + "icon": "blx", + "standard": "none" + } ], - "60002": [ - "https://www.thinkiumdev.net/faucet" + "888882": [ + { + "name": "REXX Mainnet Explorer", + "url": "https://rexxnetwork.com", + "standard": "EIP3091" + } ], - "60103": [ - "https://www.thinkiumdev.net/faucet" + "888888": [ + { + "name": "Visionscan", + "url": "https://www.visionscan.org", + "standard": "EIP3091" + } ], - "60808": [], - "61406": [], - "61800": [], - "61803": [ - "http://faucet.etica-stats.org/" + "900000": [ + { + "name": "Posichain Explorer", + "url": "https://explorer.posichain.org", + "standard": "EIP3091" + } ], - "61916": [], - "62049": [], - "62050": [], - "62298": [ - "https://citrea.xyz/bridge" + "910000": [ + { + "name": "Posichain Explorer Testnet", + "url": "https://explorer-testnet.posichain.org", + "standard": "EIP3091" + } ], - "62320": [ - "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", - "https://cauldron.pretoriaresearchlab.io/baklava-faucet" + "912559": [ + { + "name": "Astria EVM Dusknet Explorer", + "url": "https://explorer.evm.dusk-3.devnet.astria.org", + "standard": "EIP3091" + } ], - "62621": [], - "62831": [ - "https://faucet.avax.network/?subnet=plyr" + "920000": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } ], - "63000": [], - "63001": [ - "https://faucet.tst.ecredits.com" + "920001": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } ], - "65450": [], - "66988": [], - "67588": [], - "68770": [], - "69420": [ - "https://faucet.condrieu.ethdevops.io" + "923018": [ + { + "name": "fncy scan testnet", + "url": "https://fncyscan-testnet.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } ], - "70000": [], - "70001": [], - "70002": [], - "70103": [], - "70700": [], - "71111": [], - "71393": [ - "https://faucet.nervos.org/" + "955081": [ + { + "name": "JONO12 Explorer", + "url": "https://subnets-test.avax.network/jono12", + "standard": "EIP3091" + } ], - "71401": [ - "https://testnet.bridge.godwoken.io" + "955305": [ + { + "name": "blockscout", + "url": "https://explorer.eluv.io", + "standard": "EIP3091" + } ], - "71402": [], - "72778": [], - "72992": [], - "73114": [], - "73115": [], - "73799": [ - "https://voltafaucet.energyweb.org" + "978657": [ + { + "name": "treasurescan", + "url": "https://testnet.treasurescan.io", + "icon": "treasure", + "standard": "EIP3091" + } ], - "73927": [], - "75000": [], - "75512": [], - "75513": [], - "77001": [], - "77238": [ - "https://faucet.foundryscan.org" + "984122": [ + { + "name": "blockscout", + "url": "https://explorer.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "77612": [ - "https://faucet.vention.network" + "984123": [ + { + "name": "blockscout", + "url": "https://explorer.sketchpad-1.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "77777": [], - "78110": [], - "78281": [], - "78430": [], - "78431": [], - "78432": [], - "78600": [ - "https://faucet.vanarchain.com" + "988207": [ + { + "name": "Ecrox Chain Explorer", + "url": "https://ecroxscan.com", + "standard": "EIP3091" + } ], - "79879": [ - "https://faucet.goldsmartchain.com" + "998899": [ + { + "name": "supernet-testnet-explorer", + "url": "https://testnet-explorer.supernet.chaingames.io", + "standard": "EIP3091" + } ], - "80001": [ - "https://faucet.polygon.technology/" + "999999": [ + { + "name": "AMCAmChain explorer", + "url": "https://explorer.amchain.net", + "standard": "none" + } ], - "80002": [ - "https://faucet.polygon.technology/" + "1100789": [ + { + "name": "NetMind Testnet Explorer", + "url": "https://testbrower.protago-dev.com", + "icon": "netmind", + "standard": "EIP3091" + } ], - "80084": [ - "https://bartio.faucet.berachain.com" + "1127469": [ + { + "name": "TILTYARD Explorer", + "url": "http://testnet-explorer.tiltyard.gg", + "standard": "EIP3091" + } ], - "80085": [ - "https://artio.faucet.berachain.com" + "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" + } ], - "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" + "1313114": [ + { + "name": "blockscout", + "url": "https://explorer.ethoprotocol.com", + "standard": "none" + } ], - "84532": [], - "84886": [], - "85449": [], - "88002": [ - "https://proteusfaucet.nautchain.xyz" + "1337702": [ + { + "name": "kintsugi explorer", + "url": "https://explorer.kintsugi.themerge.dev", + "standard": "EIP3091" + } ], - "88559": [], - "88817": [], - "88819": [], - "88882": [ - "https://spicy-faucet.chiliz.com", - "https://tatum.io/faucets/chiliz" + "1337802": [ + { + "name": "Kiln Explorer", + "url": "https://explorer.kiln.themerge.dev", + "icon": "ethereum", + "standard": "EIP3091" + } ], - "88888": [ - "https://spicy-faucet.chiliz.com", - "https://tatum.io/faucets/chiliz" + "1337803": [ + { + "name": "Zhejiang Explorer", + "url": "https://zhejiang.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" + } ], - "90001": [], - "90210": [ - "https://faucet.beverlyhills.ethdevops.io" + "1612127": [ + { + "name": "PlayFi Block Explorer", + "url": "https://albireo-explorer.playfi.ai", + "standard": "EIP3091" + } ], - "90354": [ - "https://www.campnetwork.xyz/faucet" + "1637450": [ + { + "name": "Xterio Testnet Explorer", + "url": "https://testnet.xterscan.io", + "standard": "EIP3091" + } ], - "91002": [ - "https://faucet.eclipse.builders" + "2021398": [ + { + "name": "DeBank Chain Explorer", + "url": "https://explorer.testnet.debank.com", + "standard": "EIP3091" + } ], - "91120": [], - "91715": [], - "92001": [ - "https://faucet.lambda.top" + "2099156": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/pchain", + "standard": "EIP3091" + } ], - "93572": [ - "https://claim.liquidlayer.network" + "2206132": [ + { + "name": "PlatON explorer", + "url": "https://devnet2scan.platon.network", + "standard": "none" + } ], - "96970": [ - "https://mantis.switch.ch/faucet", - "https://mantis.kore-technologies.ch/faucet", - "https://mantis.phoenix-systems.io/faucet", - "https://mantis.block-spirit.ch/faucet" + "3397901": [ + { + "name": "Funki Sepolia Sandbox Explorer", + "url": "https://sepolia-sandbox.funkichain.com", + "standard": "none" + } ], - "97531": [], - "97970": [ - "https://faucet.optimusz7.com" + "3441005": [ + { + "name": "manta-testnet Explorer", + "url": "https://manta-testnet.calderaexplorer.xyz", + "standard": "EIP3091" + } ], - "98881": [], - "99099": [ - "https://faucet.eliberty.ngo" + "3441006": [ + { + "name": "manta-testnet Explorer", + "url": "https://pacific-explorer.sepolia-testnet.manta.network", + "standard": "EIP3091" + } ], - "99998": [], - "99999": [], - "100000": [], - "100001": [], - "100002": [], - "100003": [], - "100004": [], - "100005": [], - "100006": [], - "100007": [], - "100008": [], - "100009": [], - "100010": [ - "https://faucet.vecha.in" + "4000003": [ + { + "name": "blockscout", + "url": "https://zero-explorer.alt.technology", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "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" + "5112023": [ + { + "name": "NumBlock Explorer", + "url": "https://mainnet.numblock.org", + "standard": "none", + "icon": "NumBlock" + } ], - "131313": [ - "https://faucet.dioneprotocol.com/" + "5167003": [ + { + "name": "MXC Wannsee zkEVM Testnet", + "url": "https://wannsee-explorer.mxc.com", + "standard": "EIP3091" + } ], - "131419": [], - "132902": [ - "https://info.form.network/faucet" + "5167004": [ + { + "name": "Moonchain Geneva Testnet", + "url": "https://geneva-explorer.moonchain.com", + "standard": "EIP3091" + } ], - "141319": [], - "142857": [], - "161212": [], - "165279": [], - "167000": [], - "167008": [], - "167009": [], - "188710": [], - "188881": [ - "https://faucet.condor.systems" + "5201420": [ + { + "name": "blockscout", + "url": "https://blockexplorer.thesecurityteam.rocks", + "icon": "electroneum", + "standard": "EIP3091" + } ], - "192940": [], - "200000": [], - "200101": [], - "200202": [], - "200625": [], - "200810": [ - "https://www.bitlayer.org/faucet" + "5318008": [ + { + "name": "reactscan", + "url": "https://kopli.reactscan.net", + "standard": "none" + } ], - "200901": [], - "201018": [], - "201030": [ - "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" + "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" + } ], - "201804": [], - "202020": [], - "202212": [], - "202401": [], - "202624": [], - "204005": [], - "205205": [ - "https://auroria.faucet.stratisevm.com" + "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" + } ], - "210049": [], - "210425": [], - "220315": [], - "221230": [], - "221231": [ - "http://faucet.reapchain.com" + "6038361": [ + { + "name": "Blockscout zKyoto explorer", + "url": "https://astar-zkyoto.blockscout.com", + "standard": "EIP3091" + } ], - "222222": [], - "222555": [], - "222666": [ - "https://faucet.deeplnetwork.org" + "6666665": [ + { + "name": "Safe(AnWang) Explorer", + "url": "http://safe4.anwang.com", + "icon": "safe-anwang", + "standard": "EIP3091" + } ], - "224168": [], - "224422": [], - "224433": [], - "230315": [ - "https://testnet.hashkeychain/faucet" + "6666666": [ + { + "name": "Safe(AnWang) Testnet Explorer", + "url": "http://safe4-testnet.anwang.com", + "icon": "safe-anwang", + "standard": "EIP3091" + } ], - "234666": [], - "240515": [], - "246529": [], - "246785": [], - "247253": [], - "256256": [], - "262371": [ - "https://faucet.eclatscan.com" + "7225878": [ + { + "name": "saakuru-explorer", + "url": "https://explorer.saakuru.network", + "standard": "EIP3091" + } ], - "266256": [], - "271271": [ - "https://faucet.egonscan.com" + "7355310": [ + { + "name": "openvessel-mainnet", + "url": "https://mainnet-explorer.openvessel.io", + "standard": "none" + } ], - "281121": [], - "282828": [], - "309075": [], - "313313": [], - "314159": [ - "https://faucet.calibration.fildev.network/" + "7668378": [ + { + "name": "QL1 Testnet Explorer", + "url": "https://testnet.qom.one", + "icon": "qom", + "standard": "EIP3091" + } ], - "322202": [], - "323213": [ - "https://faucet.bloomgenesis.com" + "7777777": [ + { + "name": "Zora Network Explorer", + "url": "https://explorer.zora.energy", + "standard": "EIP3091" + } ], - "330844": [ - "https://faucet.tscscan.com" + "8007736": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/child_0", + "standard": "EIP3091" + } ], - "333313": [], - "333331": [], - "333333": [], - "333666": [ - "https://apps-test.adigium.com/faucet" + "8008135": [ + { + "name": "Fhenix Helium Explorer (Blockscout)", + "url": "https://explorer.helium.fhenix.zone", + "standard": "EIP3091" + } ], - "333777": [ - "https://apps-test.adigium.com/faucet" + "8080808": [ + { + "name": "Hokum Explorer", + "url": "https://explorer.hokum.gg", + "standard": "EIP3091" + } ], - "333888": [ - "https://faucet.polis.tech" + "8794598": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout.hap.land", + "standard": "none", + "icon": "hap" + } ], - "333999": [ - "https://faucet.polis.tech" + "9322252": [ + { + "name": "blockscout", + "url": "https://xcap-mainnet.explorer.xcap.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "336655": [ - "https://faucet-testnet.uniport.network" + "9322253": [ + { + "name": "blockscout", + "url": "https://xcap-milvine.explorer.xcap.network", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "336666": [], - "355110": [], - "355113": [ - "https://bitfinity.network/faucet" + "10067275": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/child_test", + "standard": "EIP3091" + } ], - "360890": [], - "363636": [], - "373737": [], - "381931": [], - "381932": [], - "404040": [ - "https://faucet.tipboxcoin.net" + "10101010": [ + { + "name": "Soverun", + "url": "https://explorer.soverun.com", + "standard": "EIP3091" + } ], - "413413": [], - "420420": [], - "420666": [], - "420692": [], - "421611": [ - "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" + "10241025": [ + { + "name": "Hal Explorer", + "url": "https://hal-explorer.alienxchain.io", + "standard": "EIP3091" + } ], - "421613": [], - "421614": [], - "424242": [], - "431140": [], - "432201": [ - "https://faucet.avax.network/?subnet=dexalot" + "11155111": [ + { + "name": "etherscan-sepolia", + "url": "https://sepolia.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "otterscan-sepolia", + "url": "https://sepolia.otterscan.io", + "standard": "EIP3091" + } ], - "432204": [], - "444444": [], - "444900": [ - "https://faucet.weelink.gw002.oneitfarm.com" + "11155420": [ + { + "name": "opscout", + "url": "https://optimism-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "471100": [], - "473861": [], - "474142": [], - "504441": [], - "512512": [ - "https://dev.caduceus.foundation/testNetwork" + "13068200": [ + { + "name": "coti devnet explorer", + "url": "https://explorer-devnet.coti.io", + "icon": "ethernal", + "standard": "EIP3091" + } ], - "513100": [], - "526916": [], - "534351": [], - "534352": [], - "534849": [ - "https://faucet.shinarium.org" + "14288640": [ + { + "name": "anduschain explorer", + "url": "https://explorer.anduschain.io", + "icon": "daon", + "standard": "none" + } ], - "535037": [], - "552981": [ - "https://faucet.oneworldchain.org" + "16658437": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/testnet", + "standard": "EIP3091" + } ], - "555555": [ - "https://bridge-testnet.pentagon.games" + "17000920": [ + { + "name": "Lambda Chain Testnet Explorer", + "url": "https://testscan.lambda.im", + "standard": "EIP3091" + } ], - "555666": [], - "622277": [], - "622463": [], - "641230": [], - "651940": [], - "656476": [], - "660279": [], - "666666": [ - "https://vpioneerfaucet.visionscan.org" + "20180427": [ + { + "name": "blockscout", + "url": "https://stability-testnet.blockscout.com", + "standard": "EIP3091" + } ], - "666888": [ - "https://testnet-faucet.helachain.com" + "20180430": [ + { + "name": "spectrum", + "url": "https://spectrum.pub", + "standard": "none" + } ], - "686868": [ - "https://faucet.wondollars.org" + "20181205": [ + { + "name": "qkiscan", + "url": "https://qkiscan.io", + "standard": "EIP3091" + } ], - "696969": [ - "https://docs.galadriel.com/faucet" + "20201022": [ + { + "name": "Pego Network Explorer", + "url": "https://scan.pego.network", + "standard": "EIP3091" + } ], - "710420": [], - "713715": [ - "https://sei-faucet.nima.enterprises", - "https://sei-evm.faucetme.pro" + "20240324": [ + { + "name": "DeBank Chain Explorer", + "url": "https://sepolia-explorer.testnet.debank.com", + "standard": "EIP3091" + } ], - "721529": [], - "743111": [], - "751230": [ - "https://faucet.bearnetwork.net" + "20241133": [ + { + "name": "Swan Proxima Chain explorer", + "url": "https://proxima-explorer.swanchain.io", + "standard": "EIP3091" + } ], - "761412": [], - "764984": [], - "767368": [], - "776877": [], - "800001": [], - "808080": [], - "810180": [], - "810181": [], - "810182": [], - "820522": [], - "827431": [], - "839320": [ - "https://faucet.prmscan.org" + "20482050": [ + { + "name": "Hokum Explorer", + "url": "https://testnet-explorer.hokum.gg", + "standard": "EIP3091" + } ], - "846000": [], - "855456": [], - "879151": [], - "888882": [], - "888888": [], - "900000": [], - "910000": [ - "https://faucet.posichain.org/" + "22052002": [ + { + "name": "Excelon explorer", + "url": "https://explorer.excelon.io", + "standard": "EIP3091" + } ], - "912559": [ - "https://faucet.evm.dusk-3.devnet.astria.org/" + "27082017": [ + { + "name": "exlscan", + "url": "https://testnet-explorer.exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } ], - "920000": [ - "https://faucet.posichain.org/" + "27082022": [ + { + "name": "exlscan", + "url": "https://exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } ], - "920001": [ - "https://faucet.posichain.org/" + "28122024": [ + { + "name": "scan-testnet", + "url": "https://scanv2-testnet.ancient8.gg", + "standard": "EIP3091" + } ], - "923018": [ - "https://faucet-testnet.fncy.world" + "29032022": [ + { + "name": "FLXExplorer", + "url": "https://explorer.flaexchange.top", + "standard": "EIP3091" + } ], - "955081": [], - "955305": [], - "978657": [ - "https://portal.treasure.lol/faucet" + "37084624": [ + { + "name": "Blockscout", + "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } ], - "984122": [], - "984123": [], - "988207": [], - "998899": [ - "https://faucet.chaingames.io" + "39916801": [ + { + "name": "TravelSong", + "url": "https://www.beastkingdom.io/travelsong", + "standard": "EIP3091" + } ], - "999999": [], - "1100789": [], - "1127469": [], - "1261120": [], - "1313114": [], - "1313500": [], - "1337702": [ - "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", - "https://faucet.kintsugi.themerge.dev" + "43214913": [ + { + "name": "maistesntet", + "url": "http://174.138.9.169:3006/?network=maistesntet", + "standard": "none" + } ], - "1337802": [ - "https://faucet.kiln.themerge.dev", - "https://kiln-faucet.pk910.de", - "https://kilnfaucet.com" + "65010002": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } ], - "1337803": [ - "https://faucet.zhejiang.ethpandaops.io", - "https://zhejiang-faucet.pk910.de" + "65100002": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } ], - "1398243": [], - "1612127": [], - "1637450": [], - "1731313": [], - "2021398": [], - "2099156": [], - "2206132": [ - "https://devnet2faucet.platon.network/faucet" + "68840142": [ + { + "name": "Frame Testnet Explorer", + "url": "https://explorer.testnet.frame.xyz", + "standard": "EIP3091" + } ], - "2611555": [], - "3132023": [], - "3141592": [ - "https://faucet.butterfly.fildev.network" + "77787778": [ + { + "name": "blockscout", + "url": "https://test.0xhashscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "3397901": [], - "3441005": [], - "3441006": [], - "4000003": [], - "4281033": [], - "5112023": [], - "5167003": [], - "5167004": [], - "5201420": [], - "5318008": [ - "https://dev.reactive.network/docs/kopli-testnet#faucet" + "88888888": [ + { + "name": "teamscan", + "url": "https://teamblockchain.team", + "standard": "EIP3091" + } ], - "5555555": [], - "5555558": [], - "6038361": [], - "6666665": [], - "6666666": [], - "7225878": [], - "7355310": [], - "7668378": [ - "https://faucet.qom.one" + "94204209": [ + { + "name": "blockscout", + "url": "https://polygon-blackberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "7762959": [], - "7777777": [], - "8007736": [], - "8008135": [ - "https://get-helium.fhenix.zone" + "111557560": [ + { + "name": "Cyber Testnet Explorer", + "url": "https://testnet.cyberscan.co", + "standard": "EIP3091" + } ], - "8080808": [], - "8601152": [ - "https://faucet.testnet8.waterfall.network" + "123420111": [ + { + "name": "blockscout", + "url": "https://opcelestia-raspberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "8794598": [], - "8888881": [], - "8888888": [], - "9322252": [], - "9322253": [], - "10067275": [], - "10101010": [ - "https://faucet.soverun.com" + "161221135": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.plumenetwork.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "10241025": [], - "11155111": [ - "http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}" + "168587773": [ + { + "name": "Blast Sepolia Explorer", + "url": "https://testnet.blastscan.io", + "icon": "blast", + "standard": "EIP3091" + } ], - "11155420": [ - "https://app.optimism.io/faucet" + "192837465": [ + { + "name": "Blockscout", + "url": "https://explorer.gather.network", + "icon": "gather", + "standard": "none" + } ], - "13068200": [ - "https://faucet.coti.io" + "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" + } ], - "13371337": [], - "14288640": [], - "16658437": [], - "17000920": [], - "18289463": [], - "20180427": [], - "20180430": [], - "20181205": [], - "20201022": [], - "20240324": [], - "20241133": [], - "20482050": [], - "22052002": [], - "27082017": [ - "https://faucet.exlscan.com" + "245022926": [ + { + "name": "neonscan", + "url": "https://devnet.neonscan.org", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://neon-devnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } ], - "27082022": [], - "28122024": [], - "28945486": [], - "29032022": [], - "31415926": [], - "35855456": [], - "37084624": [ - "https://www.sfuelstation.com/" + "245022934": [ + { + "name": "neonscan", + "url": "https://neonscan.org", + "standard": "EIP3091" + }, + { + "name": "native", + "url": "https://neon.blockscout.com", + "standard": "EIP3091" + } ], - "39916801": [], - "43214913": [], - "61717561": [ - "https://aquacha.in/faucet" + "278611351": [ + { + "name": "turbulent-unique-scheat", + "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } ], - "65010002": [ - "https://faucet.autonity.org/" + "311752642": [ + { + "name": "OneLedger Block Explorer", + "url": "https://mainnet-explorer.oneledger.network", + "standard": "EIP3091" + } ], - "65100002": [], - "68840142": [ - "https://faucet.triangleplatform.com/frame/testnet" + "328527624": [ + { + "name": "Nal Sepolia Testnet Network Explorer", + "url": "https://testnet-scan.nal.network", + "standard": "EIP3091" + } ], - "77787778": [], - "88888888": [], - "94204209": [], - "99415706": [ - "https://faucet.joys.digital/" + "333000333": [ + { + "name": "explorer", + "url": "https://meldscan.io", + "icon": "meld", + "standard": "EIP3091" + }, + { + "name": "explorer", + "url": "https://subnets.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } ], - "108160679": [], - "111557560": [], - "123420111": [], - "161221135": [], - "168587773": [ - "https://faucet.quicknode.com/blast/sepolia" + "356256156": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.gather.network", + "icon": "gather", + "standard": "none" + } ], - "192837465": [], - "222000222": [], - "245022926": [ - "https://neonfaucet.org" + "486217935": [ + { + "name": "Blockscout", + "url": "https://devnet-explorer.gather.network", + "standard": "none" + } ], - "245022934": [], - "278611351": [ - "https://faucet.razorscan.io/" + "888888888": [ + { + "name": "Ancient8 Explorer", + "url": "https://scan.ancient8.gg", + "standard": "EIP3091" + } ], - "311752642": [], - "328527624": [], - "333000333": [], - "356256156": [], - "486217935": [], - "666666666": [], - "888888888": [], "889910245": [ - "https://faucet.ptcscan.io/" + { + "name": "PTCESCAN Testnet Explorer", + "url": "https://explorer-testnet.ptcscan.io", + "standard": "EIP3091" + } + ], + "889910246": [ + { + "name": "PTCESCAN Explorer", + "url": "https://ptcscan.io", + "standard": "EIP3091" + } ], - "889910246": [], "974399131": [ - "https://www.sfuelstation.com/" + { + "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" + } ], - "999999999": [], "1020352220": [ - "https://www.sfuelstation.com/" + { + "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" + } ], - "1122334455": [], - "1146703430": [], "1273227453": [ - "https://dashboard.humanprotocol.org/faucet" + { + "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" + } ], - "1313161554": [], - "1313161555": [], - "1313161556": [], - "1313161560": [], "1350216234": [ - "https://sfuel.skale.network/" + { + "name": "Blockscout", + "url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } ], "1351057110": [ - "https://sfuel.skale.network/staging/chaos" + { + "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" + } ], - "1380012617": [], - "1380996178": [], "1444673419": [ - "https://www.sfuelstation.com/" + { + "name": "Blockscout", + "url": "https://juicy-low-small-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } ], "1482601649": [ - "https://sfuel.skale.network/" + { + "name": "Blockscout", + "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } ], "1564830818": [ - "https://sfuel.dirtroad.dev" + { + "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" + } ], - "1666600000": [], - "1666600001": [], "1666700000": [ - "https://faucet.pops.one" + { + "name": "Harmony Testnet Block Explorer", + "url": "https://explorer.testnet.harmony.one", + "standard": "EIP3091" + } ], "1666700001": [ - "https://faucet.pops.one" + { + "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" + } ], - "1666900000": [], - "1666900001": [], - "1802203764": [], - "1918988905": [], - "2021121117": [], "2046399126": [ - "https://ruby.exchange/faucet.html", - "https://sfuel.mylilius.com/" + { + "name": "Blockscout", + "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } ], - "3125659152": [], "4216137055": [ - "https://frankenstein-faucet.oneledger.network" + { + "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" + } ], - "11297108109": [], - "11297108099": [], - "28872323069": [], - "37714555429": [], - "88153591557": [], - "107107114116": [], - "111222333444": [], - "197710212030": [], - "197710212031": [], - "202402181627": [], "383414847825": [ - "https://faucet.zeniq.net/" + { + "name": "zeniq-smart-chain-explorer", + "url": "https://smart.zeniq.net", + "standard": "EIP3091" + } ], - "666301171999": [], - "6022140761023": [], - "2713017997578000": [], - "2716446429837000": [] + "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 = { @@ -17241,6 +17267,11 @@ export const NETWORK_CURRENCIES = { "symbol": "TAS", "decimals": 18 }, + "360": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, "361": { "name": "Theta Fuel", "symbol": "TFUEL", @@ -21521,6 +21552,11 @@ export const NETWORK_CURRENCIES = { "symbol": "ZIL", "decimals": 18 }, + "33103": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, "33133": { "name": "Entangle", "symbol": "NGL", @@ -23006,6 +23042,11 @@ export const NETWORK_CURRENCIES = { "symbol": "OPC", "decimals": 10 }, + "490000": { + "name": "Test Auto Coin", + "symbol": "TATC", + "decimals": 18 + }, "504441": { "name": "Playdapp", "symbol": "PDA", @@ -24030,6131 +24071,13320 @@ export const NETWORK_CURRENCIES = { 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" + { + "url": "https://eth.llamarpc.com", + "tracking": "none", + "trackingDetails": "LlamaNodes is open-source and does not track or store user information that transits through our RPCs (location, IP, wallet, etc). To learn more, have a look at the public Privacy Policy in our docs: https://llamanodes.notion.site/Privacy-Practices-f20fd8fdd02a469d9d4f42a5989bb936", + "isOpenSource": true + }, + { + "url": "https://endpoints.omniatech.io/v1/eth/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://rpc.ankr.com/eth", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://go.getblock.io/d7dab8149ec04390aaa923ff2768f914", + "tracking": "none", + "trackingDetails": "We automatically collect certain information through cookies and similar technologies when you visit, use or navigate Website. This information does not reveal your specific identity (like your name or contact information) and does not allow to identify you. However, it may include device and usage information, such as your IP address, browser and device characteristics, its type and version, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our Website, information about your interaction in our emails, and other technical and statistical information. This information is primarily needed to maintain the security and operation of our Website, and for our internal analytics and reporting purposes.Specifically, as the RPC provider, we do not log and store your IP address, country, location and similar data. https://getblock.io/privacy-policy/" + }, + { + "url": "https://eth-mainnet.nodereal.io/v1/1659dfb40aa24bbb8153a677b98064d7", + "tracking": "yes", + "trackingDetails": "We may automatically record certain information about how you use our Sites (we refer to this information as \"Log Data\"). Log Data may include information such as a user's Internet Protocol (IP) address, device and browser type, operating system, the pages or features of our Sites to which a user browsed and the time spent on those pages or features, the frequency with which the Sites are used by a user, search terms, the links on our Sites that a user clicked on or used, and other statistics. We use this information to administer the Service and we analyze (and may engage third parties to analyze) this information to improve and enhance the Service by expanding its features and functionality and tailoring it to our users' needs and preferences. https://nodereal.io/terms" + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://ethereum-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://1rpc.io/eth", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://rpc.builder0x69.io", + "tracking": "none", + "trackingDetails": "Private transactions / MM RPC: https://twitter.com/builder0x69" + }, + { + "url": "https://rpc.mevblocker.io", + "tracking": "none", + "trackingDetails": "Privacy notice: MEV Blocker RPC does not store any kind of user information (i.e. IP, location, user agent, etc.) in any data bases. Only transactions are preserved to be displayed via status endpoint like https://rpc.mevblocker.io/tx/0x627b09d5a9954a810cd3c34b23694439da40558a41b0d87970f2c3420634a229. Connect to MEV Blocker via https://rpc.mevblocker.io" + }, + { + "url": "https://rpc.flashbots.net", + "tracking": "none", + "trackingDetails": "Privacy notice: Flashbots Protect RPC does not track any kind of user information (i.e. IP, location, etc.). No user information is ever stored or even logged. https://docs.flashbots.net/flashbots-protect/rpc/quick-start" + }, + { + "url": "https://virginia.rpc.blxrbdn.com", + "tracking": "yes", + "trackingDetails": "We may collect information that is publicly available in a blockchain when providing our services, such as: Public wallet identifier of the sender and recipient of a transaction, Unique identifier for a transaction, Date and time of a transaction, Transaction value, along with associated costs, Status of a transaction (such as whether the transaction is complete, in-progress, or resulted in an error) https://bloxroute.com/wp-content/uploads/2021/12/bloXroute-Privacy-Policy-04-01-2019-Final.pdf" + }, + { + "url": "https://uk.rpc.blxrbdn.com", + "tracking": "yes", + "trackingDetails": "We may collect information that is publicly available in a blockchain when providing our services, such as: Public wallet identifier of the sender and recipient of a transaction, Unique identifier for a transaction, Date and time of a transaction, Transaction value, along with associated costs, Status of a transaction (such as whether the transaction is complete, in-progress, or resulted in an error) https://bloxroute.com/wp-content/uploads/2021/12/bloXroute-Privacy-Policy-04-01-2019-Final.pdf" + }, + { + "url": "https://singapore.rpc.blxrbdn.com", + "tracking": "yes", + "trackingDetails": "We may collect information that is publicly available in a blockchain when providing our services, such as: Public wallet identifier of the sender and recipient of a transaction, Unique identifier for a transaction, Date and time of a transaction, Transaction value, along with associated costs, Status of a transaction (such as whether the transaction is complete, in-progress, or resulted in an error) https://bloxroute.com/wp-content/uploads/2021/12/bloXroute-Privacy-Policy-04-01-2019-Final.pdf" + }, + { + "url": "https://eth.rpc.blxrbdn.com", + "tracking": "yes", + "trackingDetails": "We may collect information that is publicly available in a blockchain when providing our services, such as: Public wallet identifier of the sender and recipient of a transaction, Unique identifier for a transaction, Date and time of a transaction, Transaction value, along with associated costs, Status of a transaction (such as whether the transaction is complete, in-progress, or resulted in an error) https://bloxroute.com/wp-content/uploads/2021/12/bloXroute-Privacy-Policy-04-01-2019-Final.pdf" + }, + { + "url": "https://cloudflare-eth.com", + "tracking": "yes", + "trackingDetails": "Just as when you visit and interact with most websites and services delivered via the Internet, when you visit our Websites, including the Cloudflare Community Forum, we gather certain information and store it in log files. This information may include but is not limited to Internet Protocol (IP) addresses, system configuration information, URLs of referring pages, and locale and language preferences. https://www.cloudflare.com/privacypolicy/" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://api.securerpc.com/v1", + "tracking": "unspecified" + }, + { + "url": "https://openapi.bitstack.com/v1/wNFxbiJyQsSeLrX8RRCHi7NpRxrlErZk/DjShIqLishPCTB9HiMkPHXjUM9CNM9Na/ETH/mainnet", + "tracking": "yes", + "trackingDetails": "Information about your computer hardware and software may be automatically collected by BitStack. This information can include: your IP address, browser type, domain names, access times and referring website addresses. https://bitstack.com/#/privacy" + }, + { + "url": "https://eth-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://eth-mainnet-public.unifra.io", + "tracking": "limited", + "trackingDetails": "Regarding the RPC(remote procedure call) data, we do not collect request data or request origin. We temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days. Only the amounts of RPC requests of users are recorded for accounting and billing purposes within longer time. https://unifra.io/" + }, + { + "url": "https://ethereum.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://rpc.payload.de", + "tracking": "none", + "trackingDetails": "Sent transactions are private: https://payload.de/docs. By default, no data is collected when using the RPC endpoint. If provided by the user, the public address for authentication is captured when using the RPC endpoint in order to prioritize requests under high load. This information is optional and solely provided at the user's discretion. https://payload.de/privacy/" + }, + { + "url": "https://api.zmok.io/mainnet/oaen6dy8ff6hju9k", + "tracking": "none", + "trackingDetails": "API requests - we do NOT store any usage data, additionally, we do not store your logs. No KYC - \"Darknet\" style of sign-up/sign-in. Only provider that provides Ethereum endpoints as TOR/Onion hidden service. Analytical data are stored only on the landing page/web. https://zmok.io/privacy-policy" + }, + { + "url": "https://eth-mainnet.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://eth.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://core.gashawk.io/rpc", + "tracking": "yes", + "trackingDetails": "Sign-in with Ethereum on https://www.gashawk.io required prior to use. We may collect information that is publicly available in a blockchain when providing our services, such as: Public wallet identifier of the sender and recipient of a transaction, Unique identifier for a transaction, Date and time of a transaction, Transaction value, along with associated costs, Status of a transaction (such as whether the transaction is complete, in-progress, or resulted in an error), read the terms of service https://www.gashawk.io/#/terms and the privacy policy https://www.gashawk.io/#/privacy." + }, + { + "url": "https://mainnet.eth.cloud.ava.do" + }, + { + "url": "https://ethereumnodelight.app.runonflux.io" + }, + { + "url": "https://eth-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf" + }, + { + "url": "https://main-light.eth.linkpool.io" + }, + { + "url": "https://rpc.eth.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://rpc.chain49.com/ethereum?api_key=14d1a8b86d8a4b4797938332394203dc", + "tracking": "yes", + "trackingDetails": "We collect device information and request metadata like IP address and User Agent for the purpose of load balancing and rate limiting. More info: https://chain49.com/privacy-policy" + }, + { + "url": "https://eth.meowrpc.com", + "tracking": "none", + "trackingDetails": "With the exclusion of data that will be openly visible and available on the blockchain, MEOWRPC does not track or store any kind of user information (such as location, IP address, etc.) that passes through our RPC. For further details regarding our privacy practices, we encourage you to refer to our Privacy Policy. https://privacy.meowrpc.com" + }, + { + "url": "https://eth.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://rpc.tenderly.co/fork/c63af728-a183-4cfb-b24e-a92801463484", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/mainnet", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://api.zan.top/node/v1/eth/mainnet/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://eth-mainnet.diamondswap.org/rpc", + "tracking": "limited", + "trackingDetails": "We record limited metadata from requests. This data is stored for a maximum of 90 days and is solely used for debugging, identifying suspicious activity, and generating analytics." + }, + { + "url": "https://rpc.notadegen.com/eth" + }, + { + "url": "https://eth.merkle.io", + "tracking": "none", + "trackingDetails": "merkle does not track or store user information that transits through our RPCs (location, IP, wallet, etc)." + }, + { + "url": "https://rpc.lokibuilder.xyz/wallet", + "tracking": "none", + "trackingDetails": "Private transactions. No tracking of any kind (no IPs, location, wallet etc.): https://lokibuilder.xyz/privacy" + }, + { + "url": "https://services.tokenview.io/vipapi/nodeservice/eth?apikey=qVHq2o6jpaakcw3lRstl", + "tracking": "yes", + "trackingDetails": "Information about your computer hardware and software may be automatically collected by Tokenview. This information can include such details as your IP address, browser type, domain names, access times, etc.https://services.tokenview.io/en/protocol" + }, + { + "url": "https://eth.nodeconnect.org", + "tracking": "yes", + "trackingDetails": "We may collect information about how you interact with our Service. This may include information about your operating system, IP address, and browser type : https://nodeconnect.org/privacy.txt" + }, + { + "url": "https://api.stateless.solutions/ethereum/v1/0ec6cac0-ecac-4247-8a41-1e685deadfe4", + "tracking": "none", + "trackingDetails": "Through any of our RPC API endpoints, whether public or private, we do not collect personal identifiers such as IP addresses, request origins, or specific request data. https://www.stateless.solutions/api-usage-privacy-policy" + }, + { + "url": "https://rpc.polysplit.cloud/v1/chain/1", + "tracking": "none", + "trackingDetails": "When you use our Service, we does not track the IP address or other user info.https://polysplit.cloud/privacy" + }, + { + "url": "https://rpc.tornadoeth.cash/eth", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + }, + { + "url": "https://rpc.tornadoeth.cash/mev", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + }, + { + "url": "https://eth1.lava.build/lava-referer-ed07f753-8c19-4309-b632-5a4a421aa589", + "tracking": "yes", + "trackingDetails": "We, our service providers, and our business partners may automatically log information about you, your computer or mobile device, and your interaction over time with the Service..., such as: Device data, ...your computer or mobile device's operating system type and version, manufacturer and model, browser type, screen resolution, RAM and disk size, CPU usage, device type (e.g., phone, tablet), IP address, unique identifiers (including identifiers used for advertising purposes), language settings, mobile device carrier, radio/network information (e.g., Wi-Fi, LTE, 3G), and general location information such as city, state or geographic area. https://www.lavanet.xyz/privacy-policy" + }, + { + "url": "https://eth1.lava.build/lava-referer-16223de7-12c0-49f3-8d87-e5f1e6a0eb3b", + "tracking": "yes", + "trackingDetails": "We, our service providers, and our business partners may automatically log information about you, your computer or mobile device, and your interaction over time with the Service..., such as: Device data, ...your computer or mobile device's operating system type and version, manufacturer and model, browser type, screen resolution, RAM and disk size, CPU usage, device type (e.g., phone, tablet), IP address, unique identifiers (including identifiers used for advertising purposes), language settings, mobile device carrier, radio/network information (e.g., Wi-Fi, LTE, 3G), and general location information such as city, state or geographic area. https://www.lavanet.xyz/privacy-policy" + }, + { + "url": "https://api.mycryptoapi.com/eth" + }, + { + "url": "wss://mainnet.gateway.tenderly.co" + }, + { + "url": "https://rpc.blocknative.com/boost" + }, + { + "url": "https://rpc.flashbots.net/fast" + }, + { + "url": "https://rpc.mevblocker.io/fast" + }, + { + "url": "https://rpc.mevblocker.io/noreverts" + }, + { + "url": "https://rpc.mevblocker.io/fullprivacy" + }, + { + "url": "wss://eth.drpc.org" + } ], "2": [ - "https://node.eggs.cool", - "https://node.expanse.tech" + { + "url": "https://node.eggs.cool" + }, + { + "url": "https://node.expanse.tech" + } ], "3": [ - "https://rpc.ankr.com/eth_ropsten", - "https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161" + { + "url": "https://rpc.ankr.com/eth_ropsten" + }, + { + "url": "https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161" + } ], "4": [ - "https://rpc.ankr.com/eth_rinkeby", - "https://rinkeby.infura.io/3/9aa3d95b3bc440fa88ea12eaa4456161" + { + "url": "https://rpc.ankr.com/eth_rinkeby" + }, + { + "url": "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" + { + "url": "https://rpc.ankr.com/eth_goerli", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://endpoints.omniatech.io/v1/eth/goerli/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "tracking": "limited", + "trackingDetails": "We collect wallet and IP address information. The purpose of this collection is to ensure successful transaction propagation, execution, and other important service functionality such as load balancing and DDoS protection. IP addresses and wallet address data relating to a transaction are not stored together or in a way that allows our systems to associate those two pieces of data. We retain and delete user data such as IP address and wallet address pursuant to our data retention policy. https://consensys.net/blog/news/consensys-data-retention-update/" + }, + { + "url": "https://eth-goerli.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://eth-goerli.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://goerli.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://eth-goerli.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://rpc.goerli.eth.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://ethereum-goerli-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://ethereum-goerli-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://goerli.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/goerli", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://api.zan.top/node/v1/eth/goerli/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://builder-rpc1.0xblockswap.com", + "tracking": "yes", + "trackingDetails": "Blockswap RPC does not track any kind of user information at the builder RPC level (i.e. IP, location, etc.) nor is any information logged. All blocks are encrypted when passed between proposers, builders, relayers, and Ethereum. It does not transmit any transactions to the relayer. We use analytical cookies to see which content on the Site is highly frequented and also to analyze if content should be updated or improved. These cookies process and save data like your browser type, referrer URLs, operating system, date/time stamp, views and clicks on the Site, and your (truncated) IP address. For more information please visit: https://docs.pon.network/pon/privacy" + }, + { + "url": "https://builder-rpc2.0xblockswap.com", + "tracking": "yes", + "trackingDetails": "Blockswap RPC does not track any kind of user information at the builder RPC level (i.e. IP, location, etc.) nor is any information logged. All blocks are encrypted when passed between proposers, builders, relayers, and Ethereum. It does not transmit any transactions to the relayer. We use analytical cookies to see which content on the Site is highly frequented and also to analyze if content should be updated or improved. These cookies process and save data like your browser type, referrer URLs, operating system, date/time stamp, views and clicks on the Site, and your (truncated) IP address. For more information please visit: https://docs.pon.network/pon/privacy" + }, + { + "url": "https://rpc.tornadoeth.cash/goerli", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + }, + { + "url": "https://rpc.goerli.mudit.blog" + }, + { + "url": "wss://goerli.gateway.tenderly.co" + } ], "7": [ - "https://rpc.dome.cloud", - "https://rpc.thaichain.org" + { + "url": "https://rpc.dome.cloud" + }, + { + "url": "https://rpc.thaichain.org" + } ], "8": [ - "https://rpc.octano.dev", - "https://pyrus2.ubiqscan.io" + { + "url": "https://rpc.octano.dev" + }, + { + "url": "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" + { + "url": "https://optimism.llamarpc.com", + "tracking": "none", + "trackingDetails": "LlamaNodes is open-source and does not track or store user information that transits through our RPCs (location, IP, wallet, etc). To learn more, have a look at the public Privacy Policy in our docs: https://llamanodes.notion.site/Privacy-Practices-f20fd8fdd02a469d9d4f42a5989bb936", + "isOpenSource": true + }, + { + "url": "https://mainnet.optimism.io" + }, + { + "url": "https://optimism-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://rpc.ankr.com/optimism", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://1rpc.io/op", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://op-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://opt-mainnet.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://optimism.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://endpoints.omniatech.io/v1/op/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://optimism.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://rpc.optimism.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://optimism-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://optimism-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://optimism.meowrpc.com", + "tracking": "none", + "trackingDetails": "With the exclusion of data that will be openly visible and available on the blockchain, MEOWRPC does not track or store any kind of user information (such as location, IP address, etc.) that passes through our RPC. For further details regarding our privacy practices, we encourage you to refer to our Privacy Policy. https://privacy.meowrpc.com" + }, + { + "url": "https://api.zan.top/node/v1/opt/mainnet/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://optimism.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://optimism.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/optimism", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://api.stateless.solutions/optimism/v1/f373feb1-c8e4-41c9-bb74-2c691988dd34", + "tracking": "none", + "trackingDetails": "Through any of our RPC API endpoints, whether public or private, we do not collect personal identifiers such as IP addresses, request origins, or specific request data. https://www.stateless.solutions/api-usage-privacy-policy" + }, + { + "url": "https://rpc.tornadoeth.cash/optimism", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + }, + { + "url": "wss://optimism.gateway.tenderly.co" + }, + { + "url": "wss://optimism.drpc.org" + } ], "11": [ - "https://api.metadium.com/dev", - "https://api.metadium.com/prod" + { + "url": "https://api.metadium.com/dev" + }, + { + "url": "https://api.metadium.com/prod" + } ], "12": [ - "https://api.metadium.com/dev" + { + "url": "https://api.metadium.com/dev" + } ], "13": [ - "https://staging.diode.io:8443", - "wss://staging.diode.io:8443/ws" + { + "url": "https://staging.diode.io:8443" + }, + { + "url": "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" + { + "url": "https://flare-api.flare.network/ext/C/rpc" + }, + { + "url": "https://flare.rpc.thirdweb.com" + }, + { + "url": "https://flare-bundler.etherspot.io" + }, + { + "url": "https://rpc.ankr.com/flare" + }, + { + "url": "https://01-gravelines-003-01.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://01-vinthill-003-02.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://rpc.ftso.au/flare" + }, + { + "url": "https://flare.enosys.global/ext/C/rpc" + }, + { + "url": "https://flare.solidifi.app/ext/C/rpc" + } ], "15": [ - "https://prenet.diode.io:8443", - "wss://prenet.diode.io:8443/ws" + { + "url": "https://prenet.diode.io:8443" + }, + { + "url": "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" + { + "url": "https://coston-api.flare.network/ext/C/rpc" + }, + { + "url": "https://songbird-testnet-coston.rpc.thirdweb.com" + }, + { + "url": "https://01-gravelines-004-01.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://02-chicago-004-02.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://02-tokyo-004-03.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://coston.enosys.global/ext/C/rpc" + } ], "17": [ - "https://rpc.thaifi.com" + { + "url": "https://rpc.thaifi.com" + } ], "18": [ - "https://testnet-rpc.thundercore.com", - "https://thundercore-testnet.drpc.org", - "wss://thundercore-testnet.drpc.org" + { + "url": "https://testnet-rpc.thundercore.com" + }, + { + "url": "https://thundercore-testnet.drpc.org" + }, + { + "url": "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" + { + "url": "https://songbird.towolabs.com/rpc" + }, + { + "url": "https://songbird-api.flare.network/ext/C/rpc" + }, + { + "url": "https://01-gravelines-006-01.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://01-vinthill-006-02.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://02-tokyo-006-03.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://rpc.ftso.au/songbird" + }, + { + "url": "https://songbird.enosys.global/ext/C/rpc" + }, + { + "url": "https://songbird.solidifi.app/ext/C/rpc" + } ], "20": [ - "https://api.elastos.io/esc", - "https://api.trinity-tech.io/esc", - "https://api.elastos.io/eth" + { + "url": "https://api.elastos.io/esc" + }, + { + "url": "https://api.trinity-tech.io/esc" + }, + { + "url": "https://api.elastos.io/eth" + } ], "21": [ - "https://api-testnet.elastos.io/eth" + { + "url": "https://api-testnet.elastos.io/eth" + } ], "22": [ - "https://api.trinity-tech.io/eid", - "https://api.elastos.io/eid" + { + "url": "https://api.trinity-tech.io/eid" + }, + { + "url": "https://api.elastos.io/eid" + } ], "24": [ - "https://rpc.kardiachain.io" + { + "url": "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" + { + "url": "https://evm.cronos.org" + }, + { + "url": "https://cronos-rpc.elk.finance" + }, + { + "url": "https://cronos.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://cronos-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://cronos-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://1rpc.io/cro", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://cronos.drpc.org" + }, + { + "url": "wss://cronos.drpc.org" + } ], "26": [ - "https://testrpc.genesisl1.org" + { + "url": "https://testrpc.genesisl1.org" + } ], "27": [ - "https://rpc.shibachain.net", - "https://rpc.shibchain.org" + { + "url": "https://rpc.shibachain.net" + }, + { + "url": "https://rpc.shibchain.org" + } ], "29": [ - "https://rpc.genesisl1.org" + { + "url": "https://rpc.genesisl1.org" + } ], "30": [ - "https://public-node.rsk.co", - "https://mycrypto.rsk.co" + { + "url": "https://public-node.rsk.co" + }, + { + "url": "https://mycrypto.rsk.co" + } ], "31": [ - "https://public-node.testnet.rsk.co", - "https://mycrypto.testnet.rsk.co" + { + "url": "https://public-node.testnet.rsk.co" + }, + { + "url": "https://mycrypto.testnet.rsk.co" + } ], "32": [ - "https://test2.goodata.io" + { + "url": "https://test2.goodata.io" + } ], "33": [ - "https://rpc.goodata.io" + { + "url": "https://rpc.goodata.io" + } ], "34": [ - "https://mainnet-rpc.scai.network" + { + "url": "https://mainnet-rpc.scai.network" + } ], "35": [ - "https://rpc.tbwg.io" + { + "url": "https://rpc.tbwg.io" + } ], "36": [ - "https://mainnet.dxchain.com" + { + "url": "https://mainnet.dxchain.com" + } ], "37": [ - "https://dimension-evm-rpc.xpla.dev" + { + "url": "https://dimension-evm-rpc.xpla.dev" + } ], "38": [ - "https://rpc.valorbit.com/v2" + { + "url": "https://rpc.valorbit.com/v2" + } ], "39": [ - "https://rpc-mainnet.uniultra.xyz" + { + "url": "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" + { + "url": "https://mainnet.telos.net/evm" + }, + { + "url": "https://rpc1.eu.telos.net/evm" + }, + { + "url": "https://rpc1.us.telos.net/evm" + }, + { + "url": "https://rpc2.us.telos.net/evm" + }, + { + "url": "https://api.kainosbp.com/evm" + }, + { + "url": "https://rpc2.eu.telos.net/evm" + }, + { + "url": "https://evm.teloskorea.com/evm" + }, + { + "url": "https://rpc2.teloskorea.com/evm" + }, + { + "url": "https://rpc01.us.telosunlimited.io/evm" + }, + { + "url": "https://rpc02.us.telosunlimited.io/evm" + }, + { + "url": "https://1rpc.io/telos/evm", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://telos.drpc.org" + }, + { + "url": "wss://telos.drpc.org" + } ], "41": [ - "https://testnet.telos.net/evm", - "https://telos-testnet.drpc.org", - "wss://telos-testnet.drpc.org" + { + "url": "https://testnet.telos.net/evm" + }, + { + "url": "https://telos-testnet.drpc.org" + }, + { + "url": "wss://telos-testnet.drpc.org" + } ], "42": [ - "https://rpc.mainnet.lukso.network", - "wss://ws-rpc.mainnet.lukso.network" + { + "url": "https://rpc.mainnet.lukso.network" + }, + { + "url": "wss://ws-rpc.mainnet.lukso.network" + } ], "43": [ - "https://pangolin-rpc.darwinia.network" + { + "url": "https://pangolin-rpc.darwinia.network" + } ], "44": [ - "https://crab.api.onfinality.io/public", - "https://crab-rpc.darwinia.network", - "https://crab-rpc.darwiniacommunitydao.xyz" + { + "url": "https://crab.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://crab-rpc.darwinia.network" + }, + { + "url": "https://crab-rpc.darwiniacommunitydao.xyz" + } ], "45": [ - "https://pangoro-rpc.darwinia.network" + { + "url": "https://pangoro-rpc.darwinia.network" + } ], "46": [ - "https://rpc.darwinia.network", - "https://darwinia-rpc.darwiniacommunitydao.xyz", - "https://darwinia-rpc.dwellir.com" + { + "url": "https://rpc.darwinia.network" + }, + { + "url": "https://darwinia-rpc.darwiniacommunitydao.xyz" + }, + { + "url": "https://darwinia-rpc.dwellir.com" + } ], "47": [ - "https://aic.acria.ai" + { + "url": "https://aic.acria.ai" + } ], "48": [ - "https://rpc.etm.network" + { + "url": "https://rpc.etm.network" + } ], "49": [ - "https://rpc.pioneer.etm.network" + { + "url": "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" + { + "url": "https://rpc.xdcrpc.com" + }, + { + "url": "https://rpc1.xinfin.network" + }, + { + "url": "https://erpc.xinfin.network" + }, + { + "url": "https://rpc.xinfin.network" + }, + { + "url": "https://erpc.xdcrpc.com" + }, + { + "url": "https://rpc.xdc.org" + }, + { + "url": "https://rpc.ankr.com/xdc", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://rpc-xdc.icecreamswap.com" + } ], "51": [ - "https://rpc.apothem.network", - "https://erpc.apothem.network", - "https://apothem.xdcrpc.com" + { + "url": "https://rpc.apothem.network" + }, + { + "url": "https://erpc.apothem.network" + }, + { + "url": "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" + { + "url": "https://rpc.coinex.net" + }, + { + "url": "https://rpc1.coinex.net" + }, + { + "url": "https://rpc2.coinex.net" + }, + { + "url": "https://rpc3.coinex.net" + }, + { + "url": "https://rpc4.coinex.net" + } ], "53": [ - "https://testnet-rpc.coinex.net" + { + "url": "https://testnet-rpc.coinex.net" + } ], "54": [ - "https://mainnet.openpiece.io" + { + "url": "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" + { + "url": "https://rpc-1.zyx.network" + }, + { + "url": "https://rpc-2.zyx.network" + }, + { + "url": "https://rpc-3.zyx.network" + }, + { + "url": "https://rpc-5.zyx.network" + }, + { + "url": "https://rpc-4.zyx.network" + }, + { + "url": "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" + { + "url": "https://binance.llamarpc.com", + "tracking": "none", + "trackingDetails": "LlamaNodes is open-source and does not track or store user information that transits through our RPCs (location, IP, wallet, etc). To learn more, have a look at the public Privacy Policy in our docs: https://llamanodes.notion.site/Privacy-Practices-f20fd8fdd02a469d9d4f42a5989bb936", + "isOpenSource": true + }, + { + "url": "https://bsc-dataseed.bnbchain.org" + }, + { + "url": "https://bsc-dataseed1.defibit.io" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io" + }, + { + "url": "https://bsc-dataseed2.defibit.io" + }, + { + "url": "https://bsc-dataseed3.defibit.io" + }, + { + "url": "https://bsc-dataseed4.defibit.io" + }, + { + "url": "https://bsc-dataseed2.ninicoin.io" + }, + { + "url": "https://bsc-dataseed3.ninicoin.io" + }, + { + "url": "https://bsc-dataseed4.ninicoin.io" + }, + { + "url": "https://bsc-dataseed1.bnbchain.org" + }, + { + "url": "https://bsc-dataseed2.bnbchain.org" + }, + { + "url": "https://bsc-dataseed3.bnbchain.org" + }, + { + "url": "https://bsc-dataseed4.bnbchain.org" + }, + { + "url": "https://bsc-dataseed6.dict.life" + }, + { + "url": "https://rpc-bsc.48.club", + "tracking": "limited", + "trackingDetails": "IP addresses will be read for rate-limit purpose without being actively stored at application layer. Also notice that we don't actively purge user footprint in lower-level protocol." + }, + { + "url": "https://koge-rpc-bsc.48.club", + "tracking": "limited", + "trackingDetails": "IP addresses will be read for rate-limit purpose without being actively stored at application layer. Also notice that we don't actively purge user footprint in lower-level protocol." + }, + { + "url": "https://endpoints.omniatech.io/v1/bsc/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://bsc-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://bsc-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "tracking": "yes", + "trackingDetails": "We may automatically record certain information about how you use our Sites (we refer to this information as \"Log Data\"). Log Data may include information such as a user's Internet Protocol (IP) address, device and browser type, operating system, the pages or features of our Sites to which a user browsed and the time spent on those pages or features, the frequency with which the Sites are used by a user, search terms, the links on our Sites that a user clicked on or used, and other statistics. We use this information to administer the Service and we analyze (and may engage third parties to analyze) this information to improve and enhance the Service by expanding its features and functionality and tailoring it to our users' needs and preferences. https://nodereal.io/terms" + }, + { + "url": "https://rpc.ankr.com/bsc", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://getblock.io/nodes/bsc", + "tracking": "limited", + "trackingDetails": "We automatically collect certain information through cookies and similar technologies when you visit, use or navigate Website. This information does not reveal your specific identity (like your name or contact information) and does not allow to identify you. However, it may include device and usage information, such as your IP address, browser and device characteristics, its type and version, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our Website, information about your interaction in our emails, and other technical and statistical information. This information is primarily needed to maintain the security and operation of our Website, and for our internal analytics and reporting purposes.Specifically, as the RPC provider, we do not log and store your IP address, country, location and similar data. https://getblock.io/privacy-policy/" + }, + { + "url": "https://bscrpc.com" + }, + { + "url": "https://bsc.rpcgator.com" + }, + { + "url": "https://binance.nodereal.io", + "tracking": "yes", + "trackingDetails": "We may automatically record certain information about how you use our Sites (we refer to this information as \"Log Data\"). Log Data may include information such as a user's Internet Protocol (IP) address, device and browser type, operating system, the pages or features of our Sites to which a user browsed and the time spent on those pages or features, the frequency with which the Sites are used by a user, search terms, the links on our Sites that a user clicked on or used, and other statistics. We use this information to administer the Service and we analyze (and may engage third parties to analyze) this information to improve and enhance the Service by expanding its features and functionality and tailoring it to our users' needs and preferences. https://nodereal.io/terms" + }, + { + "url": "https://bsc-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf" + }, + { + "url": "https://nodes.vefinetwork.org/smartchain" + }, + { + "url": "https://1rpc.io/bnb", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://bsc.rpc.blxrbdn.com", + "tracking": "yes", + "trackingDetails": "We may collect information that is publicly available in a blockchain when providing our services, such as: Public wallet identifier of the sender and recipient of a transaction, Unique identifier for a transaction, Date and time of a transaction, Transaction value, along with associated costs, Status of a transaction (such as whether the transaction is complete, in-progress, or resulted in an error) https://bloxroute.com/wp-content/uploads/2021/12/bloXroute-Privacy-Policy-04-01-2019-Final.pdf" + }, + { + "url": "https://bsc.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://bnb.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://bsc-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://bsc-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://bsc-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://bsc.meowrpc.com", + "tracking": "none", + "trackingDetails": "With the exclusion of data that will be openly visible and available on the blockchain, MEOWRPC does not track or store any kind of user information (such as location, IP address, etc.) that passes through our RPC. For further details regarding our privacy practices, we encourage you to refer to our Privacy Policy. https://privacy.meowrpc.com" + }, + { + "url": "https://api.zan.top/node/v1/bsc/mainnet/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://bsc.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://services.tokenview.io/vipapi/nodeservice/bsc?apikey=qVHq2o6jpaakcw3lRstl", + "tracking": "yes", + "trackingDetails": "Information about your computer hardware and software may be automatically collected by Tokenview. This information can include such details as your IP address, browser type, domain names, access times, etc.https://services.tokenview.io/en/protocol" + }, + { + "url": "https://rpc.polysplit.cloud/v1/chain/56", + "tracking": "none", + "trackingDetails": "When you use our Service, we does not track the IP address or other user info.https://polysplit.cloud/privacy" + }, + { + "url": "https://rpc.tornadoeth.cash/bsc", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + }, + { + "url": "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" + { + "url": "https://rpc.syscoin.org" + }, + { + "url": "https://rpc.ankr.com/syscoin", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://syscoin-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://syscoin-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://rpc.ankr.com/syscoin/${ANKR_API_KEY}" + }, + { + "url": "https://syscoin.public-rpc.com" + }, + { + "url": "wss://rpc.syscoin.org/wss" + }, + { + "url": "https://syscoin-evm.publicnode.com" + }, + { + "url": "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" + { + "url": "https://dappnode1.ont.io:10339" + }, + { + "url": "https://dappnode2.ont.io:10339" + }, + { + "url": "https://dappnode3.ont.io:10339" + }, + { + "url": "https://dappnode4.ont.io:10339" + }, + { + "url": "http://dappnode1.ont.io:20339" + }, + { + "url": "http://dappnode2.ont.io:20339" + }, + { + "url": "http://dappnode3.ont.io:20339" + }, + { + "url": "http://dappnode4.ont.io:20339" + } ], "60": [ - "https://rpc.gochain.io" + { + "url": "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" + { + "url": "https://etc.mytokenpocket.vip" + }, + { + "url": "https://rpc.etcinscribe.com" + }, + { + "url": "https://etc.etcdesktop.com" + }, + { + "url": "https://besu-de.etc-network.info", + "tracking": "limited", + "trackingDetails": "We do use analytics at 3rd party tracking websites (Google Analytics & Google Search Console) the following interactions with our systems are automatically logged when you access our services, such as your Internet Protocol (IP) address as well as accessed services and pages(Packet details are discarded / not logged!). Data redemption is varying based on traffic, but deleted after 31 days." + }, + { + "url": "https://geth-de.etc-network.info", + "tracking": "limited", + "trackingDetails": "We do use analytics at 3rd party tracking websites (Google Analytics & Google Search Console) the following interactions with our systems are automatically logged when you access our services, such as your Internet Protocol (IP) address as well as accessed services and pages(Packet details are discarded / not logged!). Data redemption is varying based on traffic, but deleted after 31 days." + }, + { + "url": "https://besu-at.etc-network.info", + "tracking": "limited", + "trackingDetails": "We do use analytics at 3rd party tracking websites (Google Analytics & Google Search Console) the following interactions with our systems are automatically logged when you access our services, such as your Internet Protocol (IP) address as well as accessed services and pages(Packet details are discarded / not logged!). Data redemption is varying based on traffic, but deleted after 31 days." + }, + { + "url": "https://geth-at.etc-network.info", + "tracking": "limited", + "trackingDetails": "We do use analytics at 3rd party tracking websites (Google Analytics & Google Search Console) the following interactions with our systems are automatically logged when you access our services, such as your Internet Protocol (IP) address as well as accessed services and pages(Packet details are discarded / not logged!). Data redemption is varying based on traffic, but deleted after 31 days." + }, + { + "url": "https://services.tokenview.io/vipapi/nodeservice/etc?apikey=qVHq2o6jpaakcw3lRstl", + "tracking": "yes", + "trackingDetails": "Information about your computer hardware and software may be automatically collected by Tokenview. This information can include such details as your IP address, browser type, domain names, access times, etc.https://services.tokenview.io/en/protocol" + }, + { + "url": "https://etc.rivet.link", + "tracking": "none", + "trackingDetails": "We collect End Users’ information when they use our Customers’ web3-enabled websites, web applications, and APIs. This information may include but is not limited to IP addresses, system configuration information, and other information about traffic to and from Customers’ websites (collectively, “Log Data”). We collect and use Log Data to operate, maintain, and improve our Services in performance of our obligations under our Customer agreements.https://rivet.cloud/privacy-policy" + } ], "63": [ - "https://rpc.mordor.etccooperative.org", - "https://geth-mordor.etc-network.info" + { + "url": "https://rpc.mordor.etccooperative.org" + }, + { + "url": "https://geth-mordor.etc-network.info", + "tracking": "limited", + "trackingDetails": "We do use analytics at 3rd party tracking websites (Google Analytics & Google Search Console) the following interactions with our systems are automatically logged when you access our services, such as your Internet Protocol (IP) address as well as accessed services and pages(Packet details are discarded / not logged!). Data redemption is varying based on traffic, but deleted after 31 days." + } ], "64": [ - "https://jsonrpc.ellaism.org" + { + "url": "https://jsonrpc.ellaism.org" + } ], "65": [ - "https://exchaintestrpc.okex.org" + { + "url": "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" + { + "url": "https://exchainrpc.okex.org" + }, + { + "url": "https://oktc-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://okt-chain.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://1rpc.io/oktc", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://okc-mainnet.gateway.pokt.network/v1/lb/6275309bea1b320039c893ff" + } ], "67": [ - "http://test-rpc.dbmbp.com" + { + "url": "http://test-rpc.dbmbp.com" + } ], "68": [ - "https://rpc.soter.one" + { + "url": "https://rpc.soter.one" + } ], "69": [ - "https://kovan.optimism.io" + { + "url": "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" + { + "url": "https://http-mainnet.hoosmartchain.com" + }, + { + "url": "https://http-mainnet2.hoosmartchain.com" + }, + { + "url": "wss://ws-mainnet.hoosmartchain.com" + }, + { + "url": "wss://ws-mainnet2.hoosmartchain.com" + } ], "71": [ - "https://evmtestnet.confluxrpc.com" + { + "url": "https://evmtestnet.confluxrpc.com" + } ], "72": [ - "https://testnet-http.dxchain.com" + { + "url": "https://testnet-http.dxchain.com" + } ], "73": [ - "https://fncy-seed1.fncy.world" + { + "url": "https://fncy-seed1.fncy.world" + } ], "74": [ - "https://idchain.one/rpc", - "wss://idchain.one/ws" + { + "url": "https://idchain.one/rpc" + }, + { + "url": "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" + { + "url": "https://node.decimalchain.com/web3" + }, + { + "url": "https://node1-mainnet.decimalchain.com/web3" + }, + { + "url": "https://node2-mainnet.decimalchain.com/web3" + }, + { + "url": "https://node3-mainnet.decimalchain.com/web3" + }, + { + "url": "https://node4-mainnet.decimalchain.com/web3" + } ], "76": [ - "https://rpc2.mix-blockchain.org:8647" + { + "url": "https://rpc2.mix-blockchain.org:8647" + } ], "77": [ - "https://sokol.poa.network", - "wss://sokol.poa.network/wss", - "ws://sokol.poa.network:8546" + { + "url": "https://sokol.poa.network" + }, + { + "url": "wss://sokol.poa.network/wss" + }, + { + "url": "ws://sokol.poa.network:8546" + } ], "78": [ - "https://ethnode.primusmoney.com/mainnet" + { + "url": "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" + { + "url": "https://dataserver-us-1.zenithchain.co" + }, + { + "url": "https://dataserver-asia-3.zenithchain.co" + }, + { + "url": "https://dataserver-asia-4.zenithchain.co" + }, + { + "url": "https://dataserver-asia-2.zenithchain.co" + }, + { + "url": "https://dataserver-asia-5.zenithchain.co" + }, + { + "url": "https://dataserver-asia-6.zenithchain.co" + }, + { + "url": "https://dataserver-asia-7.zenithchain.co" + } ], "80": [ - "website:https://genechain.io/en/index.html", - "https://rpc.genechain.io" + { + "url": "website:https://genechain.io/en/index.html" + }, + { + "url": "https://rpc.genechain.io" + } ], "81": [ - "https://rpc-1.japanopenchain.org:8545", - "https://rpc-2.japanopenchain.org:8545" + { + "url": "https://rpc-1.japanopenchain.org:8545" + }, + { + "url": "https://rpc-2.japanopenchain.org:8545" + } ], "82": [ - "https://rpc.meter.io", - "https://rpc-meter.jellypool.xyz", - "https://meter.blockpi.network/v1/rpc/public" + { + "url": "https://rpc.meter.io" + }, + { + "url": "https://rpc-meter.jellypool.xyz", + "tracking": "yes", + "trackingDetails": "The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information. https://www.jellypool.xyz/privacy/" + }, + { + "url": "https://meter.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + } ], "83": [ - "https://rpctest.meter.io" + { + "url": "https://rpctest.meter.io" + } ], "84": [ - "https://linqto-dev.com" + { + "url": "https://linqto-dev.com" + } ], "85": [ - "https://testnet.gatenode.cc" + { + "url": "https://testnet.gatenode.cc" + } ], "86": [ - "https://evm.gatenode.cc" + { + "url": "https://evm.gatenode.cc" + } ], "87": [ - "https://rpc.novanetwork.io:9070", - "https://dev.rpc.novanetwork.io", - "https://connect.novanetwork.io", - "https://0x57.redjackstudio.com" + { + "url": "https://rpc.novanetwork.io:9070", + "tracking": "none", + "trackingDetails": "Only strictly functional data is automatically collected by the RPC. None of this data is directly exported or used for commercial purposes." + }, + { + "url": "https://dev.rpc.novanetwork.io", + "tracking": "none", + "trackingDetails": "Only strictly functional data is automatically collected by the RPC. None of this data is directly exported or used for commercial purposes." + }, + { + "url": "https://connect.novanetwork.io" + }, + { + "url": "https://0x57.redjackstudio.com" + } ], "88": [ - "https://rpc.tomochain.com", - "https://viction.blockpi.network/v1/rpc/public", - "https://rpc.viction.xyz" + { + "url": "https://rpc.tomochain.com" + }, + { + "url": "https://viction.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://rpc.viction.xyz" + } ], "89": [ - "https://rpc-testnet.viction.xyz" + { + "url": "https://rpc-testnet.viction.xyz" + } ], "90": [ - "https://s0.garizon.net/rpc" + { + "url": "https://s0.garizon.net/rpc" + } ], "91": [ - "https://s1.garizon.net/rpc" + { + "url": "https://s1.garizon.net/rpc" + } ], "92": [ - "https://s2.garizon.net/rpc" + { + "url": "https://s2.garizon.net/rpc" + } ], "93": [ - "https://s3.garizon.net/rpc" + { + "url": "https://s3.garizon.net/rpc" + } ], "94": [ - "https://rpc.swissdlt.ch" + { + "url": "https://rpc.swissdlt.ch" + } ], "95": [ - "https://rpc1.camdl.gov.kh" + { + "url": "https://rpc1.camdl.gov.kh" + } ], "96": [ - "https://rpc.bitkubchain.io", - "wss://wss.bitkubchain.io" + { + "url": "https://rpc.bitkubchain.io" + }, + { + "url": "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" + { + "url": "https://endpoints.omniatech.io/v1/bsc/testnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://bsctestapi.terminet.io/rpc" + }, + { + "url": "https://bsc-testnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://bsc-testnet-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://bsc-testnet-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://api.zan.top/node/v1/bsc/testnet/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://bsc-testnet.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://data-seed-prebsc-1-s1.bnbchain.org:8545" + }, + { + "url": "https://data-seed-prebsc-2-s1.bnbchain.org:8545" + }, + { + "url": "https://data-seed-prebsc-1-s2.bnbchain.org:8545" + }, + { + "url": "https://data-seed-prebsc-2-s2.bnbchain.org:8545" + }, + { + "url": "https://data-seed-prebsc-1-s3.bnbchain.org:8545" + }, + { + "url": "https://data-seed-prebsc-2-s3.bnbchain.org:8545" + } ], "98": [ - "https://sixnet-rpc-evm.sixprotocol.net" + { + "url": "https://sixnet-rpc-evm.sixprotocol.net" + } ], "99": [ - "https://core.poanetwork.dev", - "https://core.poa.network" + { + "url": "https://core.poanetwork.dev" + }, + { + "url": "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" + { + "url": "https://rpc.gnosischain.com" + }, + { + "url": "https://xdai-archive.blockscout.com" + }, + { + "url": "https://gnosis-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://rpc.gnosis.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://gnosis-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://rpc.ankr.com/gnosis", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://rpc.ap-southeast-1.gateway.fm/v4/gnosis/non-archival/mainnet", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://gnosis.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://gnosis.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://gnosis.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://endpoints.omniatech.io/v1/gnosis/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://gnosis-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://gnosis-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://1rpc.io/gnosis", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://rpc.tornadoeth.cash/gnosis", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + }, + { + "url": "https://gnosischain-rpc.gateway.pokt.network" + }, + { + "url": "https://web3endpoints.com/gnosischain-mainnet" + }, + { + "url": "https://gnosis.oat.farm" + }, + { + "url": "wss://rpc.gnosischain.com/wss" + } ], "101": [ - "https://api.einc.io/jsonrpc/mainnet" + { + "url": "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" + { + "url": "https://testnet-rpc-0.web3games.org/evm" + }, + { + "url": "https://testnet-rpc-1.web3games.org/evm" + }, + { + "url": "https://testnet-rpc-2.web3games.org/evm" + } ], "103": [ - "https://seoul.worldland.foundation", - "https://seoul2.worldland.foundation" + { + "url": "https://seoul.worldland.foundation" + }, + { + "url": "https://seoul2.worldland.foundation" + } ], "104": [ - "https://klc.live" + { + "url": "https://klc.live" + } ], "105": [ - "https://devnet.web3games.org/evm" + { + "url": "https://devnet.web3games.org/evm" + } ], "106": [ - "https://evmexplorer.velas.com/rpc", - "https://velas-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", - "https://explorer.velas.com/rpc" + { + "url": "https://evmexplorer.velas.com/rpc" + }, + { + "url": "https://velas-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf" + }, + { + "url": "https://explorer.velas.com/rpc" + } ], "107": [ - "https://testnet.rpc.novanetwork.io" + { + "url": "https://testnet.rpc.novanetwork.io" + } ], "108": [ - "https://mainnet-rpc.thundercore.com", - "https://mainnet-rpc.thundertoken.net", - "https://mainnet-rpc.thundercore.io" + { + "url": "https://mainnet-rpc.thundercore.com" + }, + { + "url": "https://mainnet-rpc.thundertoken.net" + }, + { + "url": "https://mainnet-rpc.thundercore.io" + } ], "109": [ - "https://www.shibrpc.com" + { + "url": "https://www.shibrpc.com" + } ], "110": [ - "https://protontestnet.greymass.com" + { + "url": "https://protontestnet.greymass.com" + } ], "111": [ - "https://rpc.etherlite.org" + { + "url": "https://rpc.etherlite.org" + } ], "112": [ - "https://coinbit-rpc-mainnet.chain.sbcrypto.app" + { + "url": "https://coinbit-rpc-mainnet.chain.sbcrypto.app" + } ], "113": [ - "https://connect.dehvo.com", - "https://rpc.dehvo.com", - "https://rpc1.dehvo.com", - "https://rpc2.dehvo.com" + { + "url": "https://connect.dehvo.com" + }, + { + "url": "https://rpc.dehvo.com" + }, + { + "url": "https://rpc1.dehvo.com" + }, + { + "url": "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" + { + "url": "https://coston2-api.flare.network/ext/C/rpc" + }, + { + "url": "https://flare-testnet-coston2.rpc.thirdweb.com" + }, + { + "url": "https://flaretestnet-bundler.etherspot.io" + }, + { + "url": "https://01-gravelines-005-01.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://02-chicago-005-02.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://02-tokyo-005-03.rpc.tatum.io/ext/bc/C/rpc" + }, + { + "url": "https://coston2.enosys.global/ext/C/rpc" + } ], "117": [ - "https://json-rpc.uptick.network" + { + "url": "https://json-rpc.uptick.network" + } ], "118": [ - "https://testnet.arcology.network/rpc" + { + "url": "https://testnet.arcology.network/rpc" + } ], "119": [ - "https://evmapi.nuls.io", - "https://evmapi2.nuls.io" + { + "url": "https://evmapi.nuls.io" + }, + { + "url": "https://evmapi2.nuls.io" + } ], "120": [ - "https://beta.evmapi.nuls.io", - "https://beta.evmapi2.nuls.io" + { + "url": "https://beta.evmapi.nuls.io" + }, + { + "url": "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" + { + "url": "https://rcl-dataseed1.rclsidechain.com" + }, + { + "url": "https://rcl-dataseed2.rclsidechain.com" + }, + { + "url": "https://rcl-dataseed3.rclsidechain.com" + }, + { + "url": "https://rcl-dataseed4.rclsidechain.com" + }, + { + "url": "wss://rcl-dataseed1.rclsidechain.com/v1" + }, + { + "url": "wss://rcl-dataseed2.rclsidechain.com/v1" + }, + { + "url": "wss://rcl-dataseed3.rclsidechain.com/v1" + }, + { + "url": "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" + { + "url": "https://rpc.fuse.io" + }, + { + "url": "https://fuse-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://fuse-mainnet.chainstacklabs.com", + "tracking": "yes", + "trackingDetails": "We process certain personal data to provide you with the core functionality of our Services. Specifically, when you are: Using the Chainstack Console, we process your name, surname, email address (your account identifier), organization name, IP address, all HTTP headers (most importantly User-Agent), cookies; Using the Chainstack Blockchain infrastructure, we process nodes' token stored in Chainstack Vault, IP address and HTTP headers, request body, API token in Chainstack Vault.https://chainstack.com/privacy/" + }, + { + "url": "https://fuse.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://fuse.liquify.com", + "tracking": "yes", + "trackingDetails": "What data do we collect? Information collected automatically from your device, including IP address, device type,operating system, browser-type, broad geographic location and other technical information.https://www.liquify.io/privacy_policy.pdf" + }, + { + "url": "https://fuse.drpc.org" + }, + { + "url": "wss://fuse.drpc.org" + } ], "123": [ - "https://rpc.fusespark.io" + { + "url": "https://rpc.fusespark.io" + } ], "124": [ - "https://decentralized-web.tech/dw_rpc.php" + { + "url": "https://decentralized-web.tech/dw_rpc.php" + } ], "125": [ - "https://rpc.testnet.oychain.io" + { + "url": "https://rpc.testnet.oychain.io" + } ], "126": [ - "https://rpc.mainnet.oychain.io", - "https://rpc.oychain.io" + { + "url": "https://rpc.mainnet.oychain.io" + }, + { + "url": "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" + { + "url": "https://http-mainnet.hecochain.com" + }, + { + "url": "https://http-mainnet-node.huobichain.com" + }, + { + "url": "https://hecoapi.terminet.io/rpc" + }, + { + "url": "wss://ws-mainnet.hecochain.com" + } ], "129": [ - "https://rpc.innovatorchain.com" + { + "url": "https://rpc.innovatorchain.com" + } ], "131": [ - "https://tokioswift.engram.tech", - "https://tokio-archive.engram.tech" + { + "url": "https://tokioswift.engram.tech" + }, + { + "url": "https://tokio-archive.engram.tech" + } ], "132": [ - "https://rpc.chain.namefi.io" + { + "url": "https://rpc.chain.namefi.io" + } ], "134": [ - "https://bellecour.iex.ec" + { + "url": "https://bellecour.iex.ec" + } ], "135": [ - "https://testnet-rpc.alyxchain.com" + { + "url": "https://testnet-rpc.alyxchain.com" + } ], "136": [ - "https://mainnet.deamchain.com" + { + "url": "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" + { + "url": "https://polygon.llamarpc.com", + "tracking": "none", + "trackingDetails": "LlamaNodes is open-source and does not track or store user information that transits through our RPCs (location, IP, wallet, etc). To learn more, have a look at the public Privacy Policy in our docs: https://llamanodes.notion.site/Privacy-Practices-f20fd8fdd02a469d9d4f42a5989bb936", + "isOpenSource": true + }, + { + "url": "https://rpc-mainnet.maticvigil.com" + }, + { + "url": "https://endpoints.omniatech.io/v1/matic/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://polygon-rpc.com" + }, + { + "url": "https://rpc-mainnet.matic.network" + }, + { + "url": "https://rpc-mainnet.matic.quiknode.pro", + "tracking": "yes", + "trackingDetails": "Information about your computer hardware and software may be automatically collected by QuickNode. This information can include such details as your IP address, browser type, domain names, access times and referring website addresses.https://www.quicknode.com/privacy" + }, + { + "url": "https://matic-mainnet-full-rpc.bwarelabs.com" + }, + { + "url": "https://matic-mainnet-archive-rpc.bwarelabs.com" + }, + { + "url": "https://polygon-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://rpc.ankr.com/polygon", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://polygon-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://polygonapi.terminet.io/rpc" + }, + { + "url": "https://1rpc.io/matic", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://polygon-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://polygon-bor-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://polygon-mainnet-public.unifra.io" + }, + { + "url": "https://polygon-mainnet.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://polygon.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://polygon.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://polygon.rpc.blxrbdn.com", + "tracking": "yes", + "trackingDetails": "We may collect information that is publicly available in a blockchain when providing our services, such as: Public wallet identifier of the sender and recipient of a transaction, Unique identifier for a transaction, Date and time of a transaction, Transaction value, along with associated costs, Status of a transaction (such as whether the transaction is complete, in-progress, or resulted in an error) https://bloxroute.com/wp-content/uploads/2021/12/bloXroute-Privacy-Policy-04-01-2019-Final.pdf" + }, + { + "url": "https://polygon.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://polygon.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/polygon", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://api.zan.top/node/v1/polygon/mainnet/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://polygon.meowrpc.com", + "tracking": "none", + "trackingDetails": "With the exclusion of data that will be openly visible and available on the blockchain, MEOWRPC does not track or store any kind of user information (such as location, IP address, etc.) that passes through our RPC. For further details regarding our privacy practices, we encourage you to refer to our Privacy Policy. https://privacy.meowrpc.com" + }, + { + "url": "https://getblock.io/nodes/matic", + "tracking": "none", + "trackingDetails": "We automatically collect certain information through cookies and similar technologies when you visit, use or navigate Website. This information does not reveal your specific identity (like your name or contact information) and does not allow to identify you. However, it may include device and usage information, such as your IP address, browser and device characteristics, its type and version, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our Website, information about your interaction in our emails, and other technical and statistical information. This information is primarily needed to maintain the security and operation of our Website, and for our internal analytics and reporting purposes.Specifically, as the RPC provider, we do not log and store your IP address, country, location and similar data. https://getblock.io/privacy-policy/" + }, + { + "url": "https://api.stateless.solutions/polygon/v1/5850f066-209e-4e3c-a294-0757a4eb34b3", + "tracking": "none", + "trackingDetails": "Through any of our RPC API endpoints, whether public or private, we do not collect personal identifiers such as IP addresses, request origins, or specific request data. https://www.stateless.solutions/api-usage-privacy-policy" + }, + { + "url": "https://rpc.tornadoeth.cash/polygon", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + }, + { + "url": "https://matic-mainnet.chainstacklabs.com" + }, + { + "url": "wss://polygon.gateway.tenderly.co" + }, + { + "url": "wss://polygon.drpc.org" + } ], "138": [ - "https://rpc.defi-oracle.io", - "wss://wss.defi-oracle.io" + { + "url": "https://rpc.defi-oracle.io" + }, + { + "url": "wss://wss.defi-oracle.io" + } ], "139": [ - "https://rpc.woop.ai/rpc" + { + "url": "https://rpc.woop.ai/rpc" + } ], "140": [ - "https://mainnet.eternalcoin.io/v1", - "ws://mainnet.eternalcoin.io/v1/ws" + { + "url": "https://mainnet.eternalcoin.io/v1" + }, + { + "url": "ws://mainnet.eternalcoin.io/v1/ws" + } ], "141": [ - "https://testnet.openpiece.io" + { + "url": "https://testnet.openpiece.io" + } ], "142": [ - "https://rpc.prodax.io" + { + "url": "https://rpc.prodax.io" + } ], "144": [ - "https://connect.phi.network" + { + "url": "https://connect.phi.network" + } ], "145": [ - "https://rpc-testnet.soraai.bot" + { + "url": "https://rpc-testnet.soraai.bot" + } ], "147": [ - "https://mainnet-rpc.flagscan.xyz" + { + "url": "https://mainnet-rpc.flagscan.xyz" + } ], "148": [ - "https://json-rpc.evm.shimmer.network" + { + "url": "https://json-rpc.evm.shimmer.network" + } ], "150": [ - "https://rpc-evm.fivenet.sixprotocol.net" + { + "url": "https://rpc-evm.fivenet.sixprotocol.net" + } ], "153": [ - "https://governors.testnet.redbelly.network" + { + "url": "https://governors.testnet.redbelly.network" + } ], "155": [ - "https://rpc.testnet.tenet.org" + { + "url": "https://rpc.testnet.tenet.org" + } ], "156": [ - "https://testnet-rpc.oeblock.com" + { + "url": "https://testnet-rpc.oeblock.com" + } ], "157": [ - "https://puppynet.shibrpc.com" + { + "url": "https://puppynet.shibrpc.com" + } ], "158": [ - "https://dataseed.roburna.com" + { + "url": "https://dataseed.roburna.com" + } ], "159": [ - "https://preseed-testnet-1.roburna.com" + { + "url": "https://preseed-testnet-1.roburna.com" + } ], "160": [ - "https://evascan.io/api/eth-rpc" + { + "url": "https://evascan.io/api/eth-rpc" + } ], "161": [ - "https://testnet.evascan.io/api/eth-rpc" + { + "url": "https://testnet.evascan.io/api/eth-rpc" + } ], "162": [ - "https://node.sirius.lightstreams.io" + { + "url": "https://node.sirius.lightstreams.io" + } ], "163": [ - "https://node.mainnet.lightstreams.io" + { + "url": "https://node.mainnet.lightstreams.io" + } ], "164": [ - "https://testnet.omni.network" + { + "url": "https://testnet.omni.network" + } ], "167": [ - "https://node.atoshi.io", - "https://node2.atoshi.io", - "https://node3.atoshi.io" + { + "url": "https://node.atoshi.io" + }, + { + "url": "https://node2.atoshi.io" + }, + { + "url": "https://node3.atoshi.io" + } ], "168": [ - "https://eth-dataseed.aioz.network" + { + "url": "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" + { + "url": "https://pacific-rpc.manta.network/http" + }, + { + "url": "https://1rpc.io/manta", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://manta-pacific.drpc.org" + }, + { + "url": "wss://manta-pacific.drpc.org" + } ], "170": [ - "https://http-testnet.hoosmartchain.com" + { + "url": "https://http-testnet.hoosmartchain.com" + } ], "172": [ - "https://rpc.latam-blockchain.com", - "wss://ws.latam-blockchain.com" + { + "url": "https://rpc.latam-blockchain.com" + }, + { + "url": "wss://ws.latam-blockchain.com" + } ], "176": [ - "https://rpc.dcnetio.cloud", - "wss://ws.dcnetio.cloud" + { + "url": "https://rpc.dcnetio.cloud" + }, + { + "url": "wss://ws.dcnetio.cloud" + } ], "180": [ - "https://node1.amechain.io" + { + "url": "https://node1.amechain.io" + } ], "181": [ - "https://rpc.waterfall.network" + { + "url": "https://rpc.waterfall.network" + } ], "185": [ - "https://rpc.mintchain.io", - "https://global.rpc.mintchain.io", - "https://asia.rpc.mintchain.io" + { + "url": "https://rpc.mintchain.io" + }, + { + "url": "https://global.rpc.mintchain.io" + }, + { + "url": "https://asia.rpc.mintchain.io" + } ], "186": [ - "https://rpc.seelen.pro" + { + "url": "https://rpc.seelen.pro" + } ], "188": [ - "https://mainnet.bmcchain.com" + { + "url": "https://mainnet.bmcchain.com" + } ], "189": [ - "https://testnet.bmcchain.com" + { + "url": "https://testnet.bmcchain.com" + } ], "191": [ - "https://rpc.filefilego.com/rpc" + { + "url": "https://rpc.filefilego.com/rpc" + } ], "193": [ - "https://cemchain.com" + { + "url": "https://cemchain.com" + } ], "195": [ - "https://x1-testnet.blockpi.network/v1/rpc/public ", - "https://testrpc.xlayer.tech", - "https://xlayertestrpc.okx.com" + { + "url": "https://x1-testnet.blockpi.network/v1/rpc/public ", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://testrpc.xlayer.tech" + }, + { + "url": "https://xlayertestrpc.okx.com" + } ], "196": [ - "https://rpc.xlayer.tech", - "https://xlayerrpc.okx.com" + { + "url": "https://rpc.xlayer.tech" + }, + { + "url": "https://xlayerrpc.okx.com" + } ], "197": [ - "https://testnet-rpc.neutrinoschain.com" + { + "url": "https://testnet-rpc.neutrinoschain.com" + } ], "198": [ - "https://rpc.bitchain.biz" + { + "url": "https://rpc.bitchain.biz" + } ], "199": [ - "https://rpc.bittorrentchain.io", - "https://rpc.bt.io", - "https://bittorrent.drpc.org", - "wss://bittorrent.drpc.org" + { + "url": "https://rpc.bittorrentchain.io" + }, + { + "url": "https://rpc.bt.io" + }, + { + "url": "https://bittorrent.drpc.org" + }, + { + "url": "wss://bittorrent.drpc.org" + } ], "200": [ - "https://arbitrum.xdaichain.com" + { + "url": "https://arbitrum.xdaichain.com" + } ], "201": [ - "https://gateway.moac.io/testnet" + { + "url": "https://gateway.moac.io/testnet" + } ], "202": [ - "https://testnet.rpc.edgeless.network/http" + { + "url": "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" + { + "url": "https://opbnb-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://opbnb-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://1rpc.io/opbnb", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://opbnb-mainnet-rpc.bnbchain.org" + }, + { + "url": "https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3" + }, + { + "url": "wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3" + }, + { + "url": "https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5" + }, + { + "url": "wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5" + }, + { + "url": "https://opbnb.drpc.org" + }, + { + "url": "wss://opbnb.drpc.org" + } ], "206": [ - "https://vinufoundation-rpc.com" + { + "url": "https://vinufoundation-rpc.com" + } ], "207": [ - "https://vinuchain-rpc.com" + { + "url": "https://vinuchain-rpc.com" + } ], "208": [ - "https://mainnet.structx.io" + { + "url": "https://mainnet.structx.io" + } ], "210": [ - "https://rpc.bitnet.money", - "https://rpc.btnscan.com" + { + "url": "https://rpc.bitnet.money" + }, + { + "url": "https://rpc.btnscan.com" + } ], "211": [ - "http://13.57.207.168:3435", - "https://app.freighttrust.net/ftn/${API_KEY}" + { + "url": "http://13.57.207.168:3435" + }, + { + "url": "https://app.freighttrust.net/ftn/${API_KEY}" + } ], "212": [ - "https://testnet-rpc.maplabs.io" + { + "url": "https://testnet-rpc.maplabs.io" + } ], "213": [ - "https://hub-rpc.bsquared.network" + { + "url": "https://hub-rpc.bsquared.network" + } ], "214": [ - "https://mainnet.shinarium.org" + { + "url": "https://mainnet.shinarium.org" + } ], "217": [ - "https://rpc2.siriusnet.io" + { + "url": "https://rpc2.siriusnet.io" + } ], "220": [ - "https://rpc-sepolia.scalind.com" + { + "url": "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" + { + "url": "https://mainnet.b2-rpc.com" + }, + { + "url": "https://rpc.bsquared.network" + }, + { + "url": "https://b2-mainnet.alt.technology" + }, + { + "url": "https://b2-mainnet-public.s.chainbase.com" + }, + { + "url": "https://rpc.ankr.com/b2" + } ], "224": [ - "https://testnet-rpc.vrd.network" + { + "url": "https://testnet-rpc.vrd.network" + } ], "225": [ - "https://rpc-mainnet.lachain.io" + { + "url": "https://rpc-mainnet.lachain.io" + } ], "226": [ - "https://rpc-testnet.lachain.io" + { + "url": "https://rpc-testnet.lachain.io" + } ], "228": [ - "https://rpc_mainnet.mindnetwork.xyz", - "wss://rpc_mainnet.mindnetwork.xyz" + { + "url": "https://rpc_mainnet.mindnetwork.xyz" + }, + { + "url": "wss://rpc_mainnet.mindnetwork.xyz" + } ], "230": [ - "https://rpc.swapdex.network", - "wss://ss.swapdex.network" + { + "url": "https://rpc.swapdex.network" + }, + { + "url": "wss://ss.swapdex.network" + } ], "234": [ - "https://testnode.jumbochain.org" + { + "url": "https://testnode.jumbochain.org" + } ], "236": [ - "https://testnet.deamchain.com" + { + "url": "https://testnet.deamchain.com" + } ], "242": [ - "https://rpcurl.mainnet.plgchain.com", - "https://rpcurl.plgchain.blockchain.evmnode.online", - "https://rpcurl.mainnet.plgchain.plinga.technology" + { + "url": "https://rpcurl.mainnet.plgchain.com" + }, + { + "url": "https://rpcurl.plgchain.blockchain.evmnode.online" + }, + { + "url": "https://rpcurl.mainnet.plgchain.plinga.technology" + } ], "246": [ - "https://rpc.energyweb.org", - "wss://rpc.energyweb.org/ws" + { + "url": "https://rpc.energyweb.org" + }, + { + "url": "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" + { + "url": "https://oasys.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://oasys-mainnet.gateway.pokt.network/v1/lb/c967bd31" + }, + { + "url": "https://oasys-mainnet-archival.gateway.pokt.network/v1/lb/c967bd31" + }, + { + "url": "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" + { + "url": "https://rpcapi.fantom.network" + }, + { + "url": "https://endpoints.omniatech.io/v1/fantom/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://fantom-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://rpc.ftm.tools" + }, + { + "url": "https://rpc.ankr.com/fantom", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://rpc.fantom.network" + }, + { + "url": "https://rpc2.fantom.network" + }, + { + "url": "https://rpc3.fantom.network" + }, + { + "url": "https://fantom-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://1rpc.io/ftm", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://fantom.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://fantom-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://fantom.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://rpc.fantom.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://fantom.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "wss://fantom.drpc.org" + } ], "252": [ - "https://rpc.frax.com" + { + "url": "https://rpc.frax.com" + } ], "255": [ - "https://1rpc.io/kroma", - "https://api.kroma.network", - "https://rpc-kroma.rockx.com" + { + "url": "https://1rpc.io/kroma", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://api.kroma.network" + }, + { + "url": "https://rpc-kroma.rockx.com" + } ], "256": [ - "https://hecotestapi.terminet.io/rpc", - "https://http-testnet.hecochain.com", - "wss://ws-testnet.hecochain.com" + { + "url": "https://hecotestapi.terminet.io/rpc" + }, + { + "url": "https://http-testnet.hecochain.com" + }, + { + "url": "wss://ws-testnet.hecochain.com" + } ], "259": [ - "https://mainnet.neonlink.io" + { + "url": "https://mainnet.neonlink.io" + } ], "262": [ - "https://sur.nilin.org" + { + "url": "https://sur.nilin.org" + } ], "267": [ - "https://rpc.ankr.com/neura_testnet" + { + "url": "https://rpc.ankr.com/neura_testnet" + } ], "269": [ - "https://hpbnode.com", - "wss://ws.hpbnode.com" + { + "url": "https://hpbnode.com" + }, + { + "url": "wss://ws.hpbnode.com" + } ], "271": [ - "https://rpc.egonscan.com" + { + "url": "https://rpc.egonscan.com" + } ], "274": [ - "https://rpc1.mainnet.lachain.network", - "https://rpc2.mainnet.lachain.network", - "https://lachain.rpc-nodes.cedalio.dev" + { + "url": "https://rpc1.mainnet.lachain.network" + }, + { + "url": "https://rpc2.mainnet.lachain.network" + }, + { + "url": "https://lachain.rpc-nodes.cedalio.dev" + } ], "278": [ - "https://rpc_mainnet.xfair.ai", - "wss://rpc_mainnet.xfair.ai" + { + "url": "https://rpc_mainnet.xfair.ai" + }, + { + "url": "wss://rpc_mainnet.xfair.ai" + } ], "279": [ - "https://rpc.mainnet.bpxchain.cc", - "https://bpx-dataseed.infinex.cc" + { + "url": "https://rpc.mainnet.bpxchain.cc" + }, + { + "url": "https://bpx-dataseed.infinex.cc" + } ], "282": [ - "https://testnet.zkevm.cronos.org" + { + "url": "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" + { + "url": "https://mainnet.boba.network" + }, + { + "url": "https://boba-ethereum.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/boba-ethereum", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://1rpc.io/boba/eth", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://replica.boba.network" + }, + { + "url": "wss://boba-ethereum.gateway.tenderly.co" + }, + { + "url": "wss://gateway.tenderly.co/public/boba-ethereum" + }, + { + "url": "https://boba-eth.drpc.org" + }, + { + "url": "wss://boba-eth.drpc.org" + } ], "291": [ - "https://rpc.orderly.network", - "https://l2-orderly-mainnet-0.t.conduit.xyz" + { + "url": "https://rpc.orderly.network" + }, + { + "url": "https://l2-orderly-mainnet-0.t.conduit.xyz" + } ], "295": [ - "https://mainnet.hashio.io/api" + { + "url": "https://mainnet.hashio.io/api" + } ], "296": [ - "https://testnet.hashio.io/api" + { + "url": "https://testnet.hashio.io/api" + } ], "297": [ - "https://previewnet.hashio.io/api" + { + "url": "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" + { + "url": "https://zksync-era-sepolia.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://sepolia.era.zksync.dev" + }, + { + "url": "https://zksync-sepolia.drpc.org" + }, + { + "url": "wss://zksync-sepolia.drpc.org" + } ], "302": [ - "https://sepolia.rpc.zkcandy.io" + { + "url": "https://sepolia.rpc.zkcandy.io" + } ], "303": [ - "https://nc-rpc-test1.neurochain.io" + { + "url": "https://nc-rpc-test1.neurochain.io" + } ], "305": [ - "https://mainnet.zksats.io" + { + "url": "https://mainnet.zksats.io" + } ], "307": [ - "https://trpc.lovely.network" + { + "url": "https://trpc.lovely.network" + } ], "308": [ - "https://rpc.furtheon.org" + { + "url": "https://rpc.furtheon.org" + } ], "309": [ - "https://rpc-testnet3.wyzthchain.org" + { + "url": "https://rpc-testnet3.wyzthchain.org" + } ], "311": [ - "https://mainapi.omaxray.com" + { + "url": "https://mainapi.omaxray.com" + } ], "313": [ - "https://nc-rpc-prd1.neurochain.io", - "https://nc-rpc-prd2.neurochain.io" + { + "url": "https://nc-rpc-prd1.neurochain.io" + }, + { + "url": "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" + { + "url": "https://api.node.glif.io" + }, + { + "url": "https://node.filutils.com/rpc/v1" + }, + { + "url": "https://rpc.ankr.com/filecoin", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://filecoin.chainup.net/rpc/v1", + "tracking": "limited", + "trackingDetails": "We only collect user IP addresses for the purpose of rate limiting. For more information, please visit https://docs.chainupcloud.com/introduction/products/blockchain-api." + }, + { + "url": "https://infura.sftproject.io/filecoin/rpc/v1", + "tracking": "yes", + "trackingDetails": "Information collected automatically may include usage details, IP addresses, and information collected through cookies and other tracking technologies" + }, + { + "url": "https://api.chain.love/rpc/v1" + }, + { + "url": "https://filecoin-mainnet.chainstacklabs.com/rpc/v1" + }, + { + "url": "https://filfox.info/rpc/v1" + }, + { + "url": "https://filecoin.drpc.org" + }, + { + "url": "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" + { + "url": "https://rpc-mainnet.kcc.network" + }, + { + "url": "https://kcc.mytokenpocket.vip" + }, + { + "url": "https://kcc-rpc.com" + }, + { + "url": "https://services.tokenview.io/vipapi/nodeservice/kcs?apikey=qVHq2o6jpaakcw3lRstl", + "tracking": "yes", + "trackingDetails": "Information about your computer hardware and software may be automatically collected by Tokenview. This information can include such details as your IP address, browser type, domain names, access times, etc.https://services.tokenview.io/en/protocol" + }, + { + "url": "https://public-rpc.blockpi.io/http/kcc" + } ], "322": [ - "https://rpc-testnet.kcc.network" + { + "url": "https://rpc-testnet.kcc.network" + } ], "323": [ - "https://rpc.cosvm.net" + { + "url": "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" + { + "url": "https://zksync-era.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://zksync.meowrpc.com", + "tracking": "none", + "trackingDetails": "With the exclusion of data that will be openly visible and available on the blockchain, MEOWRPC does not track or store any kind of user information (such as location, IP address, etc.) that passes through our RPC. For further details regarding our privacy practices, we encourage you to refer to our Privacy Policy. https://privacy.meowrpc.com" + }, + { + "url": "https://zksync.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://1rpc.io/zksync2-era", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://mainnet.era.zksync.io" + }, + { + "url": "wss://zksync.drpc.org" + } ], "333": [ - "https://mainnet.web3q.io:8545" + { + "url": "https://mainnet.web3q.io:8545" + } ], "335": [ - "https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc" + { + "url": "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" + { + "url": "https://rpc.shiden.astar.network:8545" + }, + { + "url": "https://shiden.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://shiden-rpc.dwellir.com", + "tracking": "limited", + "trackingDetails": "Except for the data that is publicly accessible on the blockchain, Dwellir does not collect or keep any user information (like location, IP address, etc.) transmitted via our RPC. For more information about our privacy methods, we suggest checking out our Privacy Policy at https://www.dwellir.com/privacy-policy" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "tracking": "limited", + "trackingDetails": "Except for the data that is publicly accessible on the blockchain, Dwellir does not collect or keep any user information (like location, IP address, etc.) transmitted via our RPC. For more information about our privacy methods, we suggest checking out our Privacy Policy at https://www.dwellir.com/privacy-policy" + }, + { + "url": "https://shiden.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws" + }, + { + "url": "wss://shiden.public.blastapi.io" + } ], "338": [ - "https://evm-t3.cronos.org", - "https://cronos-testnet.drpc.org", - "wss://cronos-testnet.drpc.org" + { + "url": "https://evm-t3.cronos.org" + }, + { + "url": "https://cronos-testnet.drpc.org" + }, + { + "url": "wss://cronos-testnet.drpc.org" + } ], "345": [ - "https://rpc01.trias.one" + { + "url": "https://rpc01.trias.one" + } ], "361": [ - "https://eth-rpc-api.thetatoken.org/rpc" + { + "url": "https://eth-rpc-api.thetatoken.org/rpc" + } ], "363": [ - "https://eth-rpc-api-sapphire.thetatoken.org/rpc" + { + "url": "https://eth-rpc-api-sapphire.thetatoken.org/rpc" + } ], "364": [ - "https://eth-rpc-api-amber.thetatoken.org/rpc" + { + "url": "https://eth-rpc-api-amber.thetatoken.org/rpc" + } ], "365": [ - "https://eth-rpc-api-testnet.thetatoken.org/rpc" + { + "url": "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" + { + "url": "https://rpc.pulsechain.com" + }, + { + "url": "https://pulse-s.projectpi.xyz", + "tracking": "none", + "trackingDetails": "When you use Project Pi as an RPC provider we will not store your IP address or any data for more than 24 hours. IP addresses are not connected or correlated to wallet addresses" + }, + { + "url": "https://pulsechain-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://pulsechain-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://rpc-pulsechain.g4mm4.io" + }, + { + "url": "https://evex.cloud/pulserpc" + }, + { + "url": "wss://evex.cloud/pulsews" + }, + { + "url": "wss://rpc.pulsechain.com" + }, + { + "url": "wss://rpc-pulsechain.g4mm4.io" + } ], "371": [ - "https://rpc-testnet.theconsta.com" + { + "url": "https://rpc-testnet.theconsta.com" + } ], "380": [ - "https://rpc.testnet.zkamoeba.com:4050", - "https://rpc1.testnet.zkamoeba.com:4050" + { + "url": "https://rpc.testnet.zkamoeba.com:4050" + }, + { + "url": "https://rpc1.testnet.zkamoeba.com:4050" + } ], "381": [ - "https://rpc.mainnet.zkamoeba.com/rpc" + { + "url": "https://rpc.mainnet.zkamoeba.com/rpc" + } ], "385": [ - "https://rpc-bitfalls1.lisinski.online" + { + "url": "https://rpc-bitfalls1.lisinski.online" + } ], "395": [ - "https://rpc1.testnet.camdl.gov.kh" + { + "url": "https://rpc1.testnet.camdl.gov.kh" + } ], "399": [ - "https://rpc.nativ3.network", - "wss://ws.nativ3.network" + { + "url": "https://rpc.nativ3.network" + }, + { + "url": "wss://ws.nativ3.network" + } ], "400": [ - "https://testnet-rpc.hyperonchain.com" + { + "url": "https://testnet-rpc.hyperonchain.com" + } ], "401": [ - "https://node1.testnet.ozonechain.io" + { + "url": "https://node1.testnet.ozonechain.io" + } ], "404": [ - "https://rpc.syndr.com", - "wss://rpc.syndr.com/ws" + { + "url": "https://rpc.syndr.com" + }, + { + "url": "wss://rpc.syndr.com/ws" + } ], "411": [ - "https://rpc.pepe-chain.vip" + { + "url": "https://rpc.pepe-chain.vip" + } ], "416": [ - "https://rpc.sx.technology" + { + "url": "https://rpc.sx.technology" + } ], "418": [ - "https://rpc.testnet.lachain.network", - "https://lachain-testnet.rpc-nodes.cedalio.dev" + { + "url": "https://rpc.testnet.lachain.network" + }, + { + "url": "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" + { + "url": "https://endpoints.omniatech.io/v1/op/goerli/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://opt-goerli.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://optimism-goerli.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://rpc.goerli.optimism.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://optimism-goerli-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://optimism-goerli-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://api.zan.top/node/v1/opt/goerli/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://optimism-goerli.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/optimism-goerli", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://goerli.optimism.io" + }, + { + "url": "wss://optimism-goerli.gateway.tenderly.co" + }, + { + "url": "https://optimism-testnet.drpc.org" + }, + { + "url": "wss://optimism-testnet.drpc.org" + } ], "422": [ - "https://mainnet-rpc.vrd.network" + { + "url": "https://mainnet-rpc.vrd.network" + } ], "424": [ - "https://rpc.publicgoods.network" + { + "url": "https://rpc.publicgoods.network" + } ], "427": [ - "https://rpc.zeeth.io" + { + "url": "https://rpc.zeeth.io" + } ], "428": [ - "https://rpc.verse.gesoten.com" + { + "url": "https://rpc.verse.gesoten.com" + } ], "434": [ - "https://evm-rpc.mainnet.boyaa.network" + { + "url": "https://evm-rpc.mainnet.boyaa.network" + } ], "443": [ - "https://testnet.ten.xyz" + { + "url": "https://testnet.ten.xyz" + } ], "444": [ - "https://sepolia.synapseprotocol.com" + { + "url": "https://sepolia.synapseprotocol.com" + } ], "456": [ - "https://chain-rpc.arzio.co" + { + "url": "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" + { + "url": "https://testnet-rpc.areon.network" + }, + { + "url": "https://testnet-rpc2.areon.network" + }, + { + "url": "https://testnet-rpc3.areon.network" + }, + { + "url": "https://testnet-rpc4.areon.network" + }, + { + "url": "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" + { + "url": "https://mainnet-rpc.areon.network" + }, + { + "url": "https://mainnet-rpc2.areon.network" + }, + { + "url": "https://mainnet-rpc3.areon.network" + }, + { + "url": "https://mainnet-rpc4.areon.network" + }, + { + "url": "https://mainnet-rpc5.areon.network" + } ], "500": [ - "https://api.camino.network/ext/bc/C/rpc" + { + "url": "https://api.camino.network/ext/bc/C/rpc" + } ], "501": [ - "https://columbus.camino.network/ext/bc/C/rpc" + { + "url": "https://columbus.camino.network/ext/bc/C/rpc" + } ], "510": [ - "https://rpc-mainnet.syndicate.io" + { + "url": "https://rpc-mainnet.syndicate.io" + } ], "512": [ - "https://rpc.acuteangle.com" + { + "url": "https://rpc.acuteangle.com" + } ], "513": [ - "https://rpc-testnet.acuteangle.com" + { + "url": "https://rpc-testnet.acuteangle.com" + } ], "516": [ - "https://gzn.linksme.info" + { + "url": "https://gzn.linksme.info" + } ], "520": [ - "https://datarpc1.xsc.pub", - "https://datarpc2.xsc.pub", - "https://datarpc3.xsc.pub" + { + "url": "https://datarpc1.xsc.pub" + }, + { + "url": "https://datarpc2.xsc.pub" + }, + { + "url": "https://datarpc3.xsc.pub" + } ], "529": [ - "https://rpc-mainnet.thefirechain.com" + { + "url": "https://rpc-mainnet.thefirechain.com" + } ], "530": [ - "https://fx-json-web3.portfolio-x.xyz:8545", - "https://fx-json-web3.functionx.io:8545" + { + "url": "https://fx-json-web3.portfolio-x.xyz:8545" + }, + { + "url": "https://fx-json-web3.functionx.io:8545" + } ], "534": [ - "https://candle-rpc.com", - "https://rpc.cndlchain.com" + { + "url": "https://candle-rpc.com" + }, + { + "url": "https://rpc.cndlchain.com" + } ], "537": [ - "https://rpc.optrust.io" + { + "url": "https://rpc.optrust.io" + } ], "542": [ - "https://pawchainx.com" + { + "url": "https://pawchainx.com" + } ], "545": [ - "https://testnet.evm.nodes.onflow.org" + { + "url": "https://testnet.evm.nodes.onflow.org" + } ], "555": [ - "https://rpc.velaverse.io" + { + "url": "https://rpc.velaverse.io" + } ], "558": [ - "https://rpc.tao.network", - "https://rpc.testnet.tao.network", - "http://rpc.testnet.tao.network:8545", - "wss://rpc.tao.network" + { + "url": "https://rpc.tao.network" + }, + { + "url": "https://rpc.testnet.tao.network" + }, + { + "url": "http://rpc.testnet.tao.network:8545" + }, + { + "url": "wss://rpc.tao.network" + } ], "568": [ - "https://rpc-testnet.dogechain.dog" + { + "url": "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" + { + "url": "wss://rpc.rollux.com/wss" + }, + { + "url": "https://rpc.rollux.com" + }, + { + "url": "https://rollux.rpc.syscoin.org" + }, + { + "url": "wss://rollux.rpc.syscoin.org/wss" + }, + { + "url": "https://rpc.ankr.com/rollux" + } ], "571": [ - "https://rpc.metatime.com" + { + "url": "https://rpc.metatime.com" + } ], "579": [ - "https://rpc.filenova.org" + { + "url": "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" + { + "url": "https://evm.astar.network" + }, + { + "url": "https://rpc.astar.network:8545" + }, + { + "url": "https://astar.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://getblock.io/nodes/bsc", + "tracking": "none", + "trackingDetails": "We automatically collect certain information through cookies and similar technologies when you visit, use or navigate Website. This information does not reveal your specific identity (like your name or contact information) and does not allow to identify you. However, it may include device and usage information, such as your IP address, browser and device characteristics, its type and version, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our Website, information about your interaction in our emails, and other technical and statistical information. This information is primarily needed to maintain the security and operation of our Website, and for our internal analytics and reporting purposes.Specifically, as the RPC provider, we do not log and store your IP address, country, location and similar data. https://getblock.io/privacy-policy/" + }, + { + "url": "https://1rpc.io/astr", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://astar-mainnet.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://astar.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://astar-rpc.dwellir.com", + "tracking": "limited", + "trackingDetails": "Except for the data that is publicly accessible on the blockchain, Dwellir does not collect or keep any user information (like location, IP address, etc.) transmitted via our RPC. For more information about our privacy methods, we suggest checking out our Privacy Policy at https://www.dwellir.com/privacy-policy" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "tracking": "limited", + "trackingDetails": "Except for the data that is publicly accessible on the blockchain, Dwellir does not collect or keep any user information (like location, IP address, etc.) transmitted via our RPC. For more information about our privacy methods, we suggest checking out our Privacy Policy at https://www.dwellir.com/privacy-policy" + } ], "595": [ - "https://eth-rpc-tc9.aca-staging.network", - "wss://eth-rpc-tc9.aca-staging.network" + { + "url": "https://eth-rpc-tc9.aca-staging.network" + }, + { + "url": "wss://eth-rpc-tc9.aca-staging.network" + } ], "596": [ - "https://eth-rpc-karura-testnet.aca-staging.network", - "wss://eth-rpc-karura-testnet.aca-staging.network" + { + "url": "https://eth-rpc-karura-testnet.aca-staging.network" + }, + { + "url": "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" + { + "url": "https://eth-rpc-acala-testnet.aca-staging.network" + }, + { + "url": "wss://eth-rpc-acala-testnet.aca-staging.network" + } ], "601": [ - "https://rpc-testnet.vne.network" + { + "url": "https://rpc-testnet.vne.network" + } ], "612": [ - "https://rpc.eiob.xyz" + { + "url": "https://rpc.eiob.xyz" + } ], "614": [ - "https://glq-dataseed.graphlinq.io" + { + "url": "https://glq-dataseed.graphlinq.io" + } ], "634": [ - "https://rpc.avocado.instadapp.io" + { + "url": "https://rpc.avocado.instadapp.io" + } ], "646": [ - "https://previewnet.evm.nodes.onflow.org" + { + "url": "https://previewnet.evm.nodes.onflow.org" + } ], "647": [ - "https://rpc.toronto.sx.technology" + { + "url": "https://rpc.toronto.sx.technology" + } ], "648": [ - "https://rpc-endurance.fusionist.io" + { + "url": "https://rpc-endurance.fusionist.io" + } ], "653": [ - "https://rpc.kalichain.com" + { + "url": "https://rpc.kalichain.com" + } ], "654": [ - "https://mainnet.kalichain.com" + { + "url": "https://mainnet.kalichain.com" + } ], "662": [ - "https://rpc.ultronsmartchain.io" + { + "url": "https://rpc.ultronsmartchain.io" + } ], "666": [ - "https://http-testnet.chain.pixie.xyz", - "wss://ws-testnet.chain.pixie.xyz" + { + "url": "https://http-testnet.chain.pixie.xyz" + }, + { + "url": "wss://ws-testnet.chain.pixie.xyz" + } ], "667": [ - "https://arrakis.gorengine.com/own", - "wss://arrakis.gorengine.com/own" + { + "url": "https://arrakis.gorengine.com/own" + }, + { + "url": "wss://arrakis.gorengine.com/own" + } ], "668": [ - "https://rpc.juncachain.com" + { + "url": "https://rpc.juncachain.com" + } ], "669": [ - "https://rpc-testnet.juncachain.com", - "wss://ws-testnet.juncachain.com" + { + "url": "https://rpc-testnet.juncachain.com" + }, + { + "url": "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" + { + "url": "https://eth-rpc-karura.aca-staging.network" + }, + { + "url": "https://rpc.evm.karura.network" + }, + { + "url": "https://karura.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://eth-rpc-karura.aca-api.network" + }, + { + "url": "wss://eth-rpc-karura.aca-api.network" + } ], "690": [ - "https://rpc.redstonechain.com", - "wss://rpc.redstonechain.com" + { + "url": "https://rpc.redstonechain.com" + }, + { + "url": "wss://rpc.redstonechain.com" + } ], "700": [ - "https://avastar.cc/ext/bc/C/rpc" + { + "url": "https://avastar.cc/ext/bc/C/rpc" + } ], "701": [ - "https://koi-rpc.darwinia.network" + { + "url": "https://koi-rpc.darwinia.network" + } ], "707": [ - "https://rpc-mainnet.bcsdev.io", - "wss://rpc-ws-mainnet.bcsdev.io" + { + "url": "https://rpc-mainnet.bcsdev.io" + }, + { + "url": "wss://rpc-ws-mainnet.bcsdev.io" + } ], "708": [ - "https://rpc-testnet.bcsdev.io", - "wss://rpc-ws-testnet.bcsdev.io" + { + "url": "https://rpc-testnet.bcsdev.io" + }, + { + "url": "wss://rpc-ws-testnet.bcsdev.io" + } ], "710": [ - "https://highbury.furya.io", - "https://rest.furya.io" + { + "url": "https://highbury.furya.io" + }, + { + "url": "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" + { + "url": "https://rpc-mainnet-5.vrcscan.com" + }, + { + "url": "https://rpc-mainnet-6.vrcscan.com" + }, + { + "url": "https://rpc-mainnet-7.vrcscan.com" + }, + { + "url": "https://rpc-mainnet-8.vrcscan.com" + } ], "719": [ - "https://puppynet.shibrpc.com" + { + "url": "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" + { + "url": "https://rpc.lycanchain.com" + }, + { + "url": "https://us-east.lycanchain.com" + }, + { + "url": "https://us-west.lycanchain.com" + }, + { + "url": "https://eu-north.lycanchain.com" + }, + { + "url": "https://eu-west.lycanchain.com" + }, + { + "url": "https://asia-southeast.lycanchain.com" + } ], "727": [ - "https://data.bluchain.pro" + { + "url": "https://data.bluchain.pro" + } ], "730": [ - "https://rpc.lovely.network" + { + "url": "https://rpc.lovely.network" + } ], "741": [ - "https://node-testnet.vention.network" + { + "url": "https://node-testnet.vention.network" + } ], "742": [ - "https://testeth-rpc-api.script.tv/rpc" + { + "url": "https://testeth-rpc-api.script.tv/rpc" + } ], "747": [ - "https://mainnet.evm.nodes.onflow.org" + { + "url": "https://mainnet.evm.nodes.onflow.org" + } ], "766": [ - "https://rpc.qom.one" + { + "url": "https://rpc.qom.one" + } ], "777": [ - "https://node.cheapeth.org/rpc" + { + "url": "https://node.cheapeth.org/rpc" + } ], "786": [ - "https://node1-mainnet.maalscan.io", - "https://node2-mainnet.maalscan.io", - "https://node3-mainnet.maalscan.io" + { + "url": "https://node1-mainnet.maalscan.io" + }, + { + "url": "https://node2-mainnet.maalscan.io" + }, + { + "url": "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" + { + "url": "https://eth-rpc-acala.aca-staging.network" + }, + { + "url": "https://rpc.evm.acala.network" + }, + { + "url": "https://eth-rpc-acala.aca-api.network" + }, + { + "url": "wss://eth-rpc-acala.aca-api.network" + } ], "788": [ - "https://testnet-rpc.aerochain.id" + { + "url": "https://testnet-rpc.aerochain.id" + } ], "789": [ - "https://rpc.patex.io" + { + "url": "https://rpc.patex.io" + } ], "799": [ - "https://rpc.testnet.rupaya.io" + { + "url": "https://rpc.testnet.rupaya.io" + } ], "800": [ - "https://rpc.lucidcoin.io" + { + "url": "https://rpc.lucidcoin.io" + } ], "803": [ - "https://orig.haichain.io" + { + "url": "https://orig.haichain.io" + } ], "808": [ - "https://subnets.avax.network/portal-fantasy/testnet/rpc" + { + "url": "https://subnets.avax.network/portal-fantasy/testnet/rpc" + } ], "810": [ - "https://testnet-rpc.haven1.org" + { + "url": "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" + { + "url": "https://mainnet.meerlabs.com" + }, + { + "url": "https://evm-dataseed1.meerscan.io" + }, + { + "url": "https://evm-dataseed2.meerscan.io" + }, + { + "url": "https://evm-dataseed3.meerscan.io" + }, + { + "url": "https://evm-dataseed.meerscan.com" + }, + { + "url": "https://qng.rpc.qitmeer.io" + }, + { + "url": "https://rpc.dimai.ai" + }, + { + "url": "https://rpc.woowow.io" + } ], "814": [ - "https://rpc-zkevm.thefirechain.com" + { + "url": "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" + { + "url": "https://dataseed1.beonechain.com" + }, + { + "url": "https://dataseed2.beonechain.com" + }, + { + "url": "https://dataseed-us1.beonechain.com" + }, + { + "url": "https://dataseed-us2.beonechain.com" + }, + { + "url": "https://dataseed-uk1.beonechain.com" + }, + { + "url": "https://dataseed-uk2.beonechain.com" + } ], "820": [ - "https://rpc.callisto.network", - "https://clo-geth.0xinfra.com" + { + "url": "https://rpc.callisto.network" + }, + { + "url": "https://clo-geth.0xinfra.com" + } ], "822": [ - "https://rpc-testnet.runic.build" + { + "url": "https://rpc-testnet.runic.build" + } ], "831": [ - "https://devnet.checkdot.io" + { + "url": "https://devnet.checkdot.io" + } ], "841": [ - "https://rpc.mainnet.taraxa.io" + { + "url": "https://rpc.mainnet.taraxa.io" + } ], "842": [ - "https://rpc.testnet.taraxa.io" + { + "url": "https://rpc.testnet.taraxa.io" + } ], "859": [ - "https://rpc.dev.zeeth.io" + { + "url": "https://rpc.dev.zeeth.io" + } ], "868": [ - "https://mainnet-data1.fantasiachain.com", - "https://mainnet-data2.fantasiachain.com", - "https://mainnet-data3.fantasiachain.com" + { + "url": "https://mainnet-data1.fantasiachain.com" + }, + { + "url": "https://mainnet-data2.fantasiachain.com" + }, + { + "url": "https://mainnet-data3.fantasiachain.com" + } ], "876": [ - "https://rpc.main.oasvrs.bnken.net" + { + "url": "https://rpc.main.oasvrs.bnken.net" + } ], "877": [ - "https://dxt.dexit.network" + { + "url": "https://dxt.dexit.network" + } ], "880": [ - "https://api.ambros.network" + { + "url": "https://api.ambros.network" + } ], "888": [ - "https://gwan-ssl.wandevs.org:56891", - "https://gwan2-ssl.wandevs.org" + { + "url": "https://gwan-ssl.wandevs.org:56891" + }, + { + "url": "https://gwan2-ssl.wandevs.org" + } ], "898": [ - "https://rpc-testnet.maxi.network" + { + "url": "https://rpc-testnet.maxi.network" + } ], "899": [ - "https://rpc.maxi.network" + { + "url": "https://rpc.maxi.network" + } ], "900": [ - "https://s0-testnet.garizon.net/rpc" + { + "url": "https://s0-testnet.garizon.net/rpc" + } ], "901": [ - "https://s1-testnet.garizon.net/rpc" + { + "url": "https://s1-testnet.garizon.net/rpc" + } ], "902": [ - "https://s2-testnet.garizon.net/rpc" + { + "url": "https://s2-testnet.garizon.net/rpc" + } ], "903": [ - "https://s3-testnet.garizon.net/rpc" + { + "url": "https://s3-testnet.garizon.net/rpc" + } ], "910": [ - "https://layer1test.decentrabone.com" + { + "url": "https://layer1test.decentrabone.com" + } ], "911": [ - "https://rpc.taprootchain.io" + { + "url": "https://rpc.taprootchain.io" + } ], "917": [ - "https://rinia-rpc1.thefirechain.com" + { + "url": "https://rinia-rpc1.thefirechain.com" + } ], "919": [ - "https://sepolia.mode.network" + { + "url": "https://sepolia.mode.network" + } ], "927": [ - "https://rpc.yidark.io" + { + "url": "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" + { + "url": "https://pulsetest-s.projectpi.xyz", + "tracking": "none", + "trackingDetails": "When you use Project Pi as an RPC provider we will not store your IP address or any data for more than 24 hours. IP addresses are not connected or correlated to wallet addresses" + }, + { + "url": "https://pulsechain-testnet-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://pulsechain-testnet-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://rpc.v4.testnet.pulsechain.com" + }, + { + "url": "wss://rpc.v4.testnet.pulsechain.com" + }, + { + "url": "https://rpc-testnet-pulsechain.g4mm4.io" + }, + { + "url": "wss://rpc-testnet-pulsechain.g4mm4.io" + } ], "957": [ - "https://rpc.lyra.finance" + { + "url": "https://rpc.lyra.finance" + } ], "963": [ - "https://rpc.bitcoincode.technology" + { + "url": "https://rpc.bitcoincode.technology" + } ], "969": [ - "https://rpc.ethxy.com" + { + "url": "https://rpc.ethxy.com" + } ], "970": [ - "https://mainnet-rpc.oortech.com" + { + "url": "https://mainnet-rpc.oortech.com" + } ], "972": [ - "https://ascraeus-rpc.oortech.com" + { + "url": "https://ascraeus-rpc.oortech.com" + } ], "977": [ - "https://api.nepalblockchain.dev", - "https://api.nepalblockchain.network" + { + "url": "https://api.nepalblockchain.dev" + }, + { + "url": "https://api.nepalblockchain.network" + } ], "979": [ - "https://rpc.testnet.ethxy.com" + { + "url": "https://rpc.testnet.ethxy.com" + } ], "980": [ - "https://ethapi.topnetwork.org" + { + "url": "https://ethapi.topnetwork.org" + } ], "985": [ - "https://chain.metamemo.one:8501", - "wss://chain.metamemo.one:16801" + { + "url": "https://chain.metamemo.one:8501" + }, + { + "url": "wss://chain.metamemo.one:16801" + } ], "990": [ - "https://rpc.eliberty.ngo" + { + "url": "https://rpc.eliberty.ngo" + } ], "997": [ - "https://rpc-testnet.5ire.network" + { + "url": "https://rpc-testnet.5ire.network" + } ], "998": [ - "https://rpc.luckynetwork.org", - "wss://ws.lnscan.org", - "https://rpc.lnscan.org" + { + "url": "https://rpc.luckynetwork.org" + }, + { + "url": "wss://ws.lnscan.org" + }, + { + "url": "https://rpc.lnscan.org" + } ], "999": [ - "https://gwan-ssl.wandevs.org:46891" + { + "url": "https://gwan-ssl.wandevs.org:46891" + } ], "1000": [ - "https://rpc.gton.network" + { + "url": "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" + { + "url": "https://public-en-baobab.klaytn.net" + }, + { + "url": "https://klaytn-baobab-rpc.allthatnode.com:8551", + "tracking": "yes", + "trackingDetails": "In addition to the Personal Information, the Billing Information, and the Geolocational Information..., we automatically collect certain information when you use the Platform or Website: IP addresses, browser type and language...; information about a mobile device, including universally unique ID (“UUID”), platform type and version (e.g., iOS or Android), carrier and country location, hardware and processor information, and network type; and activity and usage information occurring via the Platform or Website.https://www.allthatnode.com/privacypolicy.dsrv" + }, + { + "url": "https://rpc.ankr.com/klaytn_testnet", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://klaytn-baobab.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://klaytn.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://api.baobab.klaytn.net:8651" + } ], "1003": [ - "https://rpc.softnote.com" + { + "url": "https://rpc.softnote.com", + "tracking": "yes", + "trackingDetails": "CrispMind collects personal information and uses cookies for site operation, analysis, and enhancement, with no control over third-party cookies.https://softnote.com/privacy/" + } ], "1004": [ - "https://test.ekta.io:8545" + { + "url": "https://test.ekta.io:8545" + } ], "1007": [ - "https://rpc1.newchain.newtonproject.org" + { + "url": "https://rpc1.newchain.newtonproject.org" + } ], "1008": [ - "https://mainnet.eurus.network" + { + "url": "https://mainnet.eurus.network" + } ], "1009": [ - "https://rpcpriv.jumbochain.org" + { + "url": "https://rpcpriv.jumbochain.org" + } ], "1010": [ - "https://meta.evrice.com" + { + "url": "https://meta.evrice.com" + } ], "1011": [ - "https://apievm.rebuschain.com/rpc" + { + "url": "https://apievm.rebuschain.com/rpc" + } ], "1012": [ - "https://global.rpc.mainnet.newtonproject.org" + { + "url": "https://global.rpc.mainnet.newtonproject.org" + } ], "1024": [ - "https://api-para.clover.finance" + { + "url": "https://api-para.clover.finance" + } ], "1028": [ - "https://testrpc.bittorrentchain.io" + { + "url": "https://testrpc.bittorrentchain.io" + } ], "1030": [ - "https://evm.confluxrpc.com", - "https://conflux-espace-public.unifra.io" + { + "url": "https://evm.confluxrpc.com" + }, + { + "url": "https://conflux-espace-public.unifra.io" + } ], "1031": [ - "http://128.199.94.183:8041" + { + "url": "http://128.199.94.183:8041" + } ], "1038": [ - "https://evm-testnet.bronos.org" + { + "url": "https://evm-testnet.bronos.org" + } ], "1073": [ - "https://json-rpc.evm.testnet.shimmer.network" + { + "url": "https://json-rpc.evm.testnet.shimmer.network" + } ], "1075": [ - "https://json-rpc.evm.testnet.iotaledger.net" + { + "url": "https://json-rpc.evm.testnet.iotaledger.net" + } ], "1079": [ - "https://subnets.avax.network/mintara/testnet/rpc" + { + "url": "https://subnets.avax.network/mintara/testnet/rpc" + } ], "1080": [ - "https://subnets.avax.network/mintara/mainnet/rpc" + { + "url": "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" + { + "url": "https://andromeda.metis.io/?owner=1088" + }, + { + "url": "https://metis-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://metis.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://metis-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://metis.drpc.org" + }, + { + "url": "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" + { + "url": "https://humans-mainnet-evm.itrocket.net", + "tracking": "none", + "trackingDetails": "We do not track, store or process any personal data. You can check our privacy policy here: https://itrocket.net/privacy-policy/" + }, + { + "url": "https://jsonrpc.humans.nodestake.top" + }, + { + "url": "https://humans-evm-rpc.staketab.org:443" + }, + { + "url": "https://evm.humans.stakepool.dev.br" + }, + { + "url": "https://mainnet-humans-evm.konsortech.xyz" + }, + { + "url": "https://evm-rpc.mainnet.humans.zone" + }, + { + "url": "https://json-rpc.humans.bh.rocks" + }, + { + "url": "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" + { + "url": "https://jsonrpc.dymension.nodestake.org" + }, + { + "url": "https://evm-archive.dymd.bitszn.com" + }, + { + "url": "https://dymension.liquify.com/json-rpc" + }, + { + "url": "https://dymension-evm.kynraze.com" + }, + { + "url": "https://dymension-evm.blockpi.network/v1/rpc/public" + }, + { + "url": "https://dymension-evm-rpc.publicnode.com" + }, + { + "url": "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" + { + "url": "https://rpc.ankr.com/polygon_zkevm", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://rpc.polygon-zkevm.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://1rpc.io/polygon/zkevm", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://polygon-zkevm.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://polygon-zkevm-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://api.zan.top/node/v1/polygonzkevm/mainnet/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://polygon-zkevm.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://zkevm-rpc.com" + }, + { + "url": "wss://polygon-zkevm.drpc.org" + } ], "1107": [ - "https://testnetq1.blx.org" + { + "url": "https://testnetq1.blx.org" + } ], "1108": [ - "https://mainnet.blxq.org" + { + "url": "https://mainnet.blxq.org" + } ], "1111": [ - "https://api.wemix.com", - "wss://ws.wemix.com" + { + "url": "https://api.wemix.com" + }, + { + "url": "wss://ws.wemix.com" + } ], "1112": [ - "https://api.test.wemix.com", - "wss://ws.test.wemix.com" + { + "url": "https://api.test.wemix.com" + }, + { + "url": "wss://ws.test.wemix.com" + } ], "1113": [ - "https://testnet-hub-rpc.bsquared.network" + { + "url": "https://testnet-hub-rpc.bsquared.network" + } ], "1115": [ - "https://rpc.test.btcs.network" + { + "url": "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" + { + "url": "https://rpc.coredao.org" + }, + { + "url": "https://core.public.infstones.com" + }, + { + "url": "https://1rpc.io/core", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://rpc.ankr.com/core", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://rpc-core.icecreamswap.com" + }, + { + "url": "https://core.drpc.org" + }, + { + "url": "wss://core.drpc.org" + } ], "1117": [ - "https://mainnet-rpc.dogcoin.me" + { + "url": "https://mainnet-rpc.dogcoin.me" + } ], "1123": [ - "https://b2-testnet.alt.technology", - "https://rpc.ankr.com/b2_testnet", - "https://testnet-rpc.bsquared.network" + { + "url": "https://b2-testnet.alt.technology" + }, + { + "url": "https://rpc.ankr.com/b2_testnet" + }, + { + "url": "https://testnet-rpc.bsquared.network" + } ], "1130": [ - "https://dmc.mydefichain.com/mainnet", - "https://dmc01.mydefichain.com/mainnet" + { + "url": "https://dmc.mydefichain.com/mainnet" + }, + { + "url": "https://dmc01.mydefichain.com/mainnet" + } ], "1131": [ - "https://dmc.mydefichain.com/testnet", - "https://dmc01.mydefichain.com/testnet", - "https://eth.testnet.ocean.jellyfishsdk.com" + { + "url": "https://dmc.mydefichain.com/testnet" + }, + { + "url": "https://dmc01.mydefichain.com/testnet" + }, + { + "url": "https://eth.testnet.ocean.jellyfishsdk.com" + } ], "1133": [ - "https://dmc.mydefichain.com/changi", - "https://testnet-dmc.mydefichain.com:20551" + { + "url": "https://dmc.mydefichain.com/changi" + }, + { + "url": "https://testnet-dmc.mydefichain.com:20551" + } ], "1135": [ - "https://rpc.api.lisk.com" + { + "url": "https://rpc.api.lisk.com" + } ], "1138": [ - "https://testnet-rpc.amstarscan.com" + { + "url": "https://testnet-rpc.amstarscan.com" + } ], "1139": [ - "https://mathchain.maiziqianbao.net/rpc", - "https://mathchain-asia.maiziqianbao.net/rpc", - "https://mathchain-us.maiziqianbao.net/rpc" + { + "url": "https://mathchain.maiziqianbao.net/rpc" + }, + { + "url": "https://mathchain-asia.maiziqianbao.net/rpc" + }, + { + "url": "https://mathchain-us.maiziqianbao.net/rpc" + } ], "1140": [ - "https://galois-hk.maiziqianbao.net/rpc" + { + "url": "https://galois-hk.maiziqianbao.net/rpc" + } ], "1147": [ - "https://testnet-rpc.flagscan.xyz" + { + "url": "https://testnet-rpc.flagscan.xyz" + } ], "1149": [ - "https://plex-rpc.plexfinance.us" + { + "url": "https://plex-rpc.plexfinance.us" + } ], "1170": [ - "https://json-rpc.origin.uptick.network" + { + "url": "https://json-rpc.origin.uptick.network" + } ], "1177": [ - "https://s2.tl.web.tr:4041" + { + "url": "https://s2.tl.web.tr:4041" + } ], "1188": [ - "https://mainnet.mosscan.com" + { + "url": "https://mainnet.mosscan.com" + } ], "1197": [ - "https://dataseed.iorachain.com" + { + "url": "https://dataseed.iorachain.com" + } ], "1200": [ - "https://mainnet-rpc.cuckoo.network", - "wss://mainnet-rpc.cuckoo.network" + { + "url": "https://mainnet-rpc.cuckoo.network" + }, + { + "url": "wss://mainnet-rpc.cuckoo.network" + } ], "1201": [ - "https://seed5.evanesco.org:8547" + { + "url": "https://seed5.evanesco.org:8547" + } ], "1202": [ - "https://rpc.cadaut.com", - "wss://rpc.cadaut.com/ws" + { + "url": "https://rpc.cadaut.com" + }, + { + "url": "wss://rpc.cadaut.com/ws" + } ], "1209": [ - "https://rpc-nodes.saitascan.io" + { + "url": "https://rpc-nodes.saitascan.io" + } ], "1210": [ - "https://testnet-rpc.cuckoo.network", - "wss://testnet-rpc.cuckoo.network" + { + "url": "https://testnet-rpc.cuckoo.network" + }, + { + "url": "wss://testnet-rpc.cuckoo.network" + } ], "1213": [ - "https://dataseed.popcateum.org" + { + "url": "https://dataseed.popcateum.org" + } ], "1214": [ - "https://tapi.entercoin.net" + { + "url": "https://tapi.entercoin.net" + } ], "1221": [ - "https://rpc-testnet.cyclenetwork.io" + { + "url": "https://rpc-testnet.cyclenetwork.io" + } ], "1225": [ - "https://hybrid-testnet.rpc.caldera.xyz/http", - "wss://hybrid-testnet.rpc.caldera.xyz/ws" + { + "url": "https://hybrid-testnet.rpc.caldera.xyz/http" + }, + { + "url": "wss://hybrid-testnet.rpc.caldera.xyz/ws" + } ], "1229": [ - "https://mainnet.exzo.technology" + { + "url": "https://mainnet.exzo.technology" + } ], "1230": [ - "https://ultron-dev.io" + { + "url": "https://ultron-dev.io" + } ], "1231": [ - "https://ultron-rpc.net" + { + "url": "https://ultron-rpc.net" + } ], "1234": [ - "https://rpc.step.network" + { + "url": "https://rpc.step.network" + } ], "1235": [ - "https://rpc.itxchain.com" + { + "url": "https://rpc.itxchain.com" + } ], "1243": [ - "https://rpc-main-1.archiechain.io" + { + "url": "https://rpc-main-1.archiechain.io" + } ], "1244": [ - "https://rpc-test-1.archiechain.io" + { + "url": "https://rpc-test-1.archiechain.io" + } ], "1246": [ - "https://rpc-cnx.omplatform.com" + { + "url": "https://rpc-cnx.omplatform.com" + } ], "1248": [ - "https://rpc.dogether.dog" + { + "url": "https://rpc.dogether.dog" + } ], "1252": [ - "https://testapi.cicscan.com" + { + "url": "https://testapi.cicscan.com" + } ], "1280": [ - "https://nodes.halo.land" + { + "url": "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" + { + "url": "https://rpc.api.moonbeam.network" + }, + { + "url": "https://moonbeam.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://moonbeam.unitedbloc.com:3000", + "tracking": "yes", + "trackingDetails": "UnitedBloc does not collect or store any PII information. UnitedBloc does use IP addresses and transaction requests solely for service management purposes. Performance measurements such as rate limiting and routing rules require the analysis of IP addresses and response time measurements require the analysis of transaction requests. UnitedBloc does not and will never use RPC requests to front run transactions." + }, + { + "url": "wss://moonbeam.unitedbloc.com:3001", + "tracking": "yes", + "trackingDetails": "UnitedBloc does not collect or store any PII information. UnitedBloc does use IP addresses and transaction requests solely for service management purposes. Performance measurements such as rate limiting and routing rules require the analysis of IP addresses and response time measurements require the analysis of transaction requests. UnitedBloc does not and will never use RPC requests to front run transactions." + }, + { + "url": "https://moonbeam.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://rpc.ankr.com/moonbeam", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://1rpc.io/glmr", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://moonbeam-rpc.dwellir.com", + "tracking": "limited", + "trackingDetails": "Except for the data that is publicly accessible on the blockchain, Dwellir does not collect or keep any user information (like location, IP address, etc.) transmitted via our RPC. For more information about our privacy methods, we suggest checking out our Privacy Policy at https://www.dwellir.com/privacy-policy" + }, + { + "url": "wss://moonbeam-rpc.dwellir.com", + "tracking": "limited", + "trackingDetails": "Except for the data that is publicly accessible on the blockchain, Dwellir does not collect or keep any user information (like location, IP address, etc.) transmitted via our RPC. For more information about our privacy methods, we suggest checking out our Privacy Policy at https://www.dwellir.com/privacy-policy" + }, + { + "url": "https://endpoints.omniatech.io/v1/moonbeam/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://moonbeam-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://moonbeam-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://wss.api.moonbeam.network" + }, + { + "url": "wss://moonbeam.public.blastapi.io" + }, + { + "url": "https://moonbeam.unitedbloc.com" + }, + { + "url": "wss://moonbeam.unitedbloc.com" + }, + { + "url": "https://moonbeam.drpc.org" + }, + { + "url": "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" + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://moonriver.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://moonriver.unitedbloc.com:2000", + "tracking": "yes", + "trackingDetails": "UnitedBloc does not collect or store any PII information. UnitedBloc does use IP addresses and transaction requests solely for service management purposes. Performance measurements such as rate limiting and routing rules require the analysis of IP addresses and response time measurements require the analysis of transaction requests. UnitedBloc does not and will never use RPC requests to front run transactions." + }, + { + "url": "wss://moonriver.unitedbloc.com:2001", + "tracking": "yes", + "trackingDetails": "UnitedBloc does not collect or store any PII information. UnitedBloc does use IP addresses and transaction requests solely for service management purposes. Performance measurements such as rate limiting and routing rules require the analysis of IP addresses and response time measurements require the analysis of transaction requests. UnitedBloc does not and will never use RPC requests to front run transactions." + }, + { + "url": "https://moonriver.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://moonriver-rpc.dwellir.com", + "tracking": "limited", + "trackingDetails": "Except for the data that is publicly accessible on the blockchain, Dwellir does not collect or keep any user information (like location, IP address, etc.) transmitted via our RPC. For more information about our privacy methods, we suggest checking out our Privacy Policy at https://www.dwellir.com/privacy-policy" + }, + { + "url": "wss://moonriver-rpc.dwellir.com", + "tracking": "limited", + "trackingDetails": "Except for the data that is publicly accessible on the blockchain, Dwellir does not collect or keep any user information (like location, IP address, etc.) transmitted via our RPC. For more information about our privacy methods, we suggest checking out our Privacy Policy at https://www.dwellir.com/privacy-policy" + }, + { + "url": "https://moonriver-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://moonriver-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://rpc.api.moonriver.moonbeam.network" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network" + }, + { + "url": "wss://moonriver.public.blastapi.io" + }, + { + "url": "https://moonriver.unitedbloc.com" + }, + { + "url": "wss://moonriver.unitedbloc.com" + }, + { + "url": "https://moonriver.drpc.org" + }, + { + "url": "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" + { + "url": "https://rpc.testnet.moonbeam.network" + }, + { + "url": "https://moonbase.unitedbloc.com:1000", + "tracking": "yes", + "trackingDetails": "UnitedBloc does not collect or store any PII information. UnitedBloc does use IP addresses and transaction requests solely for service management purposes. Performance measurements such as rate limiting and routing rules require the analysis of IP addresses and response time measurements require the analysis of transaction requests. UnitedBloc does not and will never use RPC requests to front run transactions." + }, + { + "url": "wss://moonbase.unitedbloc.com:1001", + "tracking": "yes", + "trackingDetails": "UnitedBloc does not collect or store any PII information. UnitedBloc does use IP addresses and transaction requests solely for service management purposes. Performance measurements such as rate limiting and routing rules require the analysis of IP addresses and response time measurements require the analysis of transaction requests. UnitedBloc does not and will never use RPC requests to front run transactions." + }, + { + "url": "https://moonbase-alpha.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://moonbeam-alpha.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://rpc.api.moonbase.moonbeam.network" + }, + { + "url": "wss://wss.api.moonbase.moonbeam.network" + }, + { + "url": "wss://moonbase-alpha.public.blastapi.io" + }, + { + "url": "https://moonbase-rpc.dwellir.com" + }, + { + "url": "wss://moonbase-rpc.dwellir.com" + }, + { + "url": "https://moonbase.unitedbloc.com" + }, + { + "url": "wss://moonbase.unitedbloc.com" + }, + { + "url": "https://moonbase-alpha.drpc.org" + }, + { + "url": "wss://moonbase-alpha.drpc.org" + } ], "1288": [ - "https://rpc.api.moonrock.moonbeam.network", - "wss://wss.api.moonrock.moonbeam.network" + { + "url": "https://rpc.api.moonrock.moonbeam.network" + }, + { + "url": "wss://wss.api.moonrock.moonbeam.network" + } ], "1291": [ - "https://json-rpc.testnet.swisstronik.com" + { + "url": "https://json-rpc.testnet.swisstronik.com" + } ], "1311": [ - "https://test.doschain.com/jsonrpc" + { + "url": "https://test.doschain.com/jsonrpc" + } ], "1314": [ - "https://rpc.alyxchain.com" + { + "url": "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" + { + "url": "https://aia-dataseed1.aiachain.org" + }, + { + "url": "https://aia-dataseed2.aiachain.org" + }, + { + "url": "https://aia-dataseed3.aiachain.org" + }, + { + "url": "https://aia-dataseed4.aiachain.org" + } ], "1320": [ - "https://aia-dataseed1-testnet.aiachain.org" + { + "url": "https://aia-dataseed1-testnet.aiachain.org" + } ], "1328": [ - "https://evm-rpc-testnet.sei-apis.com", - "wss://evm-ws-testnet.sei-apis.com" + { + "url": "https://evm-rpc-testnet.sei-apis.com" + }, + { + "url": "wss://evm-ws-testnet.sei-apis.com" + } ], "1329": [ - "https://evm-rpc.sei-apis.com", - "wss://evm-ws.sei-apis.com" + { + "url": "https://evm-rpc.sei-apis.com" + }, + { + "url": "wss://evm-ws.sei-apis.com" + } ], "1337": [ - "http://127.0.0.1:8545" + { + "url": "http://127.0.0.1:8545" + } ], "1338": [ - "https://rpc.atlantischain.network", - "https://elysium-test-rpc.vulcanforged.com" + { + "url": "https://rpc.atlantischain.network" + }, + { + "url": "https://elysium-test-rpc.vulcanforged.com" + } ], "1339": [ - "https://rpc.elysiumchain.tech", - "https://rpc.elysiumchain.us" + { + "url": "https://rpc.elysiumchain.tech" + }, + { + "url": "https://rpc.elysiumchain.us" + } ], "1343": [ - "https://subnets.avax.network/blitz/testnet/rpc" + { + "url": "https://subnets.avax.network/blitz/testnet/rpc" + } ], "1353": [ - "https://xapi.cicscan.com" + { + "url": "https://xapi.cicscan.com" + } ], "1369": [ - "https://mainnet.zakumi.io" + { + "url": "https://mainnet.zakumi.io" + } ], "1370": [ - "https://blockchain.ramestta.com", - "https://blockchain2.ramestta.com" + { + "url": "https://blockchain.ramestta.com" + }, + { + "url": "https://blockchain2.ramestta.com" + } ], "1377": [ - "https://testnet.ramestta.com" + { + "url": "https://testnet.ramestta.com" + } ], "1379": [ - "https://rpc-api.kalarchain.tech" + { + "url": "https://rpc-api.kalarchain.tech" + } ], "1388": [ - "https://mainnet-rpc.amstarscan.com" + { + "url": "https://mainnet-rpc.amstarscan.com" + } ], "1392": [ - "https://rpc.modchain.net/blockchain.joseon.com/rpc" + { + "url": "https://rpc.modchain.net/blockchain.joseon.com/rpc" + } ], "1433": [ - "https://rpc.rikscan.com" + { + "url": "https://rpc.rikscan.com" + } ], "1440": [ - "https://beta.mainnet.livingassets.io/rpc", - "https://gamma.mainnet.livingassets.io/rpc" + { + "url": "https://beta.mainnet.livingassets.io/rpc", + "tracking": "limited", + "trackingDetails": "The Living Assets network does not store any personal data provided by its users. The network solely communicates on-chain signatures generated by web3 compatible wallets. However, it is possible that clients utilizing the network may necessitate supplementary information from their users to fulfill Know Your Customer obligations. In such cases, explicit consent from the users is mandatory, following standard procedures." + }, + { + "url": "https://gamma.mainnet.livingassets.io/rpc", + "tracking": "limited", + "trackingDetails": "The Living Assets network does not store any personal data provided by its users. The network solely communicates on-chain signatures generated by web3 compatible wallets. However, it is possible that clients utilizing the network may necessitate supplementary information from their users to fulfill Know Your Customer obligations. In such cases, explicit consent from the users is mandatory, following standard procedures." + } ], "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" + { + "url": "https://api.zan.top/node/v1/polygonzkevm/testnet/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://polygon-zkevm-testnet.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://rpc.public.zkevm-test.net" + }, + { + "url": "https://polygon-zkevm-testnet.drpc.org" + }, + { + "url": "wss://polygon-zkevm-testnet.drpc.org" + } ], "1452": [ - "https://rpc.giltestnet.com" + { + "url": "https://rpc.giltestnet.com" + } ], "1453": [ - "https://istanbul-rpc.metachain.dev" + { + "url": "https://istanbul-rpc.metachain.dev" + } ], "1455": [ - "https://mainnet-rpc.ctexscan.com" + { + "url": "https://mainnet-rpc.ctexscan.com" + } ], "1490": [ - "https://rpc.vitruveo.xyz" + { + "url": "https://rpc.vitruveo.xyz" + } ], "1499": [ - "https://rpc-testnet.idos.games" + { + "url": "https://rpc-testnet.idos.games" + } ], "1501": [ - "https://rpc-canary-1.bevm.io", - "https://rpc-canary-2.bevm.io" + { + "url": "https://rpc-canary-1.bevm.io" + }, + { + "url": "https://rpc-canary-2.bevm.io" + } ], "1506": [ - "https://mainnet.sherpax.io/rpc" + { + "url": "https://mainnet.sherpax.io/rpc" + } ], "1507": [ - "https://sherpax-testnet.chainx.org/rpc" + { + "url": "https://sherpax-testnet.chainx.org/rpc" + } ], "1515": [ - "https://beagle.chat/eth" + { + "url": "https://beagle.chat/eth" + } ], "1559": [ - "https://rpc.tenet.org", - "https://tenet-evm.publicnode.com", - "wss://tenet-evm.publicnode.com" + { + "url": "https://rpc.tenet.org" + }, + { + "url": "https://tenet-evm.publicnode.com" + }, + { + "url": "wss://tenet-evm.publicnode.com" + } ], "1617": [ - "https://rpc.etins.org" + { + "url": "https://rpc.etins.org" + } ], "1618": [ - "https://send.catechain.com" + { + "url": "https://send.catechain.com" + } ], "1620": [ - "https://rpc.atheios.org" + { + "url": "https://rpc.atheios.org" + } ], "1625": [ - "https://rpc.gravity.xyz" + { + "url": "https://rpc.gravity.xyz" + } ], "1657": [ - "https://dataseed1.btachain.com" + { + "url": "https://dataseed1.btachain.com" + } ], "1663": [ - "https://gobi-rpc.horizenlabs.io/ethv1", - "https://rpc.ankr.com/horizen_gobi_testnet" + { + "url": "https://gobi-rpc.horizenlabs.io/ethv1" + }, + { + "url": "https://rpc.ankr.com/horizen_gobi_testnet" + } ], "1686": [ - "https://testnet-rpc.mintchain.io" + { + "url": "https://testnet-rpc.mintchain.io" + } ], "1687": [ - "https://sepolia-testnet-rpc.mintchain.io" + { + "url": "https://sepolia-testnet-rpc.mintchain.io" + } ], "1688": [ - "https://rpc.ludan.org" + { + "url": "https://rpc.ludan.org" + } ], "1701": [ - "https://geth.anytype.io" + { + "url": "https://geth.anytype.io" + } ], "1707": [ - "https://rpc.blockchain.or.th" + { + "url": "https://rpc.blockchain.or.th" + } ], "1708": [ - "https://rpc.testnet.blockchain.or.th" + { + "url": "https://rpc.testnet.blockchain.or.th" + } ], "1717": [ - "https://mainnet.doric.network" + { + "url": "https://mainnet.doric.network" + } ], "1718": [ - "https://palette-rpc.com:22000" + { + "url": "https://palette-rpc.com:22000" + } ], "1729": [ - "https://rpc.reya.network", - "wss://ws.reya.network" + { + "url": "https://rpc.reya.network" + }, + { + "url": "wss://ws.reya.network" + } ], "1740": [ - "https://testnet.rpc.metall2.com" + { + "url": "https://testnet.rpc.metall2.com" + } ], "1750": [ - "https://rpc.metall2.com" + { + "url": "https://rpc.metall2.com" + } ], "1773": [ - "https://tea.mining4people.com/rpc", - "http://172.104.194.36:8545" + { + "url": "https://tea.mining4people.com/rpc" + }, + { + "url": "http://172.104.194.36:8545" + } ], "1777": [ - "https://rpc.gaussgang.com" + { + "url": "https://rpc.gaussgang.com" + } ], "1789": [ - "https://sepolia-rpc.zkbase.app" + { + "url": "https://sepolia-rpc.zkbase.app" + } ], "1804": [ - "https://cacib-saturn-test.francecentral.cloudapp.azure.com", - "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" + { + "url": "https://cacib-saturn-test.francecentral.cloudapp.azure.com" + }, + { + "url": "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" + } ], "1807": [ - "https://rabbit.analog-rpc.com" + { + "url": "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" + { + "url": "https://http-mainnet.cube.network" + }, + { + "url": "wss://ws-mainnet.cube.network" + }, + { + "url": "https://http-mainnet-sg.cube.network" + }, + { + "url": "wss://ws-mainnet-sg.cube.network" + }, + { + "url": "https://http-mainnet-us.cube.network" + }, + { + "url": "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" + { + "url": "https://http-testnet.cube.network" + }, + { + "url": "wss://ws-testnet.cube.network" + }, + { + "url": "https://http-testnet-sg.cube.network" + }, + { + "url": "wss://ws-testnet-sg.cube.network" + }, + { + "url": "https://http-testnet-jp.cube.network" + }, + { + "url": "wss://ws-testnet-jp.cube.network" + }, + { + "url": "https://http-testnet-us.cube.network" + }, + { + "url": "wss://ws-testnet-us.cube.network" + } ], "1821": [ - "https://mainnet-data.rubychain.io", - "https://mainnet.rubychain.io" + { + "url": "https://mainnet-data.rubychain.io" + }, + { + "url": "https://mainnet.rubychain.io" + } ], "1856": [ - "rpcWorking:false", - "https://tsfapi.europool.me" + { + "url": "rpcWorking:false" + }, + { + "url": "https://tsfapi.europool.me" + } ], "1875": [ - "https://rpc.whitechain.io" + { + "url": "https://rpc.whitechain.io" + } ], "1881": [ - "https://rpc.cartenz.works" + { + "url": "https://rpc.cartenz.works", + "tracking": "none", + "trackingDetails": "We do not collect any personal data from our users. Our platform is built on blockchain technology, which ensures that all transactions are recorded on a public ledger that is accessible to all users. However, this information is anonymous and cannot be linked to any specific individual. https://docs.gitshock.com/users-guide/privacy-policy" + } ], "1890": [ - "https://replicator.phoenix.lightlink.io/rpc/v1" + { + "url": "https://replicator.phoenix.lightlink.io/rpc/v1" + } ], "1891": [ - "https://replicator.pegasus.lightlink.io/rpc/v1" + { + "url": "https://replicator.pegasus.lightlink.io/rpc/v1" + } ], "1898": [ - "http://rpc.boyanet.org:8545", - "ws://rpc.boyanet.org:8546" + { + "url": "http://rpc.boyanet.org:8545" + }, + { + "url": "ws://rpc.boyanet.org:8546" + } ], "1904": [ - "https://rpc.sportschainnetwork.xyz" + { + "url": "https://rpc.sportschainnetwork.xyz" + } ], "1907": [ - "https://rpc.bitci.com" + { + "url": "https://rpc.bitci.com" + } ], "1908": [ - "https://testnet.bitcichain.com" + { + "url": "https://testnet.bitcichain.com" + } ], "1909": [ - "https://marklechain-rpc.merklescan.com" + { + "url": "https://marklechain-rpc.merklescan.com" + } ], "1911": [ - "https://rpc.scalind.com" + { + "url": "https://rpc.scalind.com" + } ], "1912": [ - "https://testnet-rchain.rubychain.io" + { + "url": "https://testnet-rchain.rubychain.io" + } ], "1918": [ - "https://testnet.crescdi.pub.ro" + { + "url": "https://testnet.crescdi.pub.ro" + } ], "1945": [ - "https://rpc-testnet.onuschain.io" + { + "url": "https://rpc-testnet.onuschain.io" + } ], "1951": [ - "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" + { + "url": "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" + } ], "1953": [ - "https://rpc0-testnet.selendra.org", - "https://rpc1-testnet.selendra.org" + { + "url": "https://rpc0-testnet.selendra.org" + }, + { + "url": "https://rpc1-testnet.selendra.org" + } ], "1954": [ - "https://rpc.dexilla.com" + { + "url": "https://rpc.dexilla.com" + } ], "1956": [ - "https://rpc-testnet.aiw3.io" + { + "url": "https://rpc-testnet.aiw3.io" + } ], "1961": [ - "https://rpc0.selendra.org", - "https://rpc1.selendra.org" + { + "url": "https://rpc0.selendra.org" + }, + { + "url": "https://rpc1.selendra.org" + } ], "1967": [ - "https://rpc.metatime.com/eleanor", - "wss://ws.metatime.com/eleanor" + { + "url": "https://rpc.metatime.com/eleanor" + }, + { + "url": "wss://ws.metatime.com/eleanor" + } ], "1969": [ - "https://testnetrpc.scschain.com" + { + "url": "https://testnetrpc.scschain.com" + } ], "1970": [ - "https://rpc.scschain.com" + { + "url": "https://rpc.scschain.com" + } ], "1971": [ - "https://1971.network/atlr", - "wss://1971.network/atlr" + { + "url": "https://1971.network/atlr" + }, + { + "url": "wss://1971.network/atlr" + } ], "1972": [ - "https://rpc2.redecoin.eu" + { + "url": "https://rpc2.redecoin.eu" + } ], "1975": [ - "https://rpc.onuschain.io", - "wss://ws.onuschain.io" + { + "url": "https://rpc.onuschain.io" + }, + { + "url": "wss://ws.onuschain.io" + } ], "1984": [ - "https://testnet.eurus.network" + { + "url": "https://testnet.eurus.network" + } ], "1985": [ - "http://rpc.satosh.ie" + { + "url": "http://rpc.satosh.ie" + } ], "1986": [ - "http://testnet.satosh.ie" + { + "url": "http://testnet.satosh.ie" + } ], "1987": [ - "https://jsonrpc.egem.io/custom" + { + "url": "https://jsonrpc.egem.io/custom" + } ], "1992": [ - "https://rpc.hubble.exchange", - "wss://ws-rpc.hubble.exchange" + { + "url": "https://rpc.hubble.exchange" + }, + { + "url": "wss://ws-rpc.hubble.exchange" + } ], "1994": [ - "https://main.ekta.io" + { + "url": "https://main.ekta.io" + } ], "1995": [ - "https://testnet.edexa.network/rpc", - "https://io-dataseed1.testnet.edexa.io-market.com/rpc" + { + "url": "https://testnet.edexa.network/rpc" + }, + { + "url": "https://io-dataseed1.testnet.edexa.io-market.com/rpc" + } ], "1996": [ - "https://mainnet.sanko.xyz" + { + "url": "https://mainnet.sanko.xyz" + } ], "1997": [ - "https://rpc.kyotochain.io" + { + "url": "https://rpc.kyotochain.io" + } ], "1998": [ - "https://rpc.testnet.kyotoprotocol.io:8545" + { + "url": "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" + { + "url": "https://rpc.dogechain.dog" + }, + { + "url": "https://rpc-us.dogechain.dog" + }, + { + "url": "https://rpc-sg.dogechain.dog" + }, + { + "url": "https://rpc.dogechain.dog" + }, + { + "url": "https://rpc01-sg.dogechain.dog" + }, + { + "url": "https://rpc02-sg.dogechain.dog" + }, + { + "url": "https://rpc03-sg.dogechain.dog" + }, + { + "url": "https://dogechain.ankr.com", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://dogechain-sj.ankr.com", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://rpc.ankr.com/dogechain" + } ], "2001": [ - "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", - "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" + { + "url": "https://rpc-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "url": "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" + { + "url": "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "url": "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" + } ], "2004": [ - "http://77.237.237.69:9933" + { + "url": "http://77.237.237.69:9933" + } ], "2013": [ - "https://polytopia.org:8545" + { + "url": "https://polytopia.org:8545" + } ], "2014": [ - "https://rpc.nowscan.io" + { + "url": "https://rpc.nowscan.io" + } ], "2016": [ - "https://eu-rpc.mainnetz.io", - "https://mainnet-rpc.mainnetz.io" + { + "url": "https://eu-rpc.mainnetz.io" + }, + { + "url": "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" + { + "url": "https://rpc.telcoin.network" + }, + { + "url": "https://adiri.tel" + }, + { + "url": "https://node1.telcoin.network" + }, + { + "url": "https://node2.telcoin.network" + }, + { + "url": "https://node3.telcoin.network" + }, + { + "url": "https://node4.telcoin.network" + } ], "2018": [ - "https://rpc.dev.publicmint.io:8545" + { + "url": "https://rpc.dev.publicmint.io:8545" + } ], "2019": [ - "https://rpc.tst.publicmint.io:8545" + { + "url": "https://rpc.tst.publicmint.io:8545" + } ], "2020": [ - "https://rpc.publicmint.io:8545" + { + "url": "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" + { + "url": "https://mainnet2.edgewa.re/evm" + }, + { + "url": "https://mainnet3.edgewa.re/evm" + }, + { + "url": "https://edgeware-evm.jelliedowl.net" + }, + { + "url": "https://edgeware.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://edgeware-evm0.jelliedowl.net" + }, + { + "url": "https://edgeware-evm1.jelliedowl.net" + }, + { + "url": "https://edgeware-evm2.jelliedowl.net" + }, + { + "url": "https://edgeware-evm3.jelliedowl.net" + }, + { + "url": "wss://edgeware.jelliedowl.net" + }, + { + "url": "wss://edgeware-rpc0.jelliedowl.net" + }, + { + "url": "wss://edgeware-rpc1.jelliedowl.net" + }, + { + "url": "wss://edgeware-rpc2.jelliedowl.net" + }, + { + "url": "wss://edgeware-rpc3.jelliedowl.net" + } ], "2022": [ - "https://beresheet-evm.jelliedowl.net", - "wss://beresheet.jelliedowl.net" + { + "url": "https://beresheet-evm.jelliedowl.net" + }, + { + "url": "wss://beresheet.jelliedowl.net" + } ], "2023": [ - "https://test-taycan.hupayx.io" + { + "url": "https://test-taycan.hupayx.io" + } ], "2024": [ - "https://saturn-rpc.swanchain.io" + { + "url": "https://saturn-rpc.swanchain.io" + } ], "2025": [ - "https://mainnet.rangersprotocol.com/api/jsonrpc" + { + "url": "https://mainnet.rangersprotocol.com/api/jsonrpc" + } ], "2026": [ - "https://rpc.edgeless.network/http" + { + "url": "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" + { + "url": "https://fullnode.centrifuge.io" + }, + { + "url": "wss://fullnode.centrifuge.io" + }, + { + "url": "https://centrifuge-parachain.api.onfinality.io/public" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws" + }, + { + "url": "https://centrifuge-rpc.dwellir.com" + }, + { + "url": "wss://centrifuge-rpc.dwellir.com" + }, + { + "url": "https://rpc-centrifuge.luckyfriday.io" + }, + { + "url": "wss://rpc-centrifuge.luckyfriday.io" + } ], "2032": [ - "wss://fullnode.catalyst.cntrfg.com" + { + "url": "wss://fullnode.catalyst.cntrfg.com" + } ], "2037": [ - "https://subnets.avax.network/kiwi/testnet/rpc" + { + "url": "https://subnets.avax.network/kiwi/testnet/rpc" + } ], "2038": [ - "https://subnets.avax.network/shrapnel/testnet/rpc" + { + "url": "https://subnets.avax.network/shrapnel/testnet/rpc" + } ], "2039": [ - "https://rpc.alephzero-testnet.gelato.digital", - "wss://rpc.alephzero-testnet.gelato.digital" + { + "url": "https://rpc.alephzero-testnet.gelato.digital" + }, + { + "url": "wss://rpc.alephzero-testnet.gelato.digital" + } ], "2040": [ - "https://rpc.vanarchain.com", - "wss://ws.vanarchain.com" + { + "url": "https://rpc.vanarchain.com" + }, + { + "url": "wss://ws.vanarchain.com" + } ], "2043": [ - "https://astrosat.origintrail.network", - "wss://parachain-rpc.origin-trail.network" + { + "url": "https://astrosat.origintrail.network" + }, + { + "url": "wss://parachain-rpc.origin-trail.network" + } ], "2044": [ - "https://subnets.avax.network/shrapnel/mainnet/rpc" + { + "url": "https://subnets.avax.network/shrapnel/mainnet/rpc" + } ], "2047": [ - "https://web3-rpc-mesos.thestratos.org" + { + "url": "https://web3-rpc-mesos.thestratos.org" + } ], "2048": [ - "https://web3-rpc.thestratos.org" + { + "url": "https://web3-rpc.thestratos.org" + } ], "2049": [ - "https://msc-rpc.movoscan.com", - "https://msc-rpc.movochain.org", - "https://msc-rpc.movoswap.com" + { + "url": "https://msc-rpc.movoscan.com" + }, + { + "url": "https://msc-rpc.movochain.org" + }, + { + "url": "https://msc-rpc.movoswap.com" + } ], "2077": [ - "http://rpc.qkacoin.org:8548", - "https://rpc.qkacoin.org" + { + "url": "http://rpc.qkacoin.org:8548" + }, + { + "url": "https://rpc.qkacoin.org" + } ], "2088": [ - "wss://fullnode.altair.centrifuge.io", - "wss://altair.api.onfinality.io/public-ws" + { + "url": "wss://fullnode.altair.centrifuge.io" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws" + } ], "2100": [ - "https://api.ecoball.org/ecoball" + { + "url": "https://api.ecoball.org/ecoball" + } ], "2101": [ - "https://api.ecoball.org/espuma" + { + "url": "https://api.ecoball.org/espuma" + } ], "2109": [ - "https://rpc.exosama.com", - "wss://rpc.exosama.com" + { + "url": "https://rpc.exosama.com" + }, + { + "url": "wss://rpc.exosama.com" + } ], "2112": [ - "https://rpc.uchain.link" + { + "url": "https://rpc.uchain.link" + } ], "2121": [ - "https://rpc1.catenarpc.com" + { + "url": "https://rpc1.catenarpc.com" + } ], "2122": [ - "https://rpc.metaplayer.one" + { + "url": "https://rpc.metaplayer.one" + } ], "2124": [ - "https://rpc-dubai.mp1network.com" + { + "url": "https://rpc-dubai.mp1network.com" + } ], "2136": [ - "https://test-market.bigsb.network", - "wss://test-market.bigsb.network" + { + "url": "https://test-market.bigsb.network" + }, + { + "url": "wss://test-market.bigsb.network" + } ], "2137": [ - "https://market.bigsb.io", - "wss://market.bigsb.io" + { + "url": "https://market.bigsb.io" + }, + { + "url": "wss://market.bigsb.io" + } ], "2138": [ - "https://rpc.public-2138.defi-oracle.io", - "wss://rpc.public-2138.defi-oracle.io" + { + "url": "https://rpc.public-2138.defi-oracle.io" + }, + { + "url": "wss://rpc.public-2138.defi-oracle.io" + } ], "2140": [ - "https://rpc.onenesslabs.io" + { + "url": "https://rpc.onenesslabs.io" + } ], "2141": [ - "https://rpc.testnet.onenesslabs.io" + { + "url": "https://rpc.testnet.onenesslabs.io" + } ], "2151": [ - "https://mainnet.bosagora.org", - "https://rpc.bosagora.org" + { + "url": "https://mainnet.bosagora.org" + }, + { + "url": "https://rpc.bosagora.org" + } ], "2152": [ - "https://rpc-mainnet.findora.org" + { + "url": "https://rpc-mainnet.findora.org" + } ], "2153": [ - "https://prod-testnet.prod.findora.org:8545" + { + "url": "https://prod-testnet.prod.findora.org:8545" + } ], "2154": [ - "https://prod-forge.prod.findora.org:8545" + { + "url": "https://prod-forge.prod.findora.org:8545" + } ], "2199": [ - "https://rpc.moonsama.com", - "wss://rpc.moonsama.com/ws" + { + "url": "https://rpc.moonsama.com" + }, + { + "url": "wss://rpc.moonsama.com/ws" + } ], "2202": [ - "https://rpc.antofy.io" + { + "url": "https://rpc.antofy.io" + } ], "2203": [ - "https://connect.bitcoinevm.com" + { + "url": "https://connect.bitcoinevm.com" + } ], "2213": [ - "https://seed4.evanesco.org:8546" + { + "url": "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" + { + "url": "https://evm.testnet.kava.io" + }, + { + "url": "https://kava-evm-testnet.rpc.thirdweb.com" + }, + { + "url": "wss://wevm.testnet.kava.io" + }, + { + "url": "https://kava-testnet.drpc.org" + }, + { + "url": "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" + { + "url": "https://evm.kava.io" + }, + { + "url": "https://kava.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://kava-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://kava-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "wss://kava-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://evm.kava.chainstacklabs.com", + "tracking": "yes", + "trackingDetails": "We process certain personal data to provide you with the core functionality of our Services. Specifically, when you are: Using the Chainstack Console, we process your name, surname, email address (your account identifier), organization name, IP address, all HTTP headers (most importantly User-Agent), cookies; Using the Chainstack Blockchain infrastructure, we process nodes' token stored in Chainstack Vault, IP address and HTTP headers, request body, API token in Chainstack Vault.https://chainstack.com/privacy/" + }, + { + "url": "wss://wevm.kava.chainstacklabs.com", + "tracking": "yes", + "trackingDetails": "We process certain personal data to provide you with the core functionality of our Services. Specifically, when you are: Using the Chainstack Console, we process your name, surname, email address (your account identifier), organization name, IP address, all HTTP headers (most importantly User-Agent), cookies; Using the Chainstack Blockchain infrastructure, we process nodes' token stored in Chainstack Vault, IP address and HTTP headers, request body, API token in Chainstack Vault.https://chainstack.com/privacy/" + }, + { + "url": "https://rpc.ankr.com/kava_evm", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://evm.kava-rpc.com", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://kava-rpc.gateway.pokt.network" + }, + { + "url": "https://kava-evm.rpc.thirdweb.com" + }, + { + "url": "wss://wevm.kava.io" + }, + { + "url": "wss://wevm.kava-rpc.com" + }, + { + "url": "https://kava.drpc.org" + }, + { + "url": "wss://kava.drpc.org" + } ], "2223": [ - "https://bc.vcex.xyz" + { + "url": "https://bc.vcex.xyz" + } ], "2241": [ - "https://erpc-krest.peaq.network", - "https://krest.unitedbloc.com" + { + "url": "https://erpc-krest.peaq.network" + }, + { + "url": "https://krest.unitedbloc.com" + } ], "2300": [ - "https://rpc.bombchain.com" + { + "url": "https://rpc.bombchain.com" + } ], "2306": [ - "https://greendinoswap.com" + { + "url": "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" + { + "url": "https://data-testnet-v1.somanetwork.io", + "tracking": "yes", + "trackingDetails": "At SomaNetwork Mainnet Or Testnet, we are committed to protecting your privacy and ensuring the security of your data. This privacy policy summary outlines how we handle and protect your personal information when using our SomaNetwork Mainnet and Testnet services. Please note that this is a summary, and the full privacy policy should be reviewed for complete details soma. 1.We will collect your mobile device information, operation records, transaction records, wallet address and other personal information. https://soma-network.gitbook.io/soma-network/privacy-policy" + }, + { + "url": "https://block-testnet-v1.somanetwork.io", + "tracking": "yes", + "trackingDetails": "At SomaNetwork Mainnet Or Testnet, we are committed to protecting your privacy and ensuring the security of your data. This privacy policy summary outlines how we handle and protect your personal information when using our SomaNetwork Mainnet and Testnet services. Please note that this is a summary, and the full privacy policy should be reviewed for complete details soma. 1.We will collect your mobile device information, operation records, transaction records, wallet address and other personal information. https://soma-network.gitbook.io/soma-network/privacy-policy" + }, + { + "url": "https://testnet-au-server-2.somanetwork.io" + }, + { + "url": "https://testnet-au-server-1.somanetwork.io" + }, + { + "url": "https://testnet-sg-server-1.somanetwork.io" + }, + { + "url": "https://testnet-sg-server-2.somanetwork.io" + } ], "2330": [ - "https://rpc0.altcoinchain.org/rpc" + { + "url": "https://rpc0.altcoinchain.org/rpc" + } ], "2331": [ - "https://rpc.testnet.rss3.io" + { + "url": "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" + { + "url": "https://data-mainnet-v1.somanetwork.io", + "tracking": "yes", + "trackingDetails": "At SomaNetwork Mainnet Or Testnet, we are committed to protecting your privacy and ensuring the security of your data. This privacy policy summary outlines how we handle and protect your personal information when using our SomaNetwork Mainnet and Testnet services. Please note that this is a summary, and the full privacy policy should be reviewed for complete details soma. 1.We will collect your mobile device information, operation records, transaction records, wallet address and other personal information. https://soma-network.gitbook.io/soma-network/privacy-policy" + }, + { + "url": "https://block-mainnet-v1.somanetwork.io", + "tracking": "yes", + "trackingDetails": "At SomaNetwork Mainnet Or Testnet, we are committed to protecting your privacy and ensuring the security of your data. This privacy policy summary outlines how we handle and protect your personal information when using our SomaNetwork Mainnet and Testnet services. Please note that this is a summary, and the full privacy policy should be reviewed for complete details soma. 1.We will collect your mobile device information, operation records, transaction records, wallet address and other personal information. https://soma-network.gitbook.io/soma-network/privacy-policy" + }, + { + "url": "https://id-mainnet.somanetwork.io" + }, + { + "url": "https://hk-mainnet.somanetwork.io" + }, + { + "url": "https://sg-mainnet.somanetwork.io" + } ], "2340": [ - "wss://testnet-rpc.atleta.network:9944", - "https://testnet-rpc.atleta.network:9944", - "https://testnet-rpc.atleta.network" + { + "url": "wss://testnet-rpc.atleta.network:9944" + }, + { + "url": "https://testnet-rpc.atleta.network:9944" + }, + { + "url": "https://testnet-rpc.atleta.network" + } ], "2342": [ - "https://rpc.omniaverse.io" + { + "url": "https://rpc.omniaverse.io" + } ], "2358": [ - "https://api.sepolia.kroma.network" + { + "url": "https://api.sepolia.kroma.network" + } ], "2370": [ - "https://evm-testnet.nexis.network" + { + "url": "https://evm-testnet.nexis.network" + } ], "2399": [ - "https://bombchain-testnet.ankr.com/bas_full_rpc_1" + { + "url": "https://bombchain-testnet.ankr.com/bas_full_rpc_1" + } ], "2400": [ - "https://rpc.tcgverse.xyz" + { + "url": "https://rpc.tcgverse.xyz" + } ], "2410": [ - "https://rpc.karak.network" + { + "url": "https://rpc.karak.network" + } ], "2415": [ - "https://mainnet.xo-dex.com/rpc", - "https://xo-dex.io" + { + "url": "https://mainnet.xo-dex.com/rpc" + }, + { + "url": "https://xo-dex.io" + } ], "2425": [ - "https://rpc-devnet.kinggamer.org" + { + "url": "https://rpc-devnet.kinggamer.org" + } ], "2442": [ - "https://rpc.cardona.zkevm-rpc.com" + { + "url": "https://rpc.cardona.zkevm-rpc.com" + } ], "2458": [ - "https://rpc-testnet.hybridchain.ai" + { + "url": "https://rpc-testnet.hybridchain.ai", + "tracking": "yes", + "trackingDetails": "HybridChain may automatically collect information regarding your computer hardware and software. This data can encompass details like your IP address, browser type, domain names, access times, and referring website addresses. This collection is in line with HybridChain's privacy policy and aims to optimize service provision and enhance user experience.https://docs.hybridchain.ai/privacy-policy" + } ], "2468": [ - "https://coredata-mainnet.hybridchain.ai", - "https://rpc-mainnet.hybridchain.ai" + { + "url": "https://coredata-mainnet.hybridchain.ai", + "tracking": "yes", + "trackingDetails": "HybridChain may automatically collect information regarding your computer hardware and software. This data can encompass details like your IP address, browser type, domain names, access times, and referring website addresses. This collection is in line with HybridChain's privacy policy and aims to optimize service provision and enhance user experience.https://docs.hybridchain.ai/privacy-policy" + }, + { + "url": "https://rpc-mainnet.hybridchain.ai", + "tracking": "yes", + "trackingDetails": "HybridChain may automatically collect information regarding your computer hardware and software. This data can encompass details like your IP address, browser type, domain names, access times, and referring website addresses. This collection is in line with HybridChain's privacy policy and aims to optimize service provision and enhance user experience.https://docs.hybridchain.ai/privacy-policy" + } ], "2484": [ - "https://rpc-nebulas-testnet.uniultra.xyz" + { + "url": "https://rpc-nebulas-testnet.uniultra.xyz" + } ], "2522": [ - "https://rpc.testnet.frax.com" + { + "url": "https://rpc.testnet.frax.com" + } ], "2525": [ - "https://mainnet.rpc.inevm.com/http" + { + "url": "https://mainnet.rpc.inevm.com/http" + } ], "2559": [ - "https://www.kortho-chain.com" + { + "url": "https://www.kortho-chain.com" + } ], "2569": [ - "https://api.techpay.io" + { + "url": "https://api.techpay.io" + } ], "2606": [ - "https://pocrnet.westeurope.cloudapp.azure.com/http", - "wss://pocrnet.westeurope.cloudapp.azure.com/ws" + { + "url": "https://pocrnet.westeurope.cloudapp.azure.com/http" + }, + { + "url": "wss://pocrnet.westeurope.cloudapp.azure.com/ws" + } ], "2611": [ - "https://dataseed2.redlightscan.finance" + { + "url": "https://dataseed2.redlightscan.finance" + } ], "2612": [ - "https://api.ezchain.com/ext/bc/C/rpc" + { + "url": "https://api.ezchain.com/ext/bc/C/rpc" + } ], "2613": [ - "https://testnet-api.ezchain.com/ext/bc/C/rpc" + { + "url": "https://testnet-api.ezchain.com/ext/bc/C/rpc" + } ], "2625": [ - "https://rpc-testnet.whitechain.io" + { + "url": "https://rpc-testnet.whitechain.io" + } ], "2648": [ - "https://testnet-rpc.ailayer.xyz", - "wss://testnet-rpc.ailayer.xyz" + { + "url": "https://testnet-rpc.ailayer.xyz" + }, + { + "url": "wss://testnet-rpc.ailayer.xyz" + } ], "2649": [ - "https://mainnet-rpc.ailayer.xyz", - "wss://mainnet-rpc.ailayer.xyz" + { + "url": "https://mainnet-rpc.ailayer.xyz" + }, + { + "url": "wss://mainnet-rpc.ailayer.xyz" + } ], "2710": [ - "https://rpc-testnet.morphl2.io" + { + "url": "https://rpc-testnet.morphl2.io" + } ], "2718": [ - "https://rpc.klaos.laosfoundation.io", - "wss://rpc.klaos.laosfoundation.io" + { + "url": "https://rpc.klaos.laosfoundation.io" + }, + { + "url": "wss://rpc.klaos.laosfoundation.io" + } ], "2730": [ - "https://xr-sepolia-testnet.rpc.caldera.xyz/http" + { + "url": "https://xr-sepolia-testnet.rpc.caldera.xyz/http" + } ], "2731": [ - "https://testnet-rpc.timenetwork.io" + { + "url": "https://testnet-rpc.timenetwork.io" + } ], "2748": [ - "https://rpc.nanon.network" + { + "url": "https://rpc.nanon.network" + } ], "2777": [ - "https://rpc.gmnetwork.ai" + { + "url": "https://rpc.gmnetwork.ai" + } ], "2810": [ - "https://rpc-quicknode-holesky.morphl2.io", - "wss://rpc-quicknode-holesky.morphl2.io", - "https://rpc-holesky.morphl2.io" + { + "url": "https://rpc-quicknode-holesky.morphl2.io" + }, + { + "url": "wss://rpc-quicknode-holesky.morphl2.io" + }, + { + "url": "https://rpc-holesky.morphl2.io" + } ], "2907": [ - "https://rpc.eluxscan.com" + { + "url": "https://rpc.eluxscan.com" + } ], "2911": [ - "https://rpc.hychain.com/http" + { + "url": "https://rpc.hychain.com/http" + } ], "2941": [ - "https://testnet-chain.xenonchain.com", - "https://testnet-dev.xenonchain.com" + { + "url": "https://testnet-chain.xenonchain.com" + }, + { + "url": "https://testnet-dev.xenonchain.com" + } ], "2999": [ - "https://mainnet.bityuan.com/eth" + { + "url": "https://mainnet.bityuan.com/eth" + } ], "3001": [ - "https://nikau.centrality.me/public" + { + "url": "https://nikau.centrality.me/public" + } ], "3003": [ - "https://rpc.canxium.org" + { + "url": "https://rpc.canxium.org" + } ], "3011": [ - "https://api.mainnet.playa3ull.games" + { + "url": "https://api.mainnet.playa3ull.games" + } ], "3031": [ - "https://rpc-testnet.orlchain.com" + { + "url": "https://rpc-testnet.orlchain.com" + } ], "3033": [ - "https://testnet.rebus.money/rpc" + { + "url": "https://testnet.rebus.money/rpc" + } ], "3068": [ - "https://public-01.mainnet.bifrostnetwork.com/rpc", - "https://public-02.mainnet.bifrostnetwork.com/rpc" + { + "url": "https://public-01.mainnet.bifrostnetwork.com/rpc" + }, + { + "url": "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" + { + "url": "https://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network" + }, + { + "url": "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" + { + "url": "https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network" + }, + { + "url": "wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network" + } ], "3109": [ - "https://alpha-rpc-node-http.svmscan.io" + { + "url": "https://alpha-rpc-node-http.svmscan.io" + } ], "3110": [ - "https://test-rpc-node-http.svmscan.io" + { + "url": "https://test-rpc-node-http.svmscan.io" + } ], "3269": [ - "https://rpcmain.arabianchain.org" + { + "url": "https://rpcmain.arabianchain.org" + } ], "3270": [ - "https://rpctestnet.arabianchain.org" + { + "url": "https://rpctestnet.arabianchain.org" + } ], "3306": [ - "https://dev-rpc.debounce.network" + { + "url": "https://dev-rpc.debounce.network" + } ], "3331": [ - "https://rpc-testnet.zcore.cash" + { + "url": "https://rpc-testnet.zcore.cash" + } ], "3333": [ - "http://testnet.ethstorage.io:9540" + { + "url": "http://testnet.ethstorage.io:9540" + } ], "3334": [ - "https://galileo.web3q.io:8545" + { + "url": "https://galileo.web3q.io:8545" + } ], "3335": [ - "http://mainnet.ethstorage.io:9540" + { + "url": "http://mainnet.ethstorage.io:9540" + } ], "3400": [ - "https://rpc.paribu.network" + { + "url": "https://rpc.paribu.network" + } ], "3424": [ - "https://rpc.evolveblockchain.io" + { + "url": "https://rpc.evolveblockchain.io" + } ], "3434": [ - "https://testnet-rpc.securechain.ai" + { + "url": "https://testnet-rpc.securechain.ai" + } ], "3456": [ - "https://testnet-rpc.layeredge.io" + { + "url": "https://testnet-rpc.layeredge.io" + } ], "3490": [ - "https://gtc-dataseed.gtcscan.io" + { + "url": "https://gtc-dataseed.gtcscan.io" + } ], "3500": [ - "https://rpc.testnet.paribuscan.com" + { + "url": "https://rpc.testnet.paribuscan.com" + } ], "3501": [ - "https://rpc.jfinchain.com", - "https://rpc.jfinchain.com" + { + "url": "https://rpc.jfinchain.com" + }, + { + "url": "https://rpc.jfinchain.com", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + } ], "3601": [ - "https://eth-rpc-api.pandoproject.org/rpc" + { + "url": "https://eth-rpc-api.pandoproject.org/rpc" + } ], "3602": [ - "https://testnet.ethrpc.pandoproject.org/rpc" + { + "url": "https://testnet.ethrpc.pandoproject.org/rpc" + } ], "3630": [ - "https://mainnet-rpc.tycoscan.com" + { + "url": "https://mainnet-rpc.tycoscan.com" + } ], "3636": [ - "https://node.botanixlabs.dev" + { + "url": "https://node.botanixlabs.dev" + } ], "3637": [ - "https://rpc.btxtestchain.com" + { + "url": "https://rpc.btxtestchain.com" + } ], "3639": [ - "https://rpc.ichainscan.com" + { + "url": "https://rpc.ichainscan.com" + } ], "3645": [ - "https://istanbul.ichainscan.com" + { + "url": "https://istanbul.ichainscan.com" + } ], "3666": [ - "https://rpc.jnsdao.com:8503" + { + "url": "https://rpc.jnsdao.com:8503" + } ], "3690": [ - "https://rpc1.bittexscan.info", - "https://rpc2.bittexscan.info" + { + "url": "https://rpc1.bittexscan.info" + }, + { + "url": "https://rpc2.bittexscan.info" + } ], "3693": [ - "https://rpc.empirenetwork.io" + { + "url": "https://rpc.empirenetwork.io" + } ], "3698": [ - "https://testnet-rpc.senjepowersscan.com" + { + "url": "https://testnet-rpc.senjepowersscan.com" + } ], "3699": [ - "https://rpc.senjepowersscan.com" + { + "url": "https://rpc.senjepowersscan.com" + } ], "3737": [ - "https://rpc.crossbell.io" + { + "url": "https://rpc.crossbell.io" + } ], "3776": [ - "https://rpc.startale.com/astar-zkevm" + { + "url": "https://rpc.startale.com/astar-zkevm" + } ], "3797": [ - "https://elves-core1.alvey.io", - "https://elves-core2.alvey.io", - "https://elves-core3.alvey.io" + { + "url": "https://elves-core1.alvey.io" + }, + { + "url": "https://elves-core2.alvey.io" + }, + { + "url": "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" + { + "url": "https://testnet-rpc.tangle.tools" + }, + { + "url": "https://testnet-rpc-archive.tangle.tools" + }, + { + "url": "wss://testnet-rpc.tangle.tools" + }, + { + "url": "wss://testnet-rpc-archive.tangle.tools" + } ], "3885": [ - "https://rpc-zkevm-ghostrider.thefirechain.com" + { + "url": "https://rpc-zkevm-ghostrider.thefirechain.com" + } ], "3888": [ - "https://rpc.kalychain.io/rpc" + { + "url": "https://rpc.kalychain.io/rpc" + } ], "3889": [ - "https://testnetrpc.kalychain.io/rpc" + { + "url": "https://testnetrpc.kalychain.io/rpc" + } ], "3912": [ - "https://www.dracscan.com/rpc" + { + "url": "https://www.dracscan.com/rpc" + } ], "3939": [ - "https://test.doschain.com" + { + "url": "https://test.doschain.com" + } ], "3966": [ - "https://api.dynoprotocol.com" + { + "url": "https://api.dynoprotocol.com" + } ], "3967": [ - "https://tapi.dynoprotocol.com" + { + "url": "https://tapi.dynoprotocol.com" + } ], "3993": [ - "https://rpc-testnet.apexlayer.xyz" + { + "url": "https://rpc-testnet.apexlayer.xyz" + } ], "3999": [ - "https://mainnet.yuan.org/eth" + { + "url": "https://mainnet.yuan.org/eth" + } ], "4000": [ - "https://node1.ozonechain.io" + { + "url": "https://node1.ozonechain.io" + } ], "4001": [ - "https://rpc-testnet.peperium.io" + { + "url": "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" + { + "url": "https://rpc.testnet.fantom.network" + }, + { + "url": "https://endpoints.omniatech.io/v1/fantom/testnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://rpc.ankr.com/fantom_testnet", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://fantom-testnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://fantom-testnet-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://fantom-testnet-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://fantom.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://fantom-testnet.drpc.org" + }, + { + "url": "wss://fantom-testnet.drpc.org" + } ], "4003": [ - "https://x1-fastnet.xen.network" + { + "url": "https://x1-fastnet.xen.network" + } ], "4040": [ - "https://rpc-dev.carbonium.network", - "https://server-testnet.carbonium.network" + { + "url": "https://rpc-dev.carbonium.network" + }, + { + "url": "https://server-testnet.carbonium.network" + } ], "4048": [ - "https://rpc.gpu.net" + { + "url": "https://rpc.gpu.net" + } ], "4058": [ - "https://rpc1.ocean.bahamutchain.com" + { + "url": "https://rpc1.ocean.bahamutchain.com" + } ], "4061": [ - "https://rpc.n3.nahmii.io" + { + "url": "https://rpc.n3.nahmii.io" + } ], "4062": [ - "https://rpc.testnet.nahmii.io" + { + "url": "https://rpc.testnet.nahmii.io" + } ], "4078": [ - "https://muster.alt.technology" + { + "url": "https://muster.alt.technology" + } ], "4080": [ - "https://rpc.tobescan.com" + { + "url": "https://rpc.tobescan.com" + } ], "4090": [ - "https://rpc1.oasis.bahamutchain.com" + { + "url": "https://rpc1.oasis.bahamutchain.com" + } ], "4096": [ - "https://testnet-rpc.bitindi.org" + { + "url": "https://testnet-rpc.bitindi.org" + } ], "4099": [ - "https://mainnet-rpc.bitindi.org" + { + "url": "https://mainnet-rpc.bitindi.org" + } ], "4102": [ - "https://eth-ds.testnet.aioz.network" + { + "url": "https://eth-ds.testnet.aioz.network" + } ], "4139": [ - "https://humans-testnet-evm.itrocket.net", - "https://evm-rpc.testnet.humans.zone" + { + "url": "https://humans-testnet-evm.itrocket.net", + "tracking": "none", + "trackingDetails": "We do not track, store or process any personal data. You can check our privacy policy here: https://itrocket.net/privacy-policy/" + }, + { + "url": "https://evm-rpc.testnet.humans.zone" + } ], "4141": [ - "https://testnet-rpc.tipboxcoin.net" + { + "url": "https://testnet-rpc.tipboxcoin.net" + } ], "4157": [ - "https://rpc.testnet.ms" + { + "url": "https://rpc.testnet.ms" + } ], "4181": [ - "https://rpc1.phi.network", - "https://rpc2.phi.network" + { + "url": "https://rpc1.phi.network" + }, + { + "url": "https://rpc2.phi.network" + } ], "4200": [ - "https://rpc.merlinchain.io", - "https://merlin-mainnet-enterprise.unifra.io", - "https://rpc-merlin.rockx.com" + { + "url": "https://rpc.merlinchain.io" + }, + { + "url": "https://merlin-mainnet-enterprise.unifra.io" + }, + { + "url": "https://rpc-merlin.rockx.com" + } ], "4201": [ - "https://rpc.testnet.lukso.network", - "wss://ws-rpc.testnet.lukso.network" + { + "url": "https://rpc.testnet.lukso.network" + }, + { + "url": "wss://ws-rpc.testnet.lukso.network" + } ], "4202": [ - "https://rpc.sepolia-api.lisk.com" + { + "url": "https://rpc.sepolia-api.lisk.com" + } ], "4242": [ - "https://rpc.chain.nexi.technology", - "https://chain.nexilix.com", - "https://chain.nexi.evmnode.online" + { + "url": "https://rpc.chain.nexi.technology" + }, + { + "url": "https://chain.nexilix.com" + }, + { + "url": "https://chain.nexi.evmnode.online" + } ], "4243": [ - "https://chain.nexiv2.nexilix.com", - "https://rpc.chainv1.nexi.technology" + { + "url": "https://chain.nexiv2.nexilix.com" + }, + { + "url": "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" + { + "url": "https://build.onbeam.com/rpc" + }, + { + "url": "wss://build.onbeam.com/ws" + }, + { + "url": "https://subnets.avax.network/beam/mainnet/rpc" + }, + { + "url": "wss://subnets.avax.network/beam/mainnet/ws" + } ], "4400": [ - "https://rpc.creditsmartchain.com" + { + "url": "https://rpc.creditsmartchain.com" + } ], "4444": [ - "https://janus.htmlcoin.dev/janus", - "https://janus.htmlcoin.com/api" + { + "url": "https://janus.htmlcoin.dev/janus" + }, + { + "url": "https://janus.htmlcoin.com/api" + } ], "4460": [ - "https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + { + "url": "https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + } ], "4544": [ - "https://testnet.emoney.network" + { + "url": "https://testnet.emoney.network" + } ], "4613": [ - "https://rpc.verylabs.io" + { + "url": "https://rpc.verylabs.io" + } ], "4653": [ - "https://chain-rpc.gold.dev" + { + "url": "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" + { + "url": "https://rpc.ankr.com/iotex", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://babel-api.mainnet.iotex.io" + }, + { + "url": "https://babel-api.mainnet.iotex.one" + }, + { + "url": "https://babel-api.fastblocks.io" + }, + { + "url": "https://iotexrpc.com", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://iotex-network.rpc.thirdweb.com", + "tracking": "yes", + "trackingDetails": "Server logs automatically record information and details about your online interactions with us. For example, server logs may record information about your visit to our Site on a particular time and day and collect information such as your device ID and IP address.https://thirdweb.com/privacy" + }, + { + "url": "https://iotex.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + } ], "4690": [ - "https://babel-api.testnet.iotex.io" + { + "url": "https://babel-api.testnet.iotex.io" + } ], "4759": [ - "https://rpc.meversetestnet.io" + { + "url": "https://rpc.meversetestnet.io" + } ], "4777": [ - "https://testnet.blackfort.network/rpc" + { + "url": "https://testnet.blackfort.network/rpc" + } ], "4893": [ - "https://rpc.gcscan.io" + { + "url": "https://rpc.gcscan.io" + } ], "4918": [ - "https://rpc-evm-testnet.venidium.io" + { + "url": "https://rpc-evm-testnet.venidium.io" + } ], "4919": [ - "https://rpc.venidium.io" + { + "url": "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" + { + "url": "https://mainnet.blackfort.network/rpc" + }, + { + "url": "https://mainnet-1.blackfort.network/rpc" + }, + { + "url": "https://mainnet-2.blackfort.network/rpc" + }, + { + "url": "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" + { + "url": "https://mantle-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://mantle-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://mantle-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://mantle.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://rpc.ankr.com/mantle", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://1rpc.io/mantle", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://rpc.mantle.xyz" + } ], "5001": [ - "https://rpc.testnet.mantle.xyz" + { + "url": "https://rpc.testnet.mantle.xyz" + } ], "5002": [ - "https://node0.treasurenet.io", - "https://node1.treasurenet.io", - "https://node2.treasurenet.io", - "https://node3.treasurenet.io" + { + "url": "https://node0.treasurenet.io" + }, + { + "url": "https://node1.treasurenet.io" + }, + { + "url": "https://node2.treasurenet.io" + }, + { + "url": "https://node3.treasurenet.io" + } ], "5003": [ - "https://rpc.sepolia.mantle.xyz" + { + "url": "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" + { + "url": "https://node0.testnet.treasurenet.io" + }, + { + "url": "https://node1.testnet.treasurenet.io" + }, + { + "url": "https://node2.testnet.treasurenet.io" + }, + { + "url": "https://node3.testnet.treasurenet.io" + } ], "5039": [ - "https://subnets.avax.network/onigiri/testnet/rpc" + { + "url": "https://subnets.avax.network/onigiri/testnet/rpc" + } ], "5040": [ - "https://subnets.avax.network/onigiri/mainnet/rpc" + { + "url": "https://subnets.avax.network/onigiri/mainnet/rpc" + } ], "5051": [ - "https://nollie-rpc.skatechain.org" + { + "url": "https://nollie-rpc.skatechain.org" + } ], "5100": [ - "https://rpc-testnet.syndicate.io" + { + "url": "https://rpc-testnet.syndicate.io" + } ], "5101": [ - "https://rpc-frame.syndicate.io" + { + "url": "https://rpc-frame.syndicate.io" + } ], "5102": [ - "https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz" + { + "url": "https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz" + } ], "5103": [ - "https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz" + { + "url": "https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz" + } ], "5104": [ - "https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz" + { + "url": "https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz" + } ], "5105": [ - "https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz" + { + "url": "https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz" + } ], "5106": [ - "https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz" + { + "url": "https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz" + } ], "5112": [ - "https://rpc.ham.fun" + { + "url": "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" + { + "url": "https://bahamut-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://bahamut-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://rpc1.bahamut.io" + }, + { + "url": "https://rpc2.bahamut.io" + }, + { + "url": "wss://ws1.sahara.bahamutchain.com" + }, + { + "url": "wss://ws2.sahara.bahamutchain.com" + } ], "5169": [ - "https://rpc.main.smartlayer.network" + { + "url": "https://rpc.main.smartlayer.network" + } ], "5177": [ - "https://mainnet-rpc.tlxscan.com" + { + "url": "https://mainnet-rpc.tlxscan.com" + } ], "5197": [ - "https://mainnet.eraswap.network", - "https://rpc-mumbai.mainnet.eraswap.network" + { + "url": "https://mainnet.eraswap.network" + }, + { + "url": "https://rpc-mumbai.mainnet.eraswap.network" + } ], "5234": [ - "https://explorer-rpc-http.mainnet.stages.humanode.io" + { + "url": "https://explorer-rpc-http.mainnet.stages.humanode.io" + } ], "5315": [ - "https://network.uzmigames.com.br" + { + "url": "https://network.uzmigames.com.br" + } ], "5317": [ - "https://rpctest.optrust.io" + { + "url": "https://rpctest.optrust.io" + } ], "5321": [ - "https://rpc.testnet.itxchain.com" + { + "url": "https://rpc.testnet.itxchain.com" + } ], "5353": [ - "https://nodetestnet-station-one.tritanium.network", - "https://nodetestnet-station-two.tritanium.network" + { + "url": "https://nodetestnet-station-one.tritanium.network" + }, + { + "url": "https://nodetestnet-station-two.tritanium.network" + } ], "5372": [ - "https://settlus-test-eth.settlus.io" + { + "url": "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" + { + "url": "https://mainnet.edexa.network/rpc" + }, + { + "url": "https://mainnet.edexa.com/rpc" + }, + { + "url": "https://io-dataseed1.mainnet.edexa.io-market.com/rpc" + } ], "5439": [ - "https://mainnet.egochain.org" + { + "url": "https://mainnet.egochain.org" + } ], "5522": [ - "https://testnet.vexascan.com/evmapi" + { + "url": "https://testnet.vexascan.com/evmapi" + } ], "5551": [ - "https://l2.nahmii.io" + { + "url": "https://l2.nahmii.io" + } ], "5555": [ - "https://rpc.chainverse.info" + { + "url": "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" + { + "url": "https://opbnb-testnet-rpc.bnbchain.org" + }, + { + "url": "https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3" + }, + { + "url": "wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3" + }, + { + "url": "https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5" + }, + { + "url": "wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5" + }, + { + "url": "https://opbnb-testnet-rpc.publicnode.com" + }, + { + "url": "wss://opbnb-testnet-rpc.publicnode.com" + } ], "5615": [ - "https://rpc-testnet.arcturuschain.io" + { + "url": "https://rpc-testnet.arcturuschain.io" + } ], "5616": [ - "http://185.99.196.3:8545" + { + "url": "http://185.99.196.3:8545" + } ], "5656": [ - "https://rpc-main1.qiblockchain.online", - "https://rpc-main2.qiblockchain.online" + { + "url": "https://rpc-main1.qiblockchain.online" + }, + { + "url": "https://rpc-main2.qiblockchain.online" + } ], "5675": [ - "https://rpctest.filenova.org" + { + "url": "https://rpctest.filenova.org" + } ], "5678": [ - "https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network" + { + "url": "https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network" + }, + { + "url": "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" + { + "url": "https://syscoin-tanenbaum-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://syscoin-tanenbaum-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://rollux.rpc.tanenbaum.io" + }, + { + "url": "wss://rollux.rpc.tanenbaum.io/wss" + }, + { + "url": "https://rpc.tanenbaum.io" + }, + { + "url": "wss://rpc.tanenbaum.io/wss" + }, + { + "url": "https://syscoin-tanenbaum-evm.publicnode.com" + }, + { + "url": "wss://syscoin-tanenbaum-evm.publicnode.com" + } ], "5729": [ - "https://rpc-testnet.hika.network" + { + "url": "https://rpc-testnet.hika.network" + } ], "5758": [ - "https://testnet-rpc.satoshichain.io" + { + "url": "https://testnet-rpc.satoshichain.io" + } ], "5777": [ - "https://127.0.0.1:7545" + { + "url": "https://127.0.0.1:7545" + } ], "5845": [ - "https://rpc.tangle.tools", - "wss://rpc.tangle.tools" + { + "url": "https://rpc.tangle.tools" + }, + { + "url": "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" + { + "url": "http://polaris1.ont.io:20339" + }, + { + "url": "http://polaris2.ont.io:20339" + }, + { + "url": "http://polaris3.ont.io:20339" + }, + { + "url": "http://polaris4.ont.io:20339" + }, + { + "url": "https://polaris1.ont.io:10339" + }, + { + "url": "https://polaris2.ont.io:10339" + }, + { + "url": "https://polaris3.ont.io:10339" + }, + { + "url": "https://polaris4.ont.io:10339" + } ], "5869": [ - "https://proxy.wegochain.io", - "http://wallet.wegochain.io:7764" + { + "url": "https://proxy.wegochain.io" + }, + { + "url": "http://wallet.wegochain.io:7764" + } ], "6000": [ - "https://fullnode-testnet.bouncebitapi.com" + { + "url": "https://fullnode-testnet.bouncebitapi.com" + } ], "6001": [ - "https://fullnode-mainnet.bouncebitapi.com" + { + "url": "https://fullnode-mainnet.bouncebitapi.com" + } ], "6065": [ - "https://rpc-test.tresleches.finance" + { + "url": "https://rpc-test.tresleches.finance" + } ], "6066": [ - "https://rpc.tresleches.finance", - "https://rpc.treschain.io" + { + "url": "https://rpc.tresleches.finance" + }, + { + "url": "https://rpc.treschain.io" + } ], "6102": [ - "https://testnet.cascadia.foundation" + { + "url": "https://testnet.cascadia.foundation" + } ], "6118": [ - "https://node-api.alp.uptn.io/v1/ext/rpc" + { + "url": "https://node-api.alp.uptn.io/v1/ext/rpc" + } ], "6119": [ - "https://node-api.uptn.io/v1/ext/rpc" + { + "url": "https://node-api.uptn.io/v1/ext/rpc" + } ], "6321": [ - "https://jsonrpc.euphoria.aura.network" + { + "url": "https://jsonrpc.euphoria.aura.network" + } ], "6322": [ - "https://jsonrpc.aura.network" + { + "url": "https://jsonrpc.aura.network" + } ], "6363": [ - "https://dsc-rpc.digitsoul.co.th" + { + "url": "https://dsc-rpc.digitsoul.co.th" + } ], "6502": [ - "https://peerpay.su.gy/p2p" + { + "url": "https://peerpay.su.gy/p2p" + } ], "6552": [ - "https://testnet-rpc.scolcoin.com" + { + "url": "https://testnet-rpc.scolcoin.com" + } ], "6565": [ - "https://rpc-testnet-v1.foxchain.app", - "https://rpc2-testnet-v1.foxchain.app", - "https://rpc3-testnet-v1.foxchain.app" + { + "url": "https://rpc-testnet-v1.foxchain.app" + }, + { + "url": "https://rpc2-testnet-v1.foxchain.app" + }, + { + "url": "https://rpc3-testnet-v1.foxchain.app" + } ], "6626": [ - "https://http-mainnet.chain.pixie.xyz", - "wss://ws-mainnet.chain.pixie.xyz" + { + "url": "https://http-mainnet.chain.pixie.xyz" + }, + { + "url": "wss://ws-mainnet.chain.pixie.xyz" + } ], "6660": [ - "https://testnet-rpc.latestcoin.io" + { + "url": "https://testnet-rpc.latestcoin.io" + } ], "6661": [ - "https://rpc-mainnet.cybria.io" + { + "url": "https://rpc-mainnet.cybria.io" + } ], "6666": [ - "https://l2-rpc.cybascan.io" + { + "url": "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" + { + "url": "https://iris-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://iris-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://evmrpc.irishub-1.irisnet.org" + }, + { + "url": "https://iris-evm.publicnode.com" + }, + { + "url": "wss://iris-evm.publicnode.com" + } ], "6699": [ - "https://rpc.oxscan.io" + { + "url": "https://rpc.oxscan.io" + } ], "6701": [ - "https://chain.paxb.io" + { + "url": "https://chain.paxb.io" + } ], "6779": [ - "https://rpc.compverse.io", - "https://rpc-useast1.compverse.io" + { + "url": "https://rpc.compverse.io" + }, + { + "url": "https://rpc-useast1.compverse.io" + } ], "6789": [ - "https://rpc-mainnet.goldsmartchain.com" + { + "url": "https://rpc-mainnet.goldsmartchain.com" + } ], "6868": [ - "https://rpc.poolsmobility.com" + { + "url": "https://rpc.poolsmobility.com" + } ], "6969": [ - "https://rpc.tombchain.com" + { + "url": "https://rpc.tombchain.com" + } ], "6999": [ - "https://seed0.polysmartchain.com", - "https://seed1.polysmartchain.com", - "https://seed2.polysmartchain.com" + { + "url": "https://seed0.polysmartchain.com" + }, + { + "url": "https://seed1.polysmartchain.com" + }, + { + "url": "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" + { + "url": "https://zetachain-evm.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://zetachain-mainnet-archive.allthatnode.com:8545", + "tracking": "yes", + "trackingDetails": "In addition to the Personal Information, the Billing Information, and the Geolocational Information..., we automatically collect certain information when you use the Platform or Website: IP addresses, browser type and language...; information about a mobile device, including universally unique ID (“UUID”), platform type and version (e.g., iOS or Android), carrier and country location, hardware and processor information, and network type; and activity and usage information occurring via the Platform or Website.https://www.allthatnode.com/privacypolicy.dsrv" + }, + { + "url": "wss://zetachain-mainnet-archive.allthatnode.com:8546", + "tracking": "yes", + "trackingDetails": "In addition to the Personal Information, the Billing Information, and the Geolocational Information..., we automatically collect certain information when you use the Platform or Website: IP addresses, browser type and language...; information about a mobile device, including universally unique ID (“UUID”), platform type and version (e.g., iOS or Android), carrier and country location, hardware and processor information, and network type; and activity and usage information occurring via the Platform or Website.https://www.allthatnode.com/privacypolicy.dsrv" + }, + { + "url": "https://zeta.rpcgrid.com", + "tracking": "none", + "trackingDetails": "Only strictly functional data is automatically collected by the RPC. None of this data is directly exported or used for commercial purposes. https://rpcgrid.com/privacy-policy" + }, + { + "url": "wss://zeta.rpcgrid.com", + "tracking": "none", + "trackingDetails": "Only strictly functional data is automatically collected by the RPC. None of this data is directly exported or used for commercial purposes. https://rpcgrid.com/privacy-policy" + } ], "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" + { + "url": "https://zetachain-athens-evm.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "wss://zetachain-athens.blockpi.network/rpc/v1/public/websocket" + }, + { + "url": "https://zetachain-testnet-archive.allthatnode.com:8545" + } ], "7007": [ - "https://rpc.bstchain.io" + { + "url": "https://rpc.bstchain.io" + } ], "7027": [ - "https://rpc.ella.network" + { + "url": "https://rpc.ella.network" + } ], "7070": [ - "https://planq-rpc.nodies.app", - "https://jsonrpc.planq.nodestake.top", - "https://evm-rpc.planq.network" + { + "url": "https://planq-rpc.nodies.app" + }, + { + "url": "https://jsonrpc.planq.nodestake.top" + }, + { + "url": "https://evm-rpc.planq.network" + } ], "7077": [ - "https://evm-rpc-atlas.planq.network" + { + "url": "https://evm-rpc-atlas.planq.network" + } ], "7100": [ - "https://rpc.numecrypto.com" + { + "url": "https://rpc.numecrypto.com" + } ], "7171": [ - "https://connect.bit-rock.io", - "https://brockrpc.io" + { + "url": "https://connect.bit-rock.io" + }, + { + "url": "https://brockrpc.io" + } ], "7300": [ - "https://rpc-xpla-verse.xpla.dev" + { + "url": "https://rpc-xpla-verse.xpla.dev" + } ], "7331": [ - "https://evm.klyntar.org/kly_evm_rpc", - "https://evm.klyntarscan.org/kly_evm_rpc" + { + "url": "https://evm.klyntar.org/kly_evm_rpc" + }, + { + "url": "https://evm.klyntarscan.org/kly_evm_rpc" + } ], "7332": [ - "https://eon-rpc.horizenlabs.io/ethv1", - "https://rpc.ankr.com/horizen_eon" + { + "url": "https://eon-rpc.horizenlabs.io/ethv1" + }, + { + "url": "https://rpc.ankr.com/horizen_eon" + } ], "7341": [ - "https://rpc.shyft.network" + { + "url": "https://rpc.shyft.network" + } ], "7484": [ - "https://rpc.x.raba.app", - "wss://rpc.x.raba.app/ws" + { + "url": "https://rpc.x.raba.app" + }, + { + "url": "wss://rpc.x.raba.app/ws" + } ], "7518": [ - "https://rpc.meversemainnet.io" + { + "url": "https://rpc.meversemainnet.io" + } ], "7560": [ - "https://cyber.alt.technology", - "wss://cyber-ws.alt.technology", - "https://rpc.cyber.co", - "wss://rpc.cyber.co" + { + "url": "https://cyber.alt.technology" + }, + { + "url": "wss://cyber-ws.alt.technology" + }, + { + "url": "https://rpc.cyber.co" + }, + { + "url": "wss://rpc.cyber.co" + } ], "7575": [ - "https://testnet.adilchain-rpc.io" + { + "url": "https://testnet.adilchain-rpc.io" + } ], "7576": [ - "https://adilchain-rpc.io" + { + "url": "https://adilchain-rpc.io" + } ], "7668": [ - "https://root.rootnet.live/archive", - "wss://root.rootnet.live/archive/ws" + { + "url": "https://root.rootnet.live/archive" + }, + { + "url": "wss://root.rootnet.live/archive/ws" + } ], "7672": [ - "https://porcini.rootnet.app/archive", - "wss://porcini.rootnet.app/archive/ws" + { + "url": "https://porcini.rootnet.app/archive" + }, + { + "url": "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" + { + "url": "https://canto.gravitychain.io" + }, + { + "url": "https://canto.evm.chandrastation.com" + }, + { + "url": "https://jsonrpc.canto.nodestake.top" + }, + { + "url": "https://canto.dexvaults.com" + }, + { + "url": "wss://canto.gravitychain.io:8546" + }, + { + "url": "wss://canto.dexvaults.com/ws" + }, + { + "url": "https://canto-rpc.ansybl.io" + }, + { + "url": "https://canto.slingshot.finance" + }, + { + "url": "https://mainnode.plexnode.org:8545" + } ], "7701": [ - "https://testnet-archive.plexnode.wtf" + { + "url": "https://testnet-archive.plexnode.wtf" + } ], "7771": [ - "https://testnet.bit-rock.io" + { + "url": "https://testnet.bit-rock.io" + } ], "7775": [ - "https://testnet-rpc1.gdccscan.io" + { + "url": "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" + { + "url": "https://testnet1.rotw.games" + }, + { + "url": "https://testnet2.rotw.games" + }, + { + "url": "https://testnet3.rotw.games" + }, + { + "url": "https://testnet4.rotw.games" + }, + { + "url": "https://testnet5.rotw.games" + }, + { + "url": "https://testnet1.riseofthewarbots.com" + }, + { + "url": "https://testnet2.riseofthewarbots.com" + }, + { + "url": "https://testnet3.riseofthewarbots.com" + }, + { + "url": "https://testnet4.riseofthewarbots.com" + }, + { + "url": "https://testnet5.riseofthewarbots.com" + } ], "7778": [ - "https://validator-mainnet.orenium.org", - "https://rpc-oracle-mainnet.orenium.org", - "https://portalmainnet.orenium.org" + { + "url": "https://validator-mainnet.orenium.org" + }, + { + "url": "https://rpc-oracle-mainnet.orenium.org" + }, + { + "url": "https://portalmainnet.orenium.org" + } ], "7798": [ - "https://long.rpc.openex.network" + { + "url": "https://long.rpc.openex.network" + } ], "7860": [ - "https://node1.maalscan.io", - "https://rpc-bntest.maalscan.io" + { + "url": "https://node1.maalscan.io" + }, + { + "url": "https://rpc-bntest.maalscan.io" + } ], "7878": [ - "https://hatlas.rpc.hazlor.com:8545", - "wss://hatlas.rpc.hazlor.com:8546" + { + "url": "https://hatlas.rpc.hazlor.com:8545" + }, + { + "url": "wss://hatlas.rpc.hazlor.com:8546" + } ], "7887": [ - "https://rpc.kinto.xyz/http", - "https://kinto-mainnet.calderachain.xyz/http" + { + "url": "https://rpc.kinto.xyz/http" + }, + { + "url": "https://kinto-mainnet.calderachain.xyz/http" + } ], "7895": [ - "https://rpc-athena.ardescan.com" + { + "url": "https://rpc-athena.ardescan.com", + "tracking": "yes", + "trackingDetails": " (ARD) Ardenium Athena, we prioritize the protection of your privacy and the security of your data. This privacy policy summary provides an overview of how we handle and safeguard your personal information when you use our Ardenium Athena Explorer Blockchain services. However, please note that this is only a summary, and for complete details, we encourage you to review the full privacy policy available at soma, Information Collection: When you use our services, we may collect personal information, such as mobile device details, operation records, transaction records, wallet addresses, and other relevant data. For a more comprehensive understanding, please refer to our full privacy policy at https://docs.ardenium.wiki/ardenium-network/disclaimer." + } ], "7923": [ - "https://rpc.dotblox.io" + { + "url": "https://rpc.dotblox.io" + } ], "7924": [ - "https://mainnet-rpc.mochain.app" + { + "url": "https://mainnet-rpc.mochain.app" + } ], "7979": [ - "https://main.doschain.com" + { + "url": "https://main.doschain.com" + } ], "8000": [ - "https://dataseed.testnet.teleport.network", - "https://evm-rpc.teleport.network" + { + "url": "https://dataseed.testnet.teleport.network" + }, + { + "url": "https://evm-rpc.teleport.network" + } ], "8001": [ - "https://evm-rpc.testnet.teleport.network" + { + "url": "https://evm-rpc.testnet.teleport.network" + } ], "8029": [ - "https://testnet.mdgl.io" + { + "url": "https://testnet.mdgl.io" + } ], "8047": [ - "https://rpc0.come.boat" + { + "url": "https://rpc0.come.boat" + } ], "8054": [ - "https://rpc.sepolia.karak.network" + { + "url": "https://rpc.sepolia.karak.network" + } ], "8080": [ - "https://liberty10.shardeum.org" + { + "url": "https://liberty10.shardeum.org" + } ], "8081": [ - "https://dapps.shardeum.org", - "https://liberty20.shardeum.org" + { + "url": "https://dapps.shardeum.org", + "tracking": "yes", + "trackingDetails": "Shardeum follows a standard procedure of using log files. These files log visitors when they visit websites... The information collected by log files includes IP addresses, browser type, ISP, date and time stamp, referring/exit pages, and potentially the number of clicks.https://shardeum.org/privacy-policy/" + }, + { + "url": "https://liberty20.shardeum.org" + } ], "8082": [ - "https://sphinx.shardeum.org" + { + "url": "https://sphinx.shardeum.org", + "tracking": "yes", + "trackingDetails": "Shardeum follows a standard procedure of using log files. These files log visitors when they visit websites... The information collected by log files includes IP addresses, browser type, ISP, date and time stamp, referring/exit pages, and potentially the number of clicks.https://shardeum.org/privacy-policy/" + } ], "8086": [ - "https://rpc.biteth.org" + { + "url": "https://rpc.biteth.org" + } ], "8087": [ - "https://rpc.e-dollar.org" + { + "url": "https://rpc.e-dollar.org" + } ], "8098": [ - "https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io" + { + "url": "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" + { + "url": "https://testnet.meerlabs.com" + }, + { + "url": "https://testnet-qng.rpc.qitmeer.io" + }, + { + "url": "https://meer.testnet.meerfans.club" + } ], "8181": [ - "https://pre-boc1.beonechain.com" + { + "url": "https://pre-boc1.beonechain.com" + } ], "8192": [ - "https://rpc.toruschain.com" + { + "url": "https://rpc.toruschain.com" + } ], "8194": [ - "https://rpc.testnet.toruschain.com" + { + "url": "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" + { + "url": "https://public-en-cypress.klaytn.net" + }, + { + "url": "https://klaytn-mainnet-rpc.allthatnode.com:8551", + "tracking": "yes", + "trackingDetails": "In addition to the Personal Information, the Billing Information, and the Geolocational Information..., we automatically collect certain information when you use the Platform or Website: IP addresses, browser type and language...; information about a mobile device, including universally unique ID (“UUID”), platform type and version (e.g., iOS or Android), carrier and country location, hardware and processor information, and network type; and activity and usage information occurring via the Platform or Website.https://www.allthatnode.com/privacypolicy.dsrv" + }, + { + "url": "https://rpc.ankr.com/klaytn ", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://klaytn.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://klaytn.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://1rpc.io/klay", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://klaytn-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://klaytn.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + } ], "8227": [ - "https://subnets.avax.network/space/mainnet/rpc" + { + "url": "https://subnets.avax.network/space/mainnet/rpc" + } ], "8272": [ - "https://rpc.blocktonscan.com" + { + "url": "https://rpc.blocktonscan.com" + } ], "8285": [ - "https://www.krotho-test.net" + { + "url": "https://www.krotho-test.net" + } ], "8329": [ - "https://rpc.lorenzo-protocol.xyz" + { + "url": "https://rpc.lorenzo-protocol.xyz" + } ], "8387": [ - "https://api.dracones.net" + { + "url": "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" + { + "url": "https://base.llamarpc.com", + "tracking": "none", + "trackingDetails": "LlamaNodes is open-source and does not track or store user information that transits through our RPCs (location, IP, wallet, etc). To learn more, have a look at the public Privacy Policy in our docs: https://llamanodes.notion.site/Privacy-Practices-f20fd8fdd02a469d9d4f42a5989bb936", + "isOpenSource": true + }, + { + "url": "https://mainnet.base.org" + }, + { + "url": "https://developer-access-mainnet.base.org" + }, + { + "url": "https://base-mainnet.diamondswap.org/rpc", + "tracking": "limited", + "trackingDetails": "We record limited metadata from requests. This data is stored for a maximum of 90 days and is solely used for debugging, identifying suspicious activity, and generating analytics." + }, + { + "url": "https://base.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://1rpc.io/base", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://base-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://base.meowrpc.com", + "tracking": "none", + "trackingDetails": "With the exclusion of data that will be openly visible and available on the blockchain, MEOWRPC does not track or store any kind of user information (such as location, IP address, etc.) that passes through our RPC. For further details regarding our privacy practices, we encourage you to refer to our Privacy Policy. https://privacy.meowrpc.com" + }, + { + "url": "https://base-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://base.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/base", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://rpc.notadegen.com/base" + }, + { + "url": "https://base-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://base-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://base.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://endpoints.omniatech.io/v1/base/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://base.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "wss://base.gateway.tenderly.co" + } ], "8654": [ - "https://mainnet.buildwithtoki.com/v0/rpc" + { + "url": "https://mainnet.buildwithtoki.com/v0/rpc" + } ], "8655": [ - "https://testnet.buildwithtoki.com/v0/rpc" + { + "url": "https://testnet.buildwithtoki.com/v0/rpc" + } ], "8668": [ - "https://mainnet-rpc.helachain.com" + { + "url": "https://mainnet-rpc.helachain.com" + } ], "8723": [ - "https://mainnet-web3.wolot.io" + { + "url": "https://mainnet-web3.wolot.io" + } ], "8724": [ - "https://testnet-web3.wolot.io" + { + "url": "https://testnet-web3.wolot.io" + } ], "8726": [ - "https://mainnet-validator.storagechain.io" + { + "url": "https://mainnet-validator.storagechain.io" + } ], "8727": [ - "https://testnet-validator.storagechain.io" + { + "url": "https://testnet-validator.storagechain.io" + } ], "8738": [ - "https://rpc.alph.network", - "wss://rpc.alph.network" + { + "url": "https://rpc.alph.network" + }, + { + "url": "wss://rpc.alph.network" + } ], "8768": [ - "https://node1.tmyblockchain.org/rpc" + { + "url": "https://node1.tmyblockchain.org/rpc" + } ], "8822": [ - "https://json-rpc.evm.iotaledger.net", - "https://ws.json-rpc.evm.iotaledger.net" + { + "url": "https://json-rpc.evm.iotaledger.net" + }, + { + "url": "https://ws.json-rpc.evm.iotaledger.net" + } ], "8844": [ - "https://rpc.testnet.hydrachain.org" + { + "url": "https://rpc.testnet.hydrachain.org" + } ], "8848": [ - "https://rpc-mainnet.ma.ro" + { + "url": "https://rpc-mainnet.ma.ro" + } ], "8866": [ - "https://mainnet.lumio.io" + { + "url": "https://mainnet.lumio.io" + } ], "8880": [ - "https://rpc.unique.network", - "https://eu-rpc.unique.network", - "https://asia-rpc.unique.network", - "https://us-rpc.unique.network" + { + "url": "https://rpc.unique.network" + }, + { + "url": "https://eu-rpc.unique.network" + }, + { + "url": "https://asia-rpc.unique.network" + }, + { + "url": "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" + { + "url": "https://rpc-quartz.unique.network" + }, + { + "url": "https://quartz.api.onfinality.io/public-ws" + }, + { + "url": "https://eu-rpc-quartz.unique.network" + }, + { + "url": "https://asia-rpc-quartz.unique.network" + }, + { + "url": "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" + { + "url": "https://rpc-opal.unique.network" + }, + { + "url": "https://us-rpc-opal.unique.network" + }, + { + "url": "https://eu-rpc-opal.unique.network" + }, + { + "url": "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" + { + "url": "https://rpc-sapphire.unique.network" + }, + { + "url": "https://us-rpc-sapphire.unique.network" + }, + { + "url": "https://eu-rpc-sapphire.unique.network" + }, + { + "url": "https://asia-rpc-sapphire.unique.network" + } ], "8888": [ - "https://mainnet.xana.net/rpc" + { + "url": "https://mainnet.xana.net/rpc" + } ], "8889": [ - "https://vsc-dataseed.vyvo.org:8889" + { + "url": "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" + { + "url": "https://rpc-dev-testnet.orenium.org" + }, + { + "url": "https://rpc-testnet.orenium.org" + }, + { + "url": "https://rpc-orc.oredex.finance" + }, + { + "url": "https://testnet-rpc.oredex.finance" + }, + { + "url": "https://oredex-node.oredex.finance" + } ], "8898": [ - "https://dataseed.mmtscan.io", - "https://dataseed1.mmtscan.io", - "https://dataseed2.mmtscan.io" + { + "url": "https://dataseed.mmtscan.io" + }, + { + "url": "https://dataseed1.mmtscan.io" + }, + { + "url": "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" + { + "url": "https://rpc-l1.jibchain.net" + }, + { + "url": "https://jib-rpc.inan.in.th" + }, + { + "url": "https://rpc-l1.jbc.aomwara.in.th" + }, + { + "url": "https://rpc-l1.jbc.xpool.pw" + } ], "8911": [ - "https://rpc.algen.network" + { + "url": "https://rpc.algen.network" + } ], "8912": [ - "https://rpc.test.algen.network" + { + "url": "https://rpc.test.algen.network" + } ], "8921": [ - "https://rpc.alg2.algen.network" + { + "url": "https://rpc.alg2.algen.network" + } ], "8922": [ - "https://rpc.alg2-test.algen.network" + { + "url": "https://rpc.alg2-test.algen.network" + } ], "8989": [ - "https://rpc-asia.gmmtchain.io" + { + "url": "https://rpc-asia.gmmtchain.io" + } ], "8995": [ - "https://core.bloxberg.org" + { + "url": "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" + { + "url": "https://evmos-testnet-json.qubelabs.io" + }, + { + "url": "https://evmos-tjson.antrixy.org" + }, + { + "url": "https://evmos-testnet-rpc.kingsuper.services" + }, + { + "url": "https://rpc.evmos.test.theamsolutions.info" + }, + { + "url": "https://api.evmos-test.theamsolutions.info" + }, + { + "url": "https://rpc.evmos.testnet.node75.org" + }, + { + "url": "https://rpc-evm.testnet.evmos.dragonstake.io" + }, + { + "url": "https://evmos-testnet-rpc.stake-town.com" + }, + { + "url": "https://evmos-testnet-jsonrpc.stake-town.com" + }, + { + "url": "https://api.evmos-test.theamsolutions.info" + }, + { + "url": "https://jsonrpc-t.evmos.nodestake.top" + }, + { + "url": "https://evmos-testnet-jsonrpc.autostake.com" + }, + { + "url": "https://evmos-testnet-jsonrpc.alkadeta.com" + }, + { + "url": "https://evm-rpc.evmost.silentvalidator.com" + }, + { + "url": "https://testnet-evm-rpc-evmos.hoodrun.io" + }, + { + "url": "https://alphab.ai/rpc/eth/evmos_testnet" + }, + { + "url": "https://t-evmos-jsonrpc.kalia.network" + }, + { + "url": "https://jsonrpc-evmos-testnet.mzonder.com" + }, + { + "url": "https://evmos-testnet.lava.build/lava-referer-16223de7-12c0-49f3-8d87-e5f1e6a0eb3b" + }, + { + "url": "https://evmos-testnet.lava.build" + }, + { + "url": "https://eth.bd.evmos.dev:8545" + }, + { + "url": "https://evmos-testnet-evm-rpc.publicnode.com" + }, + { + "url": "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" + { + "url": "https://evmos.lava.build", + "tracking": "yes", + "trackingDetails": "We, our service providers, and our business partners may automatically log information about you, your computer or mobile device, and your interaction over time with the Service..., such as: Device data, ...your computer or mobile device's operating system type and version, manufacturer and model, browser type, screen resolution, RAM and disk size, CPU usage, device type (e.g., phone, tablet), IP address, unique identifiers (including identifiers used for advertising purposes), language settings, mobile device carrier, radio/network information (e.g., Wi-Fi, LTE, 3G), and general location information such as city, state or geographic area. https://www.lavanet.xyz/privacy-policy" + }, + { + "url": "https://evmos-mainnet-jsonrpc.autostake.com", + "tracking": "limited", + "trackingDetails": "When you browse our marketing pages, we’ll track that for statistical purposes (like conversion rates and to test new designs). We also store any information you volunteer, like surveys, for as long as it makes sense.https://autostake.com/privacy-policy" + }, + { + "url": "https://evmos-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://evmos-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://evmos-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://evmos-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://jsonrpc-evmos.goldenratiostaking.net" + }, + { + "url": "https://evmos.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://evmos-jsonrpc.cyphercore.io", + "tracking": "yes", + "trackingDetails": "We collect information about you in various ways when you use our website. This includes information you provide directly to us, information we collect automatically, and information we obtain from third-party sources.https://cyphercore.io/privacy-policy/" + }, + { + "url": "https://eth.bd.evmos.org:8545" + }, + { + "url": "https://evmos-json-rpc.stakely.io" + }, + { + "url": "https://jsonrpc-evmos-ia.cosmosia.notional.ventures" + }, + { + "url": "https://json-rpc.evmos.blockhunters.org" + }, + { + "url": "https://evmos-json-rpc.agoranodes.com" + }, + { + "url": "https://evmos-json.antrixy.org" + }, + { + "url": "https://jsonrpc.evmos.nodestake.top" + }, + { + "url": "https://evmos-jsonrpc.alkadeta.com" + }, + { + "url": "https://evmos-json.qubelabs.io" + }, + { + "url": "https://evmos-rpc.theamsolutions.info" + }, + { + "url": "https://evmos-api.theamsolutions.info" + }, + { + "url": "https://evmos-jsonrpc.theamsolutions.info" + }, + { + "url": "https://evm-rpc-evmos.hoodrun.io" + }, + { + "url": "https://evmos-json-rpc.0base.dev" + }, + { + "url": "https://json-rpc.evmos.tcnetwork.io" + }, + { + "url": "https://rpc-evm.evmos.dragonstake.io" + }, + { + "url": "https://evmosevm.rpc.stakin-nodes.com" + }, + { + "url": "https://evmos-jsonrpc.stake-town.com" + }, + { + "url": "https://json-rpc-evmos.mainnet.validatrium.club" + }, + { + "url": "https://rpc-evmos.imperator.co" + }, + { + "url": "https://evm-rpc.evmos.silentvalidator.com" + }, + { + "url": "https://alphab.ai/rpc/eth/evmos" + }, + { + "url": "https://evmos-jsonrpc.kalia.network" + }, + { + "url": "https://jsonrpc-evmos.mzonder.com" + }, + { + "url": "https://evmos.lava.build/lava-referer-16223de7-12c0-49f3-8d87-e5f1e6a0eb3b", + "tracking": "yes", + "trackingDetails": "We, our service providers, and our business partners may automatically log information about you, your computer or mobile device, and your interaction over time with the Service..., such as: Device data, ...your computer or mobile device's operating system type and version, manufacturer and model, browser type, screen resolution, RAM and disk size, CPU usage, device type (e.g., phone, tablet), IP address, unique identifiers (including identifiers used for advertising purposes), language settings, mobile device carrier, radio/network information (e.g., Wi-Fi, LTE, 3G), and general location information such as city, state or geographic area. https://www.lavanet.xyz/privacy-policy" + }, + { + "url": "wss://evmos.lava.build/websocket" + } ], "9007": [ - "https://rpc-testnet-nodes.shidoscan.com", - "wss://wss-testnet-nodes.shidoscan.com" + { + "url": "https://rpc-testnet-nodes.shidoscan.com" + }, + { + "url": "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" + { + "url": "https://rpc-nodes.shidoscan.com" + }, + { + "url": "wss://wss-nodes.shidoscan.com" + }, + { + "url": "https://rpc-delta-nodes.shidoscan.com" + }, + { + "url": "wss://wss-delta-nodes.shidoscan.com" + } ], "9012": [ - "https://mainnet.berylbit.io" + { + "url": "https://mainnet.berylbit.io" + } ], "9024": [ - "https://rpc-testnet-nodes.nexablockscan.io" + { + "url": "https://rpc-testnet-nodes.nexablockscan.io" + } ], "9025": [ - "https://rpc-nodes.nexablockscan.io", - "wss://wss-nodes.nexablockscan.io", - "https://rpc-nodes-delta.nexablockscan.io" + { + "url": "https://rpc-nodes.nexablockscan.io" + }, + { + "url": "wss://wss-nodes.nexablockscan.io" + }, + { + "url": "https://rpc-nodes-delta.nexablockscan.io" + } ], "9100": [ - "rpcWorking:false", - "https://genesis-gn.com", - "wss://genesis-gn.com" + { + "url": "rpcWorking:false" + }, + { + "url": "https://genesis-gn.com" + }, + { + "url": "wss://genesis-gn.com" + } ], "9223": [ - "https://chain-rpc.codefin.pro" + { + "url": "https://chain-rpc.codefin.pro" + } ], "9339": [ - "https://testnet-rpc.dogcoin.me" + { + "url": "https://testnet-rpc.dogcoin.me" + } ], "9393": [ - "https://sepolia-dela.deperp.com" + { + "url": "https://sepolia-dela.deperp.com" + } ], "9395": [ - "https://mainnet-rpc.evokescan.org" + { + "url": "https://mainnet-rpc.evokescan.org" + } ], "9527": [ - "https://robin.rangersprotocol.com/api/jsonrpc" + { + "url": "https://robin.rangersprotocol.com/api/jsonrpc" + } ], "9528": [ - "https://qeasyweb3.com" + { + "url": "https://qeasyweb3.com" + } ], "9559": [ - "https://testnet.neonlink.io" + { + "url": "https://testnet.neonlink.io" + } ], "9700": [ - "https://dev-rpc.oortech.com" + { + "url": "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" + { + "url": "https://testnet.bnb.boba.network" + }, + { + "url": "wss://wss.testnet.bnb.boba.network" + }, + { + "url": "https://replica.testnet.bnb.boba.network" + }, + { + "url": "wss://replica-wss.testnet.bnb.boba.network" + }, + { + "url": "https://boba-bnb-testnet.gateway.tenderly.co" + }, + { + "url": "wss://boba-bnb-testnet.gateway.tenderly.co" + } ], "9768": [ - "https://testnet-rpc.mainnetz.io" + { + "url": "https://testnet-rpc.mainnetz.io" + } ], "9779": [ - "https://rpc-mainnet.pepenetwork.io" + { + "url": "https://rpc-mainnet.pepenetwork.io" + } ], "9789": [ - "https://rpc.testnet.tabichain.com" + { + "url": "https://rpc.testnet.tabichain.com" + } ], "9790": [ - "https://evm-api.carbon.network" + { + "url": "https://evm-api.carbon.network" + } ], "9792": [ - "https://test-evm-api.carbon.network" + { + "url": "https://test-evm-api.carbon.network" + } ], "9797": [ - "https://rpc.optimusz7.com" + { + "url": "https://rpc.optimusz7.com" + } ], "9818": [ - "https://data-aws-testnet.imperiumchain.com", - "https://data-aws2-testnet.imperiumchain.com" + { + "url": "https://data-aws-testnet.imperiumchain.com" + }, + { + "url": "https://data-aws2-testnet.imperiumchain.com" + } ], "9819": [ - "https://data-aws-mainnet.imperiumchain.com", - "https://data-aws2-mainnet.imperiumchain.com" + { + "url": "https://data-aws-mainnet.imperiumchain.com" + }, + { + "url": "https://data-aws2-mainnet.imperiumchain.com" + } ], "9888": [ - "https://dl-rpc.dogelayer.org" + { + "url": "https://dl-rpc.dogelayer.org" + } ], "9898": [ - "https://rpc.larissa.network" + { + "url": "https://rpc.larissa.network" + } ], "9911": [ - "https://rpc.escscan.com" + { + "url": "https://rpc.escscan.com" + } ], "9977": [ - "https://testnet-msc.mindchain.info", - "wss://testnet-msc.mindchain.info/ws" + { + "url": "https://testnet-msc.mindchain.info" + }, + { + "url": "wss://testnet-msc.mindchain.info/ws" + } ], "9980": [ - "https://rpc.combonetwork.io" + { + "url": "https://rpc.combonetwork.io" + } ], "9981": [ - "https://main-rpc.volleychain.com" + { + "url": "https://main-rpc.volleychain.com" + } ], "9990": [ - "https://rpcpc1-qa.agung.peaq.network" + { + "url": "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" + { + "url": "https://rpc-msc.mindchain.info" + }, + { + "url": "https://seednode.mindchain.info" + }, + { + "url": "https://archive.mindchain.info" + }, + { + "url": "https://mind-smart-chain.rpc.thirdweb.com" + }, + { + "url": "wss://archive.mindchain.info/ws" + }, + { + "url": "wss://seednode.mindchain.info/ws" + } ], "9997": [ - "https://testnet-rollup-api.altlayer.io" + { + "url": "https://testnet-rollup-api.altlayer.io" + } ], "9998": [ - "https://zitcoin.us" + { + "url": "https://zitcoin.us" + } ], "9999": [ - "https://geth.dev.bccloud.net" + { + "url": "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" + { + "url": "https://smartbch.fountainhead.cash/mainnet" + }, + { + "url": "https://global.uat.cash" + }, + { + "url": "https://rpc.uatvo.com" + }, + { + "url": "https://smartbch.greyh.at" + }, + { + "url": "https://rpc-mainnet.smartbch.org" + }, + { + "url": "https://smartbch.devops.cash/mainnet" + } ], "10001": [ - "https://rpc-testnet.smartbch.org", - "https://smartbch.devops.cash/testnet" + { + "url": "https://rpc-testnet.smartbch.org" + }, + { + "url": "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" + { + "url": "https://node1.testnet.gaiaopen.network" + }, + { + "url": "https://node1.mainnet.gon.network" + }, + { + "url": "https://node2.mainnet.gon.network" + }, + { + "url": "https://node3.mainnet.gon.network" + }, + { + "url": "https://node4.mainnet.gon.network" + } ], "10081": [ - "https://rpc-1.testnet.japanopenchain.org:8545", - "https://rpc-2.testnet.japanopenchain.org:8545" + { + "url": "https://rpc-1.testnet.japanopenchain.org:8545" + }, + { + "url": "https://rpc-2.testnet.japanopenchain.org:8545" + } ], "10086": [ - "http://geth.free.idcfengye.com" + { + "url": "http://geth.free.idcfengye.com" + } ], "10101": [ - "https://eu.mainnet.xixoio.com", - "https://us.mainnet.xixoio.com", - "https://asia.mainnet.xixoio.com" + { + "url": "https://eu.mainnet.xixoio.com" + }, + { + "url": "https://us.mainnet.xixoio.com" + }, + { + "url": "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" + { + "url": "https://rpc.chiadochain.net" + }, + { + "url": "https://rpc.chiado.gnosis.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": " https://endpoints.omniatech.io/v1/gnosis/chiado/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://gnosis-chiado-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://gnosis-chiado-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://1rpc.io/gnosis", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "wss://rpc.chiadochain.net/wss" + }, + { + "url": "https://gnosis-chiado.drpc.org" + }, + { + "url": "wss://gnosis-chiado.drpc.org" + } ], "10201": [ - "https://rpc.maxxchain.org", - "https://rpc1.maxxchain.org", - "https://rpc2.maxxchain.org" + { + "url": "https://rpc.maxxchain.org" + }, + { + "url": "https://rpc1.maxxchain.org" + }, + { + "url": "https://rpc2.maxxchain.org" + } ], "10222": [ - "https://glc-dataseed.glscan.io" + { + "url": "https://glc-dataseed.glscan.io" + } ], "10242": [ - "https://rpc.arthera.net" + { + "url": "https://rpc.arthera.net" + } ], "10243": [ - "https://rpc-test.arthera.net" + { + "url": "https://rpc-test.arthera.net" + } ], "10248": [ - "https://node.0xtchain.com" + { + "url": "https://node.0xtchain.com" + } ], "10321": [ - "https://rpc.taoevm.io" + { + "url": "https://rpc.taoevm.io" + } ], "10324": [ - "https://testnet-rpc.taoevm.io" + { + "url": "https://testnet-rpc.taoevm.io" + } ], "10395": [ - "https://gwangju.worldland.foundation" + { + "url": "https://gwangju.worldland.foundation" + } ], "10507": [ - "https://mainnetrpc.num.network" + { + "url": "https://mainnetrpc.num.network" + } ], "10508": [ - "https://testnetrpc.num.network" + { + "url": "https://testnetrpc.num.network" + } ], "10823": [ - "http://node106.cryptocoinpay.info:8545", - "ws://node106.cryptocoinpay.info:8546" + { + "url": "http://node106.cryptocoinpay.info:8545" + }, + { + "url": "ws://node106.cryptocoinpay.info:8546" + } ], "10849": [ - "https://subnets.avax.network/lamina1/mainnet/rpc" + { + "url": "https://subnets.avax.network/lamina1/mainnet/rpc" + } ], "10850": [ - "https://subnets.avax.network/lamina1id/mainnet/rpc" + { + "url": "https://subnets.avax.network/lamina1id/mainnet/rpc" + } ], "10946": [ - "https://rpc.quadrans.io", - "https://rpcna.quadrans.io", - "https://rpceu.quadrans.io" + { + "url": "https://rpc.quadrans.io" + }, + { + "url": "https://rpcna.quadrans.io" + }, + { + "url": "https://rpceu.quadrans.io" + } ], "10947": [ - "https://rpctest.quadrans.io", - "https://rpctest2.quadrans.io" + { + "url": "https://rpctest.quadrans.io" + }, + { + "url": "https://rpctest2.quadrans.io" + } ], "11110": [ - "https://rpc.astranaut.io", - "https://rpc1.astranaut.io" + { + "url": "https://rpc.astranaut.io" + }, + { + "url": "https://rpc1.astranaut.io" + } ], "11111": [ - "https://api.trywagmi.xyz/rpc", - "https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc" + { + "url": "https://api.trywagmi.xyz/rpc" + }, + { + "url": "https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc" + } ], "11115": [ - "https://rpc.astranaut.dev" + { + "url": "https://rpc.astranaut.dev" + } ], "11119": [ - "https://mainnet-rpc.hashbit.org", - "https://rpc.hashbit.org" + { + "url": "https://mainnet-rpc.hashbit.org" + }, + { + "url": "https://rpc.hashbit.org" + } ], "11221": [ - "https://rpc.shinescan.io" + { + "url": "https://rpc.shinescan.io" + } ], "11227": [ - "https://subnets.avax.network/jiritsutes/testnet/rpc" + { + "url": "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" + { + "url": "https://haqq-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://haqq-evm-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://rpc.eth.haqq.network" + }, + { + "url": "https://haqq.drpc.org" + }, + { + "url": "wss://haqq.drpc.org" + } ], "11501": [ - "https://rpc-mainnet-1.bevm.io", - "https://rpc-mainnet-2.bevm.io" + { + "url": "https://rpc-mainnet-1.bevm.io" + }, + { + "url": "https://rpc-mainnet-2.bevm.io" + } ], "11503": [ - "https://testnet.bevm.io" + { + "url": "https://testnet.bevm.io" + } ], "11612": [ - "https://testnet-rpc.sardisnetwork.com" + { + "url": "https://testnet-rpc.sardisnetwork.com" + } ], "11822": [ - "https://betanet-rpc1.artela.network" + { + "url": "https://betanet-rpc1.artela.network" + } ], "11891": [ - "https://rpc.polygonsupernet.public.arianee.net" + { + "url": "https://rpc.polygonsupernet.public.arianee.net" + } ], "12009": [ - "https://mainnet-rpc.satoshichain.io" + { + "url": "https://mainnet-rpc.satoshichain.io" + } ], "12020": [ - "https://rpc.aternoschain.com" + { + "url": "https://rpc.aternoschain.com" + } ], "12051": [ - "https://betaenv.singularity.gold:18545" + { + "url": "https://betaenv.singularity.gold:18545" + } ], "12052": [ - "https://zerorpc.singularity.gold" + { + "url": "https://zerorpc.singularity.gold" + } ], "12123": [ - "https://rpc.brcchain.io" + { + "url": "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" + { + "url": "https://node1.fibo-api.asia" + }, + { + "url": "https://node2.fibo-api.asia" + }, + { + "url": "https://node3.fibo-api.asia" + }, + { + "url": "https://node4.fibo-api.asia" + }, + { + "url": "https://node5.fibo-api.asia" + }, + { + "url": "https://node6.fibo-api.asia" + }, + { + "url": "https://node7.fibo-api.asia" + }, + { + "url": "https://node1.fibo-rpc.asia" + }, + { + "url": "https://node2.fibo-rpc.asia" + }, + { + "url": "https://node3.fibo-rpc.asia" + }, + { + "url": "https://node4.fibo-rpc.asia" + }, + { + "url": "https://node5.fibo-rpc.asia" + }, + { + "url": "https://node6.fibo-rpc.asia" + }, + { + "url": "https://node7.fibo-rpc.asia" + } ], "12321": [ - "https://rpc.blgchain.com" + { + "url": "https://rpc.blgchain.com" + } ], "12324": [ - "https://rpc-mainnet.l3x.com" + { + "url": "https://rpc-mainnet.l3x.com" + } ], "12325": [ - "https://rpc-testnet.l3x.com" + { + "url": "https://rpc-testnet.l3x.com" + } ], "12345": [ - "https://rpc.testnet.step.network" + { + "url": "https://rpc.testnet.step.network" + } ], "12553": [ - "https://rpc.rss3.io" + { + "url": "https://rpc.rss3.io" + } ], "12715": [ - "https://testnet-rpc.rikscan.com" + { + "url": "https://testnet-rpc.rikscan.com" + } ], "12781": [ - "https://subnets.avax.network/playdappte/testnet/rpc" + { + "url": "https://subnets.avax.network/playdappte/testnet/rpc" + } ], "12890": [ - "https://testnet-rpc.quantumscan.org" + { + "url": "https://testnet-rpc.quantumscan.org" + } ], "12898": [ - "https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc" + { + "url": "https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc" + } ], "13000": [ - "https://rpc.ssquad.games" + { + "url": "https://rpc.ssquad.games" + } ], "13308": [ - "https://rpc.creditsmartchain.com" + { + "url": "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" + { + "url": "https://build.onbeam.com/rpc/testnet" + }, + { + "url": "wss://build.onbeam.com/ws/testnet" + }, + { + "url": "https://subnets.avax.network/beam/testnet/rpc" + }, + { + "url": "wss://subnets.avax.network/beam/testnet/ws" + } ], "13371": [ - "https://rpc.immutable.com", - "https://immutable-zkevm.drpc.org", - "wss://immutable-zkevm.drpc.org" + { + "url": "https://rpc.immutable.com" + }, + { + "url": "https://immutable-zkevm.drpc.org" + }, + { + "url": "wss://immutable-zkevm.drpc.org" + } ], "13381": [ - "https://rpc.phoenixplorer.com" + { + "url": "https://rpc.phoenixplorer.com" + } ], "13396": [ - "https://subnets.avax.network/masanetwork/mainnet/rpc" + { + "url": "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" + { + "url": "https://rpc.testnet.immutable.com" + }, + { + "url": "https://immutable-zkevm-testnet.drpc.org" + }, + { + "url": "wss://immutable-zkevm-testnet.drpc.org" + } ], "13505": [ - "https://rpc-sepolia.gravity.xyz" + { + "url": "https://rpc-sepolia.gravity.xyz" + } ], "13600": [ - "https://mainnet-rpc.qbitscan.com" + { + "url": "https://mainnet-rpc.qbitscan.com" + } ], "13812": [ - "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" + { + "url": "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" + } ], "14000": [ - "https://www.3sps.net" + { + "url": "https://www.3sps.net" + } ], "14324": [ - "https://testnet-rpc.evolveblockchain.io" + { + "url": "https://testnet-rpc.evolveblockchain.io" + } ], "14333": [ - "https://test-rpc.vitruveo.xyz" + { + "url": "https://test-rpc.vitruveo.xyz" + } ], "14801": [ - "http://rpc.satori.vana.org" + { + "url": "http://rpc.satori.vana.org" + } ], "14853": [ - "https://explorer-rpc-http.testnet5.stages.humanode.io" + { + "url": "https://explorer-rpc-http.testnet5.stages.humanode.io" + } ], "15003": [ - "https://rpc.dev.immutable.com" + { + "url": "https://rpc.dev.immutable.com" + } ], "15257": [ - "https://testnet-rpc.poodl.org" + { + "url": "https://testnet-rpc.poodl.org" + } ], "15259": [ - "https://rpc.poodl.org" + { + "url": "https://rpc.poodl.org" + } ], "15551": [ - "https://api.mainnetloop.com" + { + "url": "https://api.mainnetloop.com", + "tracking": "limited", + "trackingDetails": "Loop Network follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. https://www.getloop.network/privacypolicy" + } ], "15555": [ - "https://api.testnet-dev.trust.one" + { + "url": "https://api.testnet-dev.trust.one" + } ], "15557": [ - "https://api.testnet.evm.eosnetwork.com" + { + "url": "https://api.testnet.evm.eosnetwork.com", + "tracking": "yes", + "trackingDetails": "We collect information about your device and internet connection, including the device’s unique device identifier, IP address, operating system, and browser type, mobile network information" + } ], "16000": [ - "https://mainnet.metadot.network" + { + "url": "https://mainnet.metadot.network" + } ], "16001": [ - "https://testnet.metadot.network" + { + "url": "https://testnet.metadot.network" + } ], "16116": [ - "https://rpc.defi-verse.org" + { + "url": "https://rpc.defi-verse.org" + } ], "16507": [ - "https://rpc.genesys.network" + { + "url": "https://rpc.genesys.network" + } ], "16688": [ - "https://evmrpc.nyancat.irisnet.org" + { + "url": "https://evmrpc.nyancat.irisnet.org" + } ], "16718": [ - "https://network.ambrosus.io" + { + "url": "https://network.ambrosus.io" + } ], "16888": [ - "https://testnet-rpc.ivarex.com" + { + "url": "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" + { + "url": "https://ethereum-holesky-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://etherem-holesky-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://1rpc.io/holesky", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://ethereum-holesky.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://holesky-rpc.nocturnode.tech", + "tracking": "none", + "trackingDetails": "As a fundamental practice, we do not collect, store, or process any personal information from our users. This non-collection policy ensures absolute data security and privacy for our users.https://nocturnode.tech/privacy" + }, + { + "url": "https://rpc.holesky.ethpandaops.io" + }, + { + "url": "wss://ethereum-holesky-rpc.publicnode.com" + }, + { + "url": "https://holesky.drpc.org" + }, + { + "url": "wss://holesky.drpc.org" + }, + { + "url": "https://rpc-holesky.rockx.com" + } ], "17069": [ - "https://rpc.garnetchain.com", - "wss://rpc.garnetchain.com" + { + "url": "https://rpc.garnetchain.com" + }, + { + "url": "wss://rpc.garnetchain.com" + } ], "17117": [ - "https://rpc-testnet.defi-verse.org" + { + "url": "https://rpc-testnet.defi-verse.org" + } ], "17171": [ - "https://mainnet-rpc.oneg8.network" + { + "url": "https://mainnet-rpc.oneg8.network" + } ], "17172": [ - "https://subnets.avax.network/eclipse/testnet/rpc" + { + "url": "https://subnets.avax.network/eclipse/testnet/rpc" + } ], "17180": [ - "https://palette-opennet.com:22000" + { + "url": "https://palette-opennet.com:22000" + } ], "17217": [ - "https://api.kon-wallet.com" + { + "url": "https://api.kon-wallet.com" + } ], "17777": [ - "https://api.evm.eosnetwork.com" + { + "url": "https://api.evm.eosnetwork.com", + "tracking": "yes", + "trackingDetails": "We collect information about your device and internet connection, including the device’s unique device identifier, IP address, operating system, and browser type, mobile network information" + } ], "18000": [ - "https://rpc.fod.games" + { + "url": "https://rpc.fod.games" + } ], "18122": [ - "https://beefledgerwallet.com:8544" + { + "url": "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" + { + "url": "https://mainnet-rpc.memescan.io" + }, + { + "url": "https://mainnet-rpc2.memescan.io" + }, + { + "url": "https://mainnet-rpc3.memescan.io" + }, + { + "url": "https://mainnet-rpc4.memescan.io" + } ], "18181": [ - "https://testnet-rpc.oneg8.network" + { + "url": "https://testnet-rpc.oneg8.network" + } ], "18233": [ - "https://rpc.unreal-orbit.gelato.digital", - "wss://ws.unreal-orbit.gelato.digital" + { + "url": "https://rpc.unreal-orbit.gelato.digital" + }, + { + "url": "wss://ws.unreal-orbit.gelato.digital" + } ], "18686": [ - "https://rpc.mxc.com" + { + "url": "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" + { + "url": "https://titan-json-rpc.titanlab.io" + }, + { + "url": "https://titan-json-rpc-tokyo.titanlab.io" + }, + { + "url": "https://titan-json-rpc-seoul.titanlab.io" + }, + { + "url": "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" + { + "url": "https://titan-testnet-json-rpc.titanlab.io" + }, + { + "url": "https://titan-testnet-json-rpc-1.titanlab.io" + }, + { + "url": "https://titan-testnet-json-rpc-2.titanlab.io" + } ], "19011": [ - "https://rpc.mainnet.oasys.homeverse.games" + { + "url": "https://rpc.mainnet.oasys.homeverse.games" + } ], "19224": [ - "https://rpc.decentraconnect.io" + { + "url": "https://rpc.decentraconnect.io" + } ], "19527": [ - "https://magnet-rpc.magport.io" + { + "url": "https://magnet-rpc.magport.io" + } ], "19600": [ - "https://lbry.nl/rpc" + { + "url": "https://lbry.nl/rpc" + } ], "19845": [ - "https://seed.btcix.org/rpc" + { + "url": "https://seed.btcix.org/rpc" + } ], "20001": [ - "https://mainnet-http-rpc.camelark.com" + { + "url": "https://mainnet-http-rpc.camelark.com" + } ], "20041": [ - "https://nizascan.io/rpc" + { + "url": "https://nizascan.io/rpc" + } ], "20073": [ - "https://testnet.nizascan.io/rpc" + { + "url": "https://testnet.nizascan.io/rpc" + } ], "20729": [ - "https://testnet-rpc.callisto.network" + { + "url": "https://testnet-rpc.callisto.network" + } ], "20736": [ - "https://rpc-chain.p12.games" + { + "url": "https://rpc-chain.p12.games" + } ], "20765": [ - "https://subnets.avax.network/jono11/testnet/rpc" + { + "url": "https://subnets.avax.network/jono11/testnet/rpc" + } ], "21004": [ - "https://rpc.c4ei.net" + { + "url": "https://rpc.c4ei.net" + } ], "21133": [ - "https://rpc.c4ex.net" + { + "url": "https://rpc.c4ex.net" + } ], "21223": [ - "https://rpc.dcpay.io" + { + "url": "https://rpc.dcpay.io" + } ], "21224": [ - "https://testnet-rpc.dcpay.io" + { + "url": "https://testnet-rpc.dcpay.io" + } ], "21337": [ - "https://cennznet.unfrastructure.io/public" + { + "url": "https://cennznet.unfrastructure.io/public" + } ], "21816": [ - "https://seed.omlira.com", - "https://seed.omchain.io" + { + "url": "https://seed.omlira.com" + }, + { + "url": "https://seed.omchain.io" + } ], "21912": [ - "http://rpc-mainnet.nftruth.io:8545", - "ws://rpc-mainnet.nftruth.io:8645" + { + "url": "http://rpc-mainnet.nftruth.io:8545" + }, + { + "url": "ws://rpc-mainnet.nftruth.io:8645" + } ], "22023": [ - "https://taycan-rpc.hupayx.io:8545" + { + "url": "https://taycan-rpc.hupayx.io:8545" + } ], "22040": [ - "https://network.ambrosus-test.io" + { + "url": "https://network.ambrosus-test.io" + } ], "22222": [ - "https://api.nautilus.nautchain.xyz" + { + "url": "https://api.nautilus.nautchain.xyz" + } ], "22324": [ - "https://testnet-rpc.goldxchain.io" + { + "url": "https://testnet-rpc.goldxchain.io" + } ], "22776": [ - "https://rpc.maplabs.io" + { + "url": "https://rpc.maplabs.io" + } ], "23006": [ - "https://testnet-rpc.antofy.io" + { + "url": "https://testnet-rpc.antofy.io" + } ], "23118": [ - "https://testrpc.opside.network" + { + "url": "https://testrpc.opside.network" + } ], "23294": [ - "https://1rpc.io/oasis/sapphire", - "https://sapphire.oasis.io", - "wss://sapphire.oasis.io/ws" + { + "url": "https://1rpc.io/oasis/sapphire", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://sapphire.oasis.io" + }, + { + "url": "wss://sapphire.oasis.io/ws" + } ], "23295": [ - "https://testnet.sapphire.oasis.io", - "wss://testnet.sapphire.oasis.io/ws" + { + "url": "https://testnet.sapphire.oasis.io" + }, + { + "url": "wss://testnet.sapphire.oasis.io/ws" + } ], "23451": [ - "https://rpc.dreyerx.com" + { + "url": "https://rpc.dreyerx.com" + } ], "23452": [ - "https://testnet-rpc.dreyerx.com" + { + "url": "https://testnet-rpc.dreyerx.com" + } ], "23888": [ - "http://testnet-rpc.blastblockchain.com" + { + "url": "http://testnet-rpc.blastblockchain.com" + } ], "24734": [ - "https://node1.mintme.com" + { + "url": "https://node1.mintme.com" + } ], "25186": [ - "https://mainnet.liquidlayer.network" + { + "url": "https://mainnet.liquidlayer.network" + } ], "25839": [ - "https://testnet-rpc.alvey.io" + { + "url": "https://testnet-rpc.alvey.io" + } ], "25888": [ - "https://www.hammerchain.io/rpc" + { + "url": "https://www.hammerchain.io/rpc" + } ], "25925": [ - "https://rpc-testnet.bitkubchain.io", - "wss://wss-testnet.bitkubchain.io" + { + "url": "https://rpc-testnet.bitkubchain.io" + }, + { + "url": "wss://wss-testnet.bitkubchain.io" + } ], "26026": [ - "http://testnet.dev.svcs.ferrumnetwork.io:9933" + { + "url": "http://testnet.dev.svcs.ferrumnetwork.io:9933" + } ], "26600": [ - "https://mainnet-rpc.hertzscan.com" + { + "url": "https://mainnet-rpc.hertzscan.com" + } ], "26863": [ - "https://rpc1.oasischain.io", - "https://rpc2.oasischain.io", - "https://rpc3.oasischain.io" + { + "url": "https://rpc1.oasischain.io" + }, + { + "url": "https://rpc2.oasischain.io" + }, + { + "url": "https://rpc3.oasischain.io" + } ], "27181": [ - "https://rpc.klaosnova.laosfoundation.io", - "wss://rpc.klaosnova.laosfoundation.io" + { + "url": "https://rpc.klaosnova.laosfoundation.io" + }, + { + "url": "wss://rpc.klaosnova.laosfoundation.io" + } ], "27483": [ - "https://sepolia-rpc.nanon.network" + { + "url": "https://sepolia-rpc.nanon.network" + } ], "27827": [ - "https://subnets.avax.network/zeroonemai/mainnet/rpc" + { + "url": "https://subnets.avax.network/zeroonemai/mainnet/rpc" + } ], "28516": [ - "https://rpc-sepolia.vizing.com" + { + "url": "https://rpc-sepolia.vizing.com" + } ], "28518": [ - "https://rpc.vizing.com" + { + "url": "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" + { + "url": "https://alpha-1-replica-0.bedrock-goerli.optimism.io" + }, + { + "url": "https://alpha-1-replica-1.bedrock-goerli.optimism.io" + }, + { + "url": "https://alpha-1-replica-2.bedrock-goerli.optimism.io" + }, + { + "url": "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" + { + "url": "https://sepolia.boba.network" + }, + { + "url": "https://boba-sepolia.gateway.tenderly.co" + }, + { + "url": "https://gateway.tenderly.co/public/boba-sepolia" + }, + { + "url": "wss://boba-sepolia.gateway.tenderly.co" + }, + { + "url": "wss://gateway.tenderly.co/public/boba-sepolia" + } ], "29112": [ - "https://testnet-rpc.hychain.com/http" + { + "url": "https://testnet-rpc.hychain.com/http" + } ], "29536": [ - "https://testnet-rpc.kaichain.net" + { + "url": "https://testnet-rpc.kaichain.net" + } ], "29548": [ - "https://rpc.oasys.mycryptoheroes.net" + { + "url": "https://rpc.oasys.mycryptoheroes.net" + } ], "30067": [ - "https://testnet-rpc0.piecenetwork.com" + { + "url": "https://testnet-rpc0.piecenetwork.com" + } ], "30088": [ - "https://blockchain.miyou.io", - "https://blockchain.miyoulab.com" + { + "url": "https://blockchain.miyou.io" + }, + { + "url": "https://blockchain.miyoulab.com" + } ], "30103": [ - "https://cerium-rpc.canxium.net" + { + "url": "https://cerium-rpc.canxium.net" + } ], "31102": [ - "rpcWorking:false", - "https://api.esn.gonspool.com" + { + "url": "rpcWorking:false" + }, + { + "url": "https://api.esn.gonspool.com" + } ], "31223": [ - "https://mainnet-rpc.cloudtx.finance" + { + "url": "https://mainnet-rpc.cloudtx.finance" + } ], "31224": [ - "https://testnet-rpc.cloudtx.finance" + { + "url": "https://testnet-rpc.cloudtx.finance" + } ], "31337": [ - "https://testnet-rpc.gochain.io" + { + "url": "https://testnet-rpc.gochain.io" + } ], "31414": [ - "https://testnet-rpc.evokescan.org" + { + "url": "https://testnet-rpc.evokescan.org" + } ], "31753": [ - "https://rpc.xchainscan.com" + { + "url": "https://rpc.xchainscan.com" + } ], "31754": [ - "https://rpc.xchaintest.net" + { + "url": "https://rpc.xchaintest.net" + } ], "32001": [ - "https://rpc-holesky.w3gamez.network" + { + "url": "https://rpc-holesky.w3gamez.network" + } ], "32382": [ - "https://node.sanr.app" + { + "url": "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" + { + "url": "https://rpc.icecreamswap.com" + }, + { + "url": "https://nodes.vefinetwork.org/bitgert" + }, + { + "url": "https://flux-rpc.brisescan.com" + }, + { + "url": "https://flux-rpc1.brisescan.com" + }, + { + "url": "https://flux-rpc2.brisescan.com" + }, + { + "url": "https://rpc-1.chainrpc.com" + }, + { + "url": "https://rpc-2.chainrpc.com" + }, + { + "url": "https://node1.serverrpc.com" + }, + { + "url": "https://node2.serverrpc.com" + }, + { + "url": "https://mainnet-rpc.brisescan.com" + }, + { + "url": "https://chainrpc.com" + }, + { + "url": "https://serverrpc.com" + } ], "32659": [ - "https://mainnet.fusionnetwork.io", - "wss://mainnet.fusionnetwork.io" + { + "url": "https://mainnet.fusionnetwork.io" + }, + { + "url": "wss://mainnet.fusionnetwork.io" + } ], "32769": [ - "https://api.zilliqa.com" + { + "url": "https://api.zilliqa.com" + } ], "32990": [ - "https://zilliqa-isolated-server.zilliqa.com" + { + "url": "https://zilliqa-isolated-server.zilliqa.com" + } ], "33033": [ - "https://json-rpc.entangle.fi" + { + "url": "https://json-rpc.entangle.fi" + } ], "33101": [ - "https://dev-api.zilliqa.com" + { + "url": "https://dev-api.zilliqa.com" + } + ], + "33103": [ + { + "url": "https://api.zq2-prototestnet.zilliqa.com" + } ], "33133": [ - "https://evm-testnet.entangle.fi" + { + "url": "https://evm-testnet.entangle.fi" + } ], "33210": [ - "https://subnets.avax.network/cloudverse/mainnet/rpc" + { + "url": "https://subnets.avax.network/cloudverse/mainnet/rpc" + } ], "33333": [ - "https://rpc.avescoin.io" + { + "url": "https://rpc.avescoin.io" + } ], "33385": [ - "https://api.devnet.zilliqa.com" + { + "url": "https://api.devnet.zilliqa.com" + } ], "33469": [ - "https://api.zq2-devnet.zilliqa.com" + { + "url": "https://api.zq2-devnet.zilliqa.com" + } ], "34443": [ - "https://1rpc.io/mode", - "https://mainnet.mode.network", - "https://mode.drpc.org", - "wss://mode.drpc.org" + { + "url": "https://1rpc.io/mode", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://mainnet.mode.network" + }, + { + "url": "https://mode.drpc.org" + }, + { + "url": "wss://mode.drpc.org" + } ], "35011": [ - "https://rpc.j2o.io" + { + "url": "https://rpc.j2o.io", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + } ], "35441": [ - "https://rpc.q.org" + { + "url": "https://rpc.q.org", + "tracking": "limited", + "trackingDetails": "Our system records data and information about the computer used by the user automatically and with every visit on our website. The following data are collected: Information regarding the type and version of internet browser used to access the website, Operating system, IP address, Date and time of each access, Web page from which the user was redirected to our page, Web pages and resources that were visited, The data mentioned above are saved for a maximum time period of 30 days.https://q.org/privacy-policy" + } ], "35443": [ - "https://rpc.qtestnet.org" + { + "url": "https://rpc.qtestnet.org" + } ], "38400": [ - "https://cm.rangersprotocol.com/api/jsonrpc" + { + "url": "https://cm.rangersprotocol.com/api/jsonrpc" + } ], "38401": [ - "https://robin-cm.rangersprotocol.com/api/jsonrpc" + { + "url": "https://robin-cm.rangersprotocol.com/api/jsonrpc" + } ], "39656": [ - "https://mainnet-rpc.prmscan.org" + { + "url": "https://mainnet-rpc.prmscan.org" + } ], "39797": [ - "https://nodeapi.energi.network", - "https://explorer.energi.network/api/eth-rpc" + { + "url": "https://nodeapi.energi.network" + }, + { + "url": "https://explorer.energi.network/api/eth-rpc" + } ], "39815": [ - "https://mainnet.oho.ai", - "https://mainnet-rpc.ohoscan.com", - "https://mainnet-rpc2.ohoscan.com" + { + "url": "https://mainnet.oho.ai" + }, + { + "url": "https://mainnet-rpc.ohoscan.com" + }, + { + "url": "https://mainnet-rpc2.ohoscan.com" + } ], "41500": [ - "https://connect.opulent-x.com" + { + "url": "https://connect.opulent-x.com" + } ], "42069": [ - "rpcWorking:false" + { + "url": "rpcWorking:false" + } ], "42072": [ - "https://testnet-rpc.agentlayer.xyz" + { + "url": "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" + { + "url": "https://arbitrum.llamarpc.com", + "tracking": "none", + "trackingDetails": "LlamaNodes is open-source and does not track or store user information that transits through our RPCs (location, IP, wallet, etc). To learn more, have a look at the public Privacy Policy in our docs: https://llamanodes.notion.site/Privacy-Practices-f20fd8fdd02a469d9d4f42a5989bb936", + "isOpenSource": true + }, + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://rpc.ankr.com/arbitrum", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://1rpc.io/arb", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://arb-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://arb-mainnet.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://arbitrum.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://arbitrum-one.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://endpoints.omniatech.io/v1/arbitrum/one/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://arb-mainnet-public.unifra.io", + "tracking": "limited", + "trackingDetails": "Regarding the RPC(remote procedure call) data, we do not collect request data or request origin. We temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days. Only the amounts of RPC requests of users are recorded for accounting and billing purposes within longer time. https://unifra.io/" + }, + { + "url": "https://rpc.arb1.arbitrum.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://arbitrum-one-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://arbitrum-one-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://arbitrum.meowrpc.com", + "tracking": "none", + "trackingDetails": "With the exclusion of data that will be openly visible and available on the blockchain, MEOWRPC does not track or store any kind of user information (such as location, IP address, etc.) that passes through our RPC. For further details regarding our privacy practices, we encourage you to refer to our Privacy Policy. https://privacy.meowrpc.com" + }, + { + "url": "https://api.zan.top/node/v1/arb/one/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://arbitrum.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://rpc.tornadoeth.cash/arbitrum", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + }, + { + "url": "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}" + }, + { + "url": "https://arbitrum-one.publicnode.com" + }, + { + "url": "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" + { + "url": "https://nova.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-nova.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://arbitrum-nova.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://arbitrum-nova-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://arbitrum-nova-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://arbitrum-nova.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://arbitrum-nova.publicnode.com" + }, + { + "url": "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" + { + "url": "https://forno.celo.org" + }, + { + "url": "https://rpc.ankr.com/celo", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://1rpc.io/celo", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://celo.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "wss://forno.celo.org/ws" + } ], "42261": [ - "https://testnet.emerald.oasis.io", - "wss://testnet.emerald.oasis.io/ws" + { + "url": "https://testnet.emerald.oasis.io" + }, + { + "url": "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" + { + "url": "https://emerald.oasis.dev" + }, + { + "url": "https://1rpc.io/oasis/emerald", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://emerald.oasis.io" + }, + { + "url": "wss://emerald.oasis.io/ws" + } ], "42355": [ - "https://mainnet-rpc.goldxchain.io" + { + "url": "https://mainnet-rpc.goldxchain.io" + } ], "42766": [ - "https://rpc.zkfair.io" + { + "url": "https://rpc.zkfair.io" + } ], "42793": [ - "https://node.mainnet.etherlink.com" + { + "url": "https://node.mainnet.etherlink.com" + } ], "42801": [ - "https://rpc.testnet.verse.gesoten.com" + { + "url": "https://rpc.testnet.verse.gesoten.com" + } ], "42888": [ - "http://35.215.120.180:8545" + { + "url": "http://35.215.120.180:8545" + } ], "43110": [ - "rpcWorking:false", - "https://ava.network:21015/ext/evm/rpc" + { + "url": "rpcWorking:false" + }, + { + "url": "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" + { + "url": "https://api.avax-test.network/ext/bc/C/rpc" + }, + { + "url": "https://endpoints.omniatech.io/v1/avax/fuji/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://rpc.ankr.com/avalanche_fuji", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://rpc.ankr.com/avalanche_fuji-c", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://avalanchetestapi.terminet.io/ext/bc/C/rpc" + }, + { + "url": "https://ava-testnet.public.blastapi.io/ext/bc/C/rpc", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://avalanche-fuji-c-chain-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://avalanche-fuji-c-chain-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://avalanche-fuji.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://api.zan.top/node/v1/avax/fuji/public/ext/bc/C/rpc", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + } ], "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" + { + "url": "https://api.avax.network/ext/bc/C/rpc" + }, + { + "url": "https://avalanche.public-rpc.com" + }, + { + "url": "https://rpc.ankr.com/avalanche", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://blastapi.io/public-api/avalanche", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://ava-mainnet.public.blastapi.io/ext/bc/C/rpc", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://avalancheapi.terminet.io/ext/bc/C/rpc" + }, + { + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://avalanche-c-chain-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://1rpc.io/avax/c", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://avalanche.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://avax-pokt.nodies.app/ext/bc/C/rpc", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://avalanche.api.onfinality.io/public/ext/bc/C/rpc", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://endpoints.omniatech.io/v1/avax/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://avax.meowrpc.com", + "tracking": "none", + "trackingDetails": "With the exclusion of data that will be openly visible and available on the blockchain, MEOWRPC does not track or store any kind of user information (such as location, IP address, etc.) that passes through our RPC. For further details regarding our privacy practices, we encourage you to refer to our Privacy Policy. https://privacy.meowrpc.com" + }, + { + "url": "https://api.zan.top/node/v1/avax/mainnet/public/ext/bc/C/rpc", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://avalanche.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://rpc.tornadoeth.cash/avax", + "tracking": "none", + "trackingDetails": "TornadoRPC prioritizes user privacy and data security. We do not track or store any user information that passes through our RPC, except for data that is clearly visible on the blockchain. For detailed information about our privacy practices, see our Privacy Policy: https://rpc.tornadoeth.cash/privacy" + } ], "43851": [ - "https://testnet-rpc.zkfair.io" + { + "url": "https://testnet-rpc.zkfair.io" + } ], "44444": [ - "https://rpc-02.frenscan.io" + { + "url": "https://rpc-02.frenscan.io" + } ], "44445": [ - "https://rpcqtm.avescoin.io" + { + "url": "https://rpcqtm.avescoin.io" + } ], "44787": [ - "https://alfajores-forno.celo-testnet.org", - "wss://alfajores-forno.celo-testnet.org/ws" + { + "url": "https://alfajores-forno.celo-testnet.org" + }, + { + "url": "wss://alfajores-forno.celo-testnet.org/ws" + } ], "45000": [ - "https://rpc.autobahn.network" + { + "url": "https://rpc.autobahn.network" + } ], "45454": [ - "https://swamps.tc.l2aas.com" + { + "url": "https://swamps.tc.l2aas.com" + } ], "45510": [ - "https://rpc.deelance.com" + { + "url": "https://rpc.deelance.com" + } ], "46688": [ - "https://testnet.fusionnetwork.io", - "wss://testnet.fusionnetwork.io" + { + "url": "https://testnet.fusionnetwork.io" + }, + { + "url": "wss://testnet.fusionnetwork.io" + } ], "47805": [ - "https://rpc.rei.network", - "wss://rpc.rei.network" + { + "url": "https://rpc.rei.network" + }, + { + "url": "wss://rpc.rei.network" + } ], "48795": [ - "https://subnets.avax.network/space/testnet/rpc" + { + "url": "https://subnets.avax.network/space/testnet/rpc" + } ], "48899": [ - "https://zircuit1.p2pify.com" + { + "url": "https://zircuit1.p2pify.com" + } ], "49049": [ - "https://rpc-floripa.wireshape.org", - "https://wireshape-floripa-testnet.rpc.thirdweb.com" + { + "url": "https://rpc-floripa.wireshape.org" + }, + { + "url": "https://wireshape-floripa-testnet.rpc.thirdweb.com" + } ], "49088": [ - "https://public-01.testnet.bifrostnetwork.com/rpc", - "https://public-02.testnet.bifrostnetwork.com/rpc" + { + "url": "https://public-01.testnet.bifrostnetwork.com/rpc" + }, + { + "url": "https://public-02.testnet.bifrostnetwork.com/rpc" + } ], "49321": [ - "https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc" + { + "url": "https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc" + } ], "49797": [ - "https://nodeapi.test.energi.network" + { + "url": "https://nodeapi.test.energi.network" + } ], "50001": [ - "https://rpc.oracle.liveplex.io", - "https://rpc.oracle.liveplex.io" + { + "url": "https://rpc.oracle.liveplex.io" + }, + { + "url": "https://rpc.oracle.liveplex.io", + "tracking": "yes", + "trackingDetails": "Usage Data is collected automatically when using the Service. Usage Data may include information such as Your Device's Internet Protocol address (e.g., IP address), browser type, browser version, the pages of our Service that You visit, the time and date of Your visit, the time spent on those pages, unique device identifiers and other diagnostic data. When You access the Service by or through a mobile device, we may collect certain information automatically, including, but not limited to, the type of mobile device You use, Your mobile device unique ID, the IP address of Your mobile device, Your mobile operating system, the type of mobile Internet browser You use, unique device identifiers and other diagnostic data. We may also collect information that Your browser sends whenever You visit our Service or when You access the Service by or through a mobile device. https://www.liveplex.io/privacypolicy.html" + } ], "50005": [ - "https://rpc.yooldo-verse.xyz" + { + "url": "https://rpc.yooldo-verse.xyz" + } ], "50006": [ - "https://rpc.testnet.yooldo-verse.xyz" + { + "url": "https://rpc.testnet.yooldo-verse.xyz" + } ], "50021": [ - "https://testnet.gton.network" + { + "url": "https://testnet.gton.network" + } ], "51178": [ - "https://alpha-us-http-geth.lumoz.org", - "https://alpha-hk-http-geth.lumoz.org" + { + "url": "https://alpha-us-http-geth.lumoz.org" + }, + { + "url": "https://alpha-hk-http-geth.lumoz.org" + } ], "51712": [ - "https://mainnet-rpc.sardisnetwork.com" + { + "url": "https://mainnet-rpc.sardisnetwork.com" + } ], "52014": [ - "https://rpc.electroneum.com" + { + "url": "https://rpc.electroneum.com" + } ], "53277": [ - "https://rpc.doid.tech" + { + "url": "https://rpc.doid.tech" + } ], "53302": [ - "https://sepolia.superseed.xyz", - "wss://sepolia.superseed.xyz" + { + "url": "https://sepolia.superseed.xyz" + }, + { + "url": "wss://sepolia.superseed.xyz" + } ], "53457": [ - "https://dodochain-testnet.alt.technology", - "wss://dodochain-testnet.alt.technology/ws" + { + "url": "https://dodochain-testnet.alt.technology" + }, + { + "url": "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" + { + "url": "https://avax-pokt.nodies.app/ext/bc/q2aTwKuyzgs8pynF7UXBZCU7DejbZbZ6EUyHr3JQzYgwNPUPi/rpc", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://dfkchain.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc" + } ], "54211": [ - "https://rpc.eth.testedge2.haqq.network" + { + "url": "https://rpc.eth.testedge2.haqq.network" + } ], "54321": [ - "http://testnet.toronet.org/rpc" + { + "url": "http://testnet.toronet.org/rpc" + } ], "54555": [ - "https://rpc-test.photonchain.io" + { + "url": "https://rpc-test.photonchain.io" + } ], "55004": [ - "https://rpc.titan.tokamak.network", - "wss://rpc.titan.tokamak.network" + { + "url": "https://rpc.titan.tokamak.network" + }, + { + "url": "wss://rpc.titan.tokamak.network" + } ], "55555": [ - "https://rei-rpc.moonrhythm.io" + { + "url": "https://rei-rpc.moonrhythm.io" + } ], "55556": [ - "https://rei-testnet-rpc.moonrhythm.io" + { + "url": "https://rei-testnet-rpc.moonrhythm.io" + } ], "56026": [ - "https://nrpc.lambda.im" + { + "url": "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" + { + "url": "https://bnb.boba.network" + }, + { + "url": "https://boba-bnb.gateway.tenderly.co" + }, + { + "url": "https://gateway.tenderly.co/public/boba-bnb" + }, + { + "url": "https://replica.bnb.boba.network" + }, + { + "url": "wss://boba-bnb.gateway.tenderly.co" + }, + { + "url": "wss://gateway.tenderly.co/public/boba-bnb" + } ], "56400": [ - "https://subnets.avax.network/testnetzer/testnet/rpc" + { + "url": "https://subnets.avax.network/testnetzer/testnet/rpc" + } ], "56789": [ - "https://nova.velo.org" + { + "url": "https://nova.velo.org" + } ], "56797": [ - "https://rpc.testnet.doid.tech" + { + "url": "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" + { + "url": "https://rpc-tanenbaum.rollux.com" + }, + { + "url": "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}" + }, + { + "url": "wss://rpc-tanenbaum.rollux.com/wss" + }, + { + "url": "https://rollux.rpc.tanenbaum.io" + }, + { + "url": "wss://rollux.rpc.tanenbaum.io/wss" + } ], "57451": [ - "https://mainnet-rpc.coinsec.network" + { + "url": "https://mainnet-rpc.coinsec.network" + } ], "58008": [ - "https://sepolia.publicgoods.network" + { + "url": "https://sepolia.publicgoods.network" + } ], "59140": [ - "https://linea-goerli.blockpi.network/v1/rpc/public", - "https://rpc.goerli.linea.build", - "wss://rpc.goerli.linea.build" + { + "url": "https://linea-goerli.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://rpc.goerli.linea.build" + }, + { + "url": "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}" + { + "url": "https://rpc.sepolia.linea.build" + }, + { + "url": "wss://rpc.sepolia.linea.build" + }, + { + "url": "https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}" + }, + { + "url": "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" + { + "url": "https://linea.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://1rpc.io/linea", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://linea.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://linea.decubate.com", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata should remain private to users and other parties should not be able to access or collect it. Decubate doesn't store any data related to the user using the RPC. https://docs.decubate.com/rpc-privacy/" + }, + { + "url": "https://rpc.linea.build" + }, + { + "url": "wss://rpc.linea.build" + } ], "59971": [ - "https://mainnet.genesyscode.io" + { + "url": "https://mainnet.genesyscode.io" + } ], "60000": [ - "https://test.thinkiumrpc.net" + { + "url": "https://test.thinkiumrpc.net" + } ], "60001": [ - "https://test1.thinkiumrpc.net" + { + "url": "https://test1.thinkiumrpc.net" + } ], "60002": [ - "https://test2.thinkiumrpc.net" + { + "url": "https://test2.thinkiumrpc.net" + } ], "60103": [ - "https://test103.thinkiumrpc.net" + { + "url": "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" + { + "url": "https://rpc.gobob.xyz" + }, + { + "url": "wss://rpc.gobob.xyz" + }, + { + "url": "https://bob-mainnet.public.blastapi.io" + }, + { + "url": "wss://bob-mainnet.public.blastapi.io" + } ], "61406": [ - "https://mainnet-rpc.kaichain.net" + { + "url": "https://mainnet-rpc.kaichain.net" + } ], "61800": [ - "https://aium-rpc-dev.viacube.com" + { + "url": "https://aium-rpc-dev.viacube.com" + } ], "61803": [ - "https://eticamainnet.eticascan.org", - "https://eticamainnet.eticaprotocol.org" + { + "url": "https://eticamainnet.eticascan.org" + }, + { + "url": "https://eticamainnet.eticaprotocol.org" + } ], "61916": [ - "https://sgrpc.doken.dev", - "https://nyrpc.doken.dev", - "https://ukrpc.doken.dev" + { + "url": "https://sgrpc.doken.dev" + }, + { + "url": "https://nyrpc.doken.dev" + }, + { + "url": "https://ukrpc.doken.dev" + } ], "62049": [ - "https://rpc-testnet.optopia.ai" + { + "url": "https://rpc-testnet.optopia.ai" + } ], "62050": [ - "https://rpc-mainnet.optopia.ai", - "https://rpc-mainnet-2.optopia.ai" + { + "url": "https://rpc-mainnet.optopia.ai" + }, + { + "url": "https://rpc-mainnet-2.optopia.ai" + } ], "62298": [ - "https://rpc.devnet.citrea.xyz" + { + "url": "https://rpc.devnet.citrea.xyz" + } ], "62320": [ - "https://baklava-forno.celo-testnet.org" + { + "url": "https://baklava-forno.celo-testnet.org" + } ], "62621": [ - "https://rpc.mtv.ac", - "https://rpc-eu.mtv.ac" + { + "url": "https://rpc.mtv.ac" + }, + { + "url": "https://rpc-eu.mtv.ac" + } ], "62831": [ - "https://subnets.avax.network/plyr/testnet/rpc" + { + "url": "https://subnets.avax.network/plyr/testnet/rpc" + } ], "63000": [ - "https://rpc.ecredits.com" + { + "url": "https://rpc.ecredits.com" + } ], "63001": [ - "https://rpc.tst.ecredits.com" + { + "url": "https://rpc.tst.ecredits.com" + } ], "65450": [ - "https://mainnet-rpc.scolcoin.com" + { + "url": "https://mainnet-rpc.scolcoin.com" + } ], "66988": [ - "https://rpc.test.janusnetwork.io" + { + "url": "https://rpc.test.janusnetwork.io" + } ], "67588": [ - "http://testnet.cosmicchain.site:3344" + { + "url": "http://testnet.cosmicchain.site:3344" + } ], "68770": [ - "https://rpc.dm2verse.dmm.com" + { + "url": "https://rpc.dm2verse.dmm.com" + } ], "69420": [ - "https://rpc.condrieu.ethdevops.io:8545" + { + "url": "https://rpc.condrieu.ethdevops.io:8545" + } ], "70000": [ - "https://proxy.thinkiumrpc.net" + { + "url": "https://proxy.thinkiumrpc.net" + } ], "70001": [ - "https://proxy1.thinkiumrpc.net" + { + "url": "https://proxy1.thinkiumrpc.net" + } ], "70002": [ - "https://proxy2.thinkiumrpc.net" + { + "url": "https://proxy2.thinkiumrpc.net" + } ], "70103": [ - "https://proxy103.thinkiumrpc.net" + { + "url": "https://proxy103.thinkiumrpc.net" + } ], "70700": [ - "https://rpc.apex.proofofplay.com" + { + "url": "https://rpc.apex.proofofplay.com" + } ], "71111": [ - "https://rpc-mainnet.guapcoinx.com", - "https://rpc-mainnet-1.guapcoinx.com", - "https://rpc-mainnet-2.guapcoinx.com" + { + "url": "https://rpc-mainnet.guapcoinx.com" + }, + { + "url": "https://rpc-mainnet-1.guapcoinx.com" + }, + { + "url": "https://rpc-mainnet-2.guapcoinx.com" + } ], "71393": [ - "https://godwoken-testnet-web3-rpc.ckbapp.dev", - "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" + { + "url": "https://godwoken-testnet-web3-rpc.ckbapp.dev" + }, + { + "url": "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" + } ], "71401": [ - "https://godwoken-testnet-v1.ckbapp.dev", - "https://v1.testnet.godwoken.io/rpc" + { + "url": "https://godwoken-testnet-v1.ckbapp.dev" + }, + { + "url": "https://v1.testnet.godwoken.io/rpc" + } ], "71402": [ - "https://v1.mainnet.godwoken.io/rpc" + { + "url": "https://v1.mainnet.godwoken.io/rpc" + } ], "72778": [ - "https://www.ankara-cagacrypto.com", - "wss://wss.ankara-cagacrypto.com" + { + "url": "https://www.ankara-cagacrypto.com" + }, + { + "url": "wss://wss.ankara-cagacrypto.com" + } ], "72992": [ - "https://mainnet-rpc.grokchain.dev" + { + "url": "https://mainnet-rpc.grokchain.dev" + } ], "73114": [ - "https://rpc1-testnet.icbnetwork.info", - "https://rpc2-testnet.icbnetwork.info" + { + "url": "https://rpc1-testnet.icbnetwork.info" + }, + { + "url": "https://rpc2-testnet.icbnetwork.info" + } ], "73115": [ - "https://rpc1-mainnet.icbnetwork.info", - "https://rpc2-mainnet.icbnetwork.info" + { + "url": "https://rpc1-mainnet.icbnetwork.info" + }, + { + "url": "https://rpc2-mainnet.icbnetwork.info" + } ], "73799": [ - "https://volta-rpc.energyweb.org", - "wss://volta-rpc.energyweb.org/ws" + { + "url": "https://volta-rpc.energyweb.org" + }, + { + "url": "wss://volta-rpc.energyweb.org/ws" + } ], "73927": [ - "https://geth.mvm.dev" + { + "url": "https://geth.mvm.dev" + } ], "75512": [ - "https://rpc.geekout-pte.com" + { + "url": "https://rpc.geekout-pte.com" + } ], "75513": [ - "https://rpc-testnet.geekout-pte.com" + { + "url": "https://rpc-testnet.geekout-pte.com" + } ], "77001": [ - "https://public-node.api.boraportal.com/bora/mainnet", - "https://public-node.api.boraportal.io/bora/mainnet" + { + "url": "https://public-node.api.boraportal.com/bora/mainnet" + }, + { + "url": "https://public-node.api.boraportal.io/bora/mainnet" + } ], "77238": [ - "https://testnet-rpc.foundryscan.org" + { + "url": "https://testnet-rpc.foundryscan.org" + } ], "77612": [ - "https://mainnet-rpc.vention.network" + { + "url": "https://mainnet-rpc.vention.network" + } ], "77777": [ - "http://toronet.org/rpc" + { + "url": "http://toronet.org/rpc" + } ], "78110": [ - "https://ethnode.primusmoney.com/firenze" + { + "url": "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" + { + "url": "https://dragonfly-rpc.switch.ch" + }, + { + "url": "https://dragonfly-rpc.kore-technologies.ch" + }, + { + "url": "https://dragonfly-rpc.phoenix-systems.io" + }, + { + "url": "https://dragonfly-rpc.block-spirit.ch" + } ], "78430": [ - "https://subnets.avax.network/amplify/testnet/rpc" + { + "url": "https://subnets.avax.network/amplify/testnet/rpc" + } ], "78431": [ - "https://subnets.avax.network/bulletin/testnet/rpc" + { + "url": "https://subnets.avax.network/bulletin/testnet/rpc" + } ], "78432": [ - "https://subnets.avax.network/conduit/testnet/rpc" + { + "url": "https://subnets.avax.network/conduit/testnet/rpc" + } ], "78600": [ - "https://rpc-vanguard.vanarchain.com", - "wss://ws-vanguard.vanarchain.com" + { + "url": "https://rpc-vanguard.vanarchain.com" + }, + { + "url": "wss://ws-vanguard.vanarchain.com" + } ], "79879": [ - "https://rpc-testnet.goldsmartchain.com" + { + "url": "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" + { + "url": "https://rpc-mumbai.maticvigil.com" + }, + { + "url": "https://endpoints.omniatech.io/v1/matic/mumbai/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://rpc.ankr.com/polygon_mumbai", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://polygontestapi.terminet.io/rpc" + }, + { + "url": "https://polygon-testnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://polygon-mumbai.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://polygon-mumbai.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://polygon-mumbai-bor-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://polygon-mumbai-bor-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://polygon-mumbai-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://polygon-mumbai.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/polygon-mumbai", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://api.zan.top/node/v1/polygon/mumbai/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://polygon-mumbai.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "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" + { + "url": "https://rpc-amoy.polygon.technology" + }, + { + "url": "https://polygon-amoy-bor-rpc.publicnode.com" + }, + { + "url": "wss://polygon-amoy-bor-rpc.publicnode.com" + } ], "80084": [ - "https://bartio.rpc.berachain.com", - "https://bera-testnet.nodeinfra.com" + { + "url": "https://bartio.rpc.berachain.com" + }, + { + "url": "https://bera-testnet.nodeinfra.com" + } ], "80085": [ - "https://artio.rpc.berachain.com", - "https://rpc.ankr.com/berachain_testnet" + { + "url": "https://artio.rpc.berachain.com" + }, + { + "url": "https://rpc.ankr.com/berachain_testnet" + } ], "80096": [ - "https://hizoco.net/rpc" + { + "url": "https://hizoco.net/rpc" + } ], "81041": [ - "https://mainnet-rpc.nordekscan.com" + { + "url": "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" + { + "url": "https://rpc.blast.io" + }, + { + "url": "https://blast.din.dev/rpc" + }, + { + "url": "https://blastl2-mainnet.public.blastapi.io" + }, + { + "url": "https://blast.blockpi.network/v1/rpc/public" + }, + { + "url": "https://blast.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://rpc.ankr.com/blast", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://blast-rpc.publicnode.com" + } ], "81720": [ - "https://rpc.quantumscan.org" + { + "url": "https://rpc.quantumscan.org" + } ], "82459": [ - "https://rpc.test.smartlayer.network" + { + "url": "https://rpc.test.smartlayer.network" + } ], "83872": [ - "https://mainnet-rpc.zedscan.net" + { + "url": "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" + { + "url": "https://base-goerli.diamondswap.org/rpc", + "tracking": "limited", + "trackingDetails": "We record limited metadata from requests. This data is stored for a maximum of 90 days and is solely used for debugging, identifying suspicious activity, and generating analytics." + }, + { + "url": "https://base-goerli.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://1rpc.io/base-goerli", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://base-goerli.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/base-goerli", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://base-goerli-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://base-goerli-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://endpoints.omniatech.io/v1/base/goerli/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://goerli.base.org" + }, + { + "url": "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" + { + "url": "https://rpc.notadegen.com/base/sepolia" + }, + { + "url": "https://base-sepolia.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://sepolia.base.org" + }, + { + "url": "https://base-sepolia-rpc.publicnode.com" + }, + { + "url": "wss://base-sepolia-rpc.publicnode.com" + } ], "84886": [ - "https://mainnet.aerielab.io" + { + "url": "https://mainnet.aerielab.io" + } ], "85449": [ - "http://testnet.cybertrust.space:48501" + { + "url": "http://testnet.cybertrust.space:48501" + } ], "88002": [ - "https://api.proteus.nautchain.xyz/solana" + { + "url": "https://api.proteus.nautchain.xyz/solana" + } ], "88559": [ - "https://inoai-network.com" + { + "url": "https://inoai-network.com" + } ], "88817": [ - "https://rpc-testnet.unit0.dev" + { + "url": "https://rpc-testnet.unit0.dev" + } ], "88819": [ - "https://rpc-stagenet.unit0.dev" + { + "url": "https://rpc-stagenet.unit0.dev" + } ], "88882": [ - "https://spicy-rpc.chiliz.com" + { + "url": "https://spicy-rpc.chiliz.com" + } ], "88888": [ - "https://rpc.chiliz.com", - "https://rpc.ankr.com/chiliz", - "https://chiliz.publicnode.com" + { + "url": "https://rpc.chiliz.com" + }, + { + "url": "https://rpc.ankr.com/chiliz" + }, + { + "url": "https://chiliz.publicnode.com" + } ], "90001": [ - "https://testnet-fx-json-web3.functionx.io:8545" + { + "url": "https://testnet-fx-json-web3.functionx.io:8545" + } ], "90210": [ - "https://rpc.beverlyhills.ethdevops.io:8545" + { + "url": "https://rpc.beverlyhills.ethdevops.io:8545" + } ], "90354": [ - "https://rpc-camp-network-4xje7wy105.t.conduit.xyz" + { + "url": "https://rpc-camp-network-4xje7wy105.t.conduit.xyz" + } ], "91002": [ - "https://triton.api.nautchain.xyz" + { + "url": "https://triton.api.nautchain.xyz" + } ], "91120": [ - "https://rpc.chain.metadap.io", - "wss://rpc-ws.chain.metadap.io" + { + "url": "https://rpc.chain.metadap.io" + }, + { + "url": "wss://rpc-ws.chain.metadap.io" + } ], "91715": [ - "https://test-rpc.combonetwork.io" + { + "url": "https://test-rpc.combonetwork.io" + } ], "92001": [ - "https://evm.lambda.top" + { + "url": "https://evm.lambda.top" + } ], "93572": [ - "https://testnet.liquidlayer.network" + { + "url": "https://testnet.liquidlayer.network" + } ], "96970": [ - "https://mantis-rpc.switch.ch", - "https://mantis-rpc.kore-technologies.ch", - "https://mantis-rpc.phoenix-systems.io" + { + "url": "https://mantis-rpc.switch.ch" + }, + { + "url": "https://mantis-rpc.kore-technologies.ch" + }, + { + "url": "https://mantis-rpc.phoenix-systems.io" + } ], "97531": [ - "https://node.greenchain.app/rpc" + { + "url": "https://node.greenchain.app/rpc" + } ], "97970": [ - "https://testnet-rpc.optimusz7.com" + { + "url": "https://testnet-rpc.optimusz7.com" + } ], "98881": [ - "https://rpc.ebi.xyz" + { + "url": "https://rpc.ebi.xyz" + } ], "99099": [ - "https://testnet-rpc.eliberty.ngo" + { + "url": "https://testnet-rpc.eliberty.ngo" + } ], "99998": [ - "https://testnet.rpc.uschain.network" + { + "url": "https://testnet.rpc.uschain.network" + } ], "99999": [ - "https://rpc.uschain.network" + { + "url": "https://rpc.uschain.network" + } ], "100000": [ - "http://jrpc.mainnet.quarkchain.io:38391" + { + "url": "http://jrpc.mainnet.quarkchain.io:38391" + } ], "100001": [ - "http://eth-jrpc.mainnet.quarkchain.io:39000", - "https://mainnet-s0-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.mainnet.quarkchain.io:39000" + }, + { + "url": "https://mainnet-s0-ethapi.quarkchain.io" + } ], "100002": [ - "http://eth-jrpc.mainnet.quarkchain.io:39001", - "https://mainnet-s1-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.mainnet.quarkchain.io:39001" + }, + { + "url": "https://mainnet-s1-ethapi.quarkchain.io" + } ], "100003": [ - "http://eth-jrpc.mainnet.quarkchain.io:39002", - "https://mainnet-s2-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.mainnet.quarkchain.io:39002" + }, + { + "url": "https://mainnet-s2-ethapi.quarkchain.io" + } ], "100004": [ - "http://eth-jrpc.mainnet.quarkchain.io:39003", - "https://mainnet-s3-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.mainnet.quarkchain.io:39003" + }, + { + "url": "https://mainnet-s3-ethapi.quarkchain.io" + } ], "100005": [ - "http://eth-jrpc.mainnet.quarkchain.io:39004", - "https://mainnet-s4-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.mainnet.quarkchain.io:39004" + }, + { + "url": "https://mainnet-s4-ethapi.quarkchain.io" + } ], "100006": [ - "http://eth-jrpc.mainnet.quarkchain.io:39005", - "https://mainnet-s5-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.mainnet.quarkchain.io:39005" + }, + { + "url": "https://mainnet-s5-ethapi.quarkchain.io" + } ], "100007": [ - "http://eth-jrpc.mainnet.quarkchain.io:39006", - "https://mainnet-s6-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.mainnet.quarkchain.io:39006" + }, + { + "url": "https://mainnet-s6-ethapi.quarkchain.io" + } ], "100008": [ - "http://eth-jrpc.mainnet.quarkchain.io:39007", - "https://mainnet-s7-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.mainnet.quarkchain.io:39007" + }, + { + "url": "https://mainnet-s7-ethapi.quarkchain.io" + } ], "100011": [ - "https://mainnet-l2-ethapi.quarkchain.io" + { + "url": "https://mainnet-l2-ethapi.quarkchain.io" + } ], "101010": [ - "https://gtn.stabilityprotocol.com" + { + "url": "https://gtn.stabilityprotocol.com" + } ], "102031": [ - "https://rpc.cc3-testnet.creditcoin.network" + { + "url": "https://rpc.cc3-testnet.creditcoin.network" + } ], "103090": [ - "https://evm.cryptocurrencydevs.org", - "https://rpc.crystaleum.org" + { + "url": "https://evm.cryptocurrencydevs.org" + }, + { + "url": "https://rpc.crystaleum.org" + } ], "103454": [ - "https://subnets.avax.network/masatestne/testnet/rpc" + { + "url": "https://subnets.avax.network/masatestne/testnet/rpc" + } ], "104566": [ - "https://api.kaspaclassic.world", - "http://80.178.101.118:8000" + { + "url": "https://api.kaspaclassic.world" + }, + { + "url": "http://80.178.101.118:8000" + } ], "105105": [ - "https://rpc.stratisevm.com" + { + "url": "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" + { + "url": "rpcWorking:false" + }, + { + "url": "https://rpc.brochain.org" + }, + { + "url": "http://rpc.brochain.org" + }, + { + "url": "https://rpc.brochain.org/mainnet" + }, + { + "url": "http://rpc.brochain.org/mainnet" + } ], "110000": [ - "rpcWorking:false", - "http://jrpc.devnet.quarkchain.io:38391" + { + "url": "rpcWorking:false" + }, + { + "url": "http://jrpc.devnet.quarkchain.io:38391" + } ], "110001": [ - "http://eth-jrpc.devnet.quarkchain.io:39900", - "https://devnet-s0-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.devnet.quarkchain.io:39900" + }, + { + "url": "https://devnet-s0-ethapi.quarkchain.io" + } ], "110002": [ - "http://eth-jrpc.devnet.quarkchain.io:39901", - "https://devnet-s1-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.devnet.quarkchain.io:39901" + }, + { + "url": "https://devnet-s1-ethapi.quarkchain.io" + } ], "110003": [ - "http://eth-jrpc.devnet.quarkchain.io:39902", - "https://devnet-s2-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.devnet.quarkchain.io:39902" + }, + { + "url": "https://devnet-s2-ethapi.quarkchain.io" + } ], "110004": [ - "http://eth-jrpc.devnet.quarkchain.io:39903", - "https://devnet-s3-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.devnet.quarkchain.io:39903" + }, + { + "url": "https://devnet-s3-ethapi.quarkchain.io" + } ], "110005": [ - "http://eth-jrpc.devnet.quarkchain.io:39904", - "https://devnet-s4-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.devnet.quarkchain.io:39904" + }, + { + "url": "https://devnet-s4-ethapi.quarkchain.io" + } ], "110006": [ - "http://eth-jrpc.devnet.quarkchain.io:39905", - "https://devnet-s5-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.devnet.quarkchain.io:39905" + }, + { + "url": "https://devnet-s5-ethapi.quarkchain.io" + } ], "110007": [ - "http://eth-jrpc.devnet.quarkchain.io:39906", - "https://devnet-s6-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.devnet.quarkchain.io:39906" + }, + { + "url": "https://devnet-s6-ethapi.quarkchain.io" + } ], "110008": [ - "http://eth-jrpc.devnet.quarkchain.io:39907", - "https://devnet-s7-ethapi.quarkchain.io" + { + "url": "http://eth-jrpc.devnet.quarkchain.io:39907" + }, + { + "url": "https://devnet-s7-ethapi.quarkchain.io" + } ], "110011": [ - "https://testnet-l2-ethapi.quarkchain.io" + { + "url": "https://testnet-l2-ethapi.quarkchain.io" + } ], "111000": [ - "https://rpc.test.siberium.net" + { + "url": "https://rpc.test.siberium.net" + } ], "111111": [ - "https://rpc.main.siberium.net", - "https://rpc.main.siberium.net.ru" + { + "url": "https://rpc.main.siberium.net" + }, + { + "url": "https://rpc.main.siberium.net.ru" + } ], "111188": [ - "https://real.drpc.org", - "wss://real.drpc.org" + { + "url": "https://real.drpc.org" + }, + { + "url": "wss://real.drpc.org" + } ], "112358": [ - "https://rpc.metachain.one", - "https://rpc2.metachain.one" + { + "url": "https://rpc.metachain.one" + }, + { + "url": "https://rpc2.metachain.one" + } ], "119139": [ - "https://rpc.testnet.chain.metadap.io", - "wss://rpc-ws.testnet.chain.metadap.io" + { + "url": "https://rpc.testnet.chain.metadap.io" + }, + { + "url": "wss://rpc-ws.testnet.chain.metadap.io" + } ], "123456": [ - "https://devnet.adilchain-rpc.io" + { + "url": "https://devnet.adilchain-rpc.io" + } ], "128123": [ - "https://node.ghostnet.etherlink.com" + { + "url": "https://node.ghostnet.etherlink.com" + } ], "131313": [ - "https://testnode.dioneprotocol.com/ext/bc/D/rpc" + { + "url": "https://testnode.dioneprotocol.com/ext/bc/D/rpc" + } ], "131419": [ - "https://rpc.node1.etnd.pro" + { + "url": "https://rpc.node1.etnd.pro" + } ], "132902": [ - "https://testnet-rpc.form.network/http", - "wss://testnet-rpc.form.network/ws" + { + "url": "https://testnet-rpc.form.network/http" + }, + { + "url": "wss://testnet-rpc.form.network/ws" + } ], "141319": [ - "https://testnet-api.magape.io/chain" + { + "url": "https://testnet-api.magape.io/chain" + } ], "142857": [ - "https://rpc1.icplaza.pro", - "https://rpcmainnet.ic-plaza.org" + { + "url": "https://rpc1.icplaza.pro", + "tracking": "yes", + "trackingDetails": "Please be aware that we collect your following information for the purpose of satisfying your needs in ICPlaza services(...) 1.We will collect your mobile device information, operation records, transaction records, wallet address and other personal information. https://www.icplaza.pro/privacy-policy" + }, + { + "url": "https://rpcmainnet.ic-plaza.org" + } ], "165279": [ - "https://mainnet-rpc.eclatscan.com" + { + "url": "https://mainnet-rpc.eclatscan.com" + } ], "167000": [ - "https://rpc.mainnet.taiko.xyz", - "wss://ws.mainnet.taiko.xyz" + { + "url": "https://rpc.mainnet.taiko.xyz" + }, + { + "url": "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" + { + "url": "https://taiko-katla.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://rpc.katla.taiko.xyz" + }, + { + "url": "wss://ws.katla.taiko.xyz" + }, + { + "url": "https://taiko-katla.drpc.org" + }, + { + "url": "wss://taiko-katla.drpc.org" + } ], "167009": [ - "https://rpc.hekla.taiko.xyz", - "wss://ws.hekla.taiko.xyz" + { + "url": "https://rpc.hekla.taiko.xyz" + }, + { + "url": "wss://ws.hekla.taiko.xyz" + } ], "188710": [ - "https://mainnet-rpc.biticablockchain.com" + { + "url": "https://mainnet-rpc.biticablockchain.com" + } ], "188881": [ - "https://testnet.condor.systems/rpc" + { + "url": "https://testnet.condor.systems/rpc" + } ], "192940": [ - "https://rpc-testnet.mindnetwork.xyz", - "wss://rpc-testnet.mindnetwork.xyz" + { + "url": "https://rpc-testnet.mindnetwork.xyz" + }, + { + "url": "wss://rpc-testnet.mindnetwork.xyz" + } ], "200000": [ - "https://rpc_testnet.xfair.ai", - "wss://rpc_testnet.xfair.ai" + { + "url": "https://rpc_testnet.xfair.ai" + }, + { + "url": "wss://rpc_testnet.xfair.ai" + } ], "200101": [ - "https://rpc-devnet-cardano-evm.c1.milkomeda.com", - "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" + { + "url": "https://rpc-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "url": "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" + } ], "200202": [ - "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" + { + "url": "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" + } ], "200625": [ - "https://boot2.akroma.org", - "https://remote.akroma.io" + { + "url": "https://boot2.akroma.org" + }, + { + "url": "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" + { + "url": "https://testnet-rpc.bitlayer.org" + }, + { + "url": "wss://testnet-ws.bitlayer.org" + }, + { + "url": "https://testnet-rpc.bitlayer-rpc.com" + }, + { + "url": "wss://testnet-ws.bitlayer-rpc.com" + }, + { + "url": "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" + { + "url": "https://rpc.bitlayer.org" + }, + { + "url": "https://rpc.bitlayer-rpc.com" + }, + { + "url": "https://rpc.ankr.com/bitlayer" + }, + { + "url": "https://rpc-bitlayer.rockx.com" + }, + { + "url": "wss://ws.bitlayer.org" + }, + { + "url": "wss://ws.bitlayer-rpc.com" + } ], "201018": [ - "https://openapi.alaya.network/rpc", - "wss://openapi.alaya.network/ws" + { + "url": "https://openapi.alaya.network/rpc" + }, + { + "url": "wss://openapi.alaya.network/ws" + } ], "201030": [ - "https://devnetopenapi.alaya.network/rpc", - "wss://devnetopenapi.alaya.network/ws" + { + "url": "https://devnetopenapi.alaya.network/rpc" + }, + { + "url": "wss://devnetopenapi.alaya.network/ws" + } ], "201804": [ - "https://chain-rpc.mythicalgames.com" + { + "url": "https://chain-rpc.mythicalgames.com" + } ], "202020": [ - "https://testnet-val.decimalchain.com/web3" + { + "url": "https://testnet-val.decimalchain.com/web3" + } ], "202212": [ - "https://x1-devnet.xen.network" + { + "url": "https://x1-devnet.xen.network" + } ], "202401": [ - "http://39.119.118.216:8545" + { + "url": "http://39.119.118.216:8545" + } ], "202624": [ - "https://jellie-rpc.twala.io", - "wss://jellie-rpc-wss.twala.io" + { + "url": "https://jellie-rpc.twala.io" + }, + { + "url": "wss://jellie-rpc-wss.twala.io" + } ], "204005": [ - "https://x1-testnet.xen.network" + { + "url": "https://x1-testnet.xen.network" + } ], "205205": [ - "https://auroria.rpc.stratisevm.com" + { + "url": "https://auroria.rpc.stratisevm.com" + } ], "210049": [ - "https://rpc.gitagi.org" + { + "url": "https://rpc.gitagi.org" + } ], "210425": [ - "https://openapi2.platon.network/rpc", - "wss://openapi2.platon.network/ws" + { + "url": "https://openapi2.platon.network/rpc" + }, + { + "url": "wss://openapi2.platon.network/ws" + } ], "220315": [ - "http://node.masnet.ai:8545" + { + "url": "http://node.masnet.ai:8545" + } ], "221230": [ - "https://eth.reapchain.org" + { + "url": "https://eth.reapchain.org" + } ], "221231": [ - "https://test-eth.reapchain.org" + { + "url": "https://test-eth.reapchain.org" + } ], "222222": [ - "https://rpc.hydradx.cloud", - "wss://rpc.hydradx.cloud" + { + "url": "https://rpc.hydradx.cloud" + }, + { + "url": "wss://rpc.hydradx.cloud" + } ], "222555": [ - "https://rpc.deeplnetwork.org" + { + "url": "https://rpc.deeplnetwork.org" + } ], "222666": [ - "https://testnet.deeplnetwork.org" + { + "url": "https://testnet.deeplnetwork.org" + } ], "224168": [ - "https://mainnet.tafchain.com/v1" + { + "url": "https://mainnet.tafchain.com/v1" + } ], "224422": [ - "https://rpc1.conet.network" + { + "url": "https://rpc1.conet.network" + } ], "224433": [ - "https://rpc.conet.network" + { + "url": "https://rpc.conet.network" + } ], "230315": [ - "https://testnet.hashkeychain/rpc" + { + "url": "https://testnet.hashkeychain/rpc" + } ], "234666": [ - "https://testnet1.haymo.network" + { + "url": "https://testnet1.haymo.network" + } ], "240515": [ - "https://testnet-rpc.orangechain.xyz" + { + "url": "https://testnet-rpc.orangechain.xyz" + } ], "246529": [ - "https://rpc.sigma1.artis.network" + { + "url": "https://rpc.sigma1.artis.network" + } ], "246785": [ - "https://rpc.tau1.artis.network" + { + "url": "https://rpc.tau1.artis.network" + } ], "247253": [ - "https://rpc-testnet.saakuru.network" + { + "url": "https://rpc-testnet.saakuru.network" + } ], "256256": [ - "https://mainnet.block.caduceus.foundation", - "wss://mainnet.block.caduceus.foundation" + { + "url": "https://mainnet.block.caduceus.foundation" + }, + { + "url": "wss://mainnet.block.caduceus.foundation" + } ], "262371": [ - "https://testnet-rpc.eclatscan.com" + { + "url": "https://testnet-rpc.eclatscan.com" + } ], "266256": [ - "https://gzn-test.linksme.info" + { + "url": "https://gzn-test.linksme.info" + } ], "271271": [ - "https://rpctest.egonscan.com" + { + "url": "https://rpctest.egonscan.com" + } ], "281121": [ - "rpcWorking:false", - "https://socialsmartchain.digitalnext.business" + { + "url": "rpcWorking:false" + }, + { + "url": "https://socialsmartchain.digitalnext.business" + } ], "282828": [ - "https://sepolia.zillnet.io/rpc" + { + "url": "https://sepolia.zillnet.io/rpc" + } ], "309075": [ - "https://mainnet-rpc.oneworldchain.org" + { + "url": "https://mainnet-rpc.oneworldchain.org" + } ], "313313": [ - "https://testnet.saharalabs.ai" + { + "url": "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" + { + "url": "https://filecoin-calibration.chainup.net/rpc/v1", + "tracking": "limited", + "trackingDetails": "We only collect user IP addresses for the purpose of rate limiting. For more information, please visit https://docs.chainupcloud.com/introduction/products/blockchain-api." + }, + { + "url": "https://api.calibration.node.glif.io/rpc/v1" + }, + { + "url": "https://rpc.ankr.com/filecoin_testnet" + }, + { + "url": "https://filecoin-calibration.chainstacklabs.com/rpc/v1" + }, + { + "url": "https://calibration.filfox.info/rpc/v1" + }, + { + "url": "https://filecoin-calibration.drpc.org" + }, + { + "url": "wss://filecoin-calibration.drpc.org" + } ], "322202": [ - "https://mainnet-rpc.parex.network" + { + "url": "https://mainnet-rpc.parex.network" + } ], "323213": [ - "https://testnet-rpc.bloomgenesis.com" + { + "url": "https://testnet-rpc.bloomgenesis.com" + } ], "330844": [ - "https://mainnet-rpc.tscscan.com" + { + "url": "https://mainnet-rpc.tscscan.com" + } ], "333313": [ - "https://mainnet-rpc.bloomgenesis.com" + { + "url": "https://mainnet-rpc.bloomgenesis.com" + } ], "333331": [ - "https://test.rpc.avescoin.io" + { + "url": "https://test.rpc.avescoin.io" + } ], "333333": [ - "https://rpctest.nativ3.network", - "wss://wstest.nativ3.network" + { + "url": "https://rpctest.nativ3.network" + }, + { + "url": "wss://wstest.nativ3.network" + } ], "333666": [ - "https://rpc.testnet.oonechain.com" + { + "url": "https://rpc.testnet.oonechain.com" + } ], "333777": [ - "https://rpc.dev.oonechain.com" + { + "url": "https://rpc.dev.oonechain.com" + } ], "333888": [ - "https://sparta-rpc.polis.tech" + { + "url": "https://sparta-rpc.polis.tech" + } ], "333999": [ - "https://rpc.polis.tech" + { + "url": "https://rpc.polis.tech" + } ], "336655": [ - "https://rpc-testnet.uniport.network" + { + "url": "https://rpc-testnet.uniport.network" + } ], "336666": [ - "https://rpc.uniport.network" + { + "url": "https://rpc.uniport.network" + } ], "355110": [ - "https://mainnet.bitfinity.network" + { + "url": "https://mainnet.bitfinity.network" + } ], "355113": [ - "https://testnet.bitfinity.network" + { + "url": "https://testnet.bitfinity.network" + } ], "360890": [ - "https://tsub360890-eth-rpc.thetatoken.org/rpc" + { + "url": "https://tsub360890-eth-rpc.thetatoken.org/rpc" + } ], "363636": [ - "https://dgs-rpc.digitsoul.co.th" + { + "url": "https://dgs-rpc.digitsoul.co.th" + } ], "373737": [ - "https://jsonrpc-test.hap.land" + { + "url": "https://jsonrpc-test.hap.land" + } ], "381931": [ - "https://api.metalblockchain.org/ext/bc/C/rpc" + { + "url": "https://api.metalblockchain.org/ext/bc/C/rpc" + } ], "381932": [ - "https://tahoe.metalblockchain.org/ext/bc/C/rpc" + { + "url": "https://tahoe.metalblockchain.org/ext/bc/C/rpc" + } ], "404040": [ - "https://mainnet-rpc.tipboxcoin.net" + { + "url": "https://mainnet-rpc.tipboxcoin.net" + } ], "413413": [ - "https://rpc1-testnet.aiechain.io" + { + "url": "https://rpc1-testnet.aiechain.io" + } ], "420420": [ - "https://mainnet.kekchain.com", - "https://rpc2.kekchain.com", - "https://kek.interchained.org", - "https://kekchain.interchained.org" + { + "url": "https://mainnet.kekchain.com" + }, + { + "url": "https://rpc2.kekchain.com" + }, + { + "url": "https://kek.interchained.org" + }, + { + "url": "https://kekchain.interchained.org" + } ], "420666": [ - "https://testnet.kekchain.com" + { + "url": "https://testnet.kekchain.com" + } ], "420692": [ - "https://l2-testnet-rpc.altscan.org" + { + "url": "https://l2-testnet-rpc.altscan.org" + } ], "421611": [ - "https://rinkeby.arbitrum.io/rpc" + { + "url": "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" + { + "url": "https://endpoints.omniatech.io/v1/arbitrum/goerli/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://arb-goerli.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://arbitrum-goerli.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://rpc.goerli.arbitrum.gateway.fm", + "tracking": "yes", + "trackingDetails": "When you use our services or visit our websites, we may log your device’s IP address for debugging and security reasons. We may retain this information for up to twelve months" + }, + { + "url": "https://arbitrum-goerli-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://arbitrum-goerli-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://api.zan.top/node/v1/arb/goerli/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://api.stateless.solutions/arbitrum-one/v1/77abba85-53e4-4430-a332-a46deb9900ea", + "tracking": "none", + "trackingDetails": "Through any of our RPC API endpoints, whether public or private, we do not collect personal identifiers such as IP addresses, request origins, or specific request data. https://www.stateless.solutions/api-usage-privacy-policy" + }, + { + "url": "https://goerli-rollup.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-goerli.publicnode.com" + }, + { + "url": "wss://arbitrum-goerli.publicnode.com" + } ], "421614": [ - "https://arbitrum-sepolia.blockpi.network/v1/rpc/public ", - "https://sepolia-rollup.arbitrum.io/rpc" + { + "url": "https://arbitrum-sepolia.blockpi.network/v1/rpc/public ", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://sepolia-rollup.arbitrum.io/rpc" + } ], "424242": [ - "https://rpc.testnet.fastexchain.com" + { + "url": "https://rpc.testnet.fastexchain.com" + } ], "431140": [ - "https://rpc.markr.io/ext" + { + "url": "https://rpc.markr.io/ext", + "tracking": "none", + "trackingDetails": "We only collect the minimum necessary information to provide our blockchain RPC service (caching). We do not use your data for commercial purposes. Any collected data is short-term and will be automatically deleted within 24 hours if not actively used. https://www.markr.io/privacy-policy" + } ], "432201": [ - "https://subnets.avax.network/dexalot/testnet/rpc" + { + "url": "https://subnets.avax.network/dexalot/testnet/rpc" + } ], "432204": [ - "https://subnets.avax.network/dexalot/mainnet/rpc" + { + "url": "https://subnets.avax.network/dexalot/mainnet/rpc" + } ], "444444": [ - "https://sepolia.syndr.com/http", - "wss://sepolia.syndr.com/ws" + { + "url": "https://sepolia.syndr.com/http" + }, + { + "url": "wss://sepolia.syndr.com/ws" + } ], "444900": [ - "https://weelinknode1c.gw002.oneitfarm.com" + { + "url": "https://weelinknode1c.gw002.oneitfarm.com" + } ], "471100": [ - "https://test-rpc.patex.io" + { + "url": "https://test-rpc.patex.io" + } ], "473861": [ - "https://mainnet-rpc.ultraproscan.io" + { + "url": "https://mainnet-rpc.ultraproscan.io" + } ], "474142": [ - "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" + { + "url": "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" + } + ], + "490000": [ + { + "url": "https://nova-0.gemini-3h.subspace.network/ws" + } ], "504441": [ - "https://subnets.avax.network/playdappne/mainnet/rpc" + { + "url": "https://subnets.avax.network/playdappne/mainnet/rpc" + } ], "512512": [ - "https://galaxy.block.caduceus.foundation", - "wss://galaxy.block.caduceus.foundation" + { + "url": "https://galaxy.block.caduceus.foundation" + }, + { + "url": "wss://galaxy.block.caduceus.foundation" + } ], "513100": [ - "https://rpc.dischain.xyz" + { + "url": "https://rpc.dischain.xyz" + } ], "526916": [ - "https://rpc.docoin.shop" + { + "url": "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" + { + "url": "https://scroll-sepolia.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://scroll-testnet-public.unifra.io", + "tracking": "limited", + "trackingDetails": "Regarding the RPC(remote procedure call) data, we do not collect request data or request origin. We temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days. Only the amounts of RPC requests of users are recorded for accounting and billing purposes within longer time. https://unifra.io/" + }, + { + "url": "https://rpc.ankr.com/scroll_sepolia_testnet", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://scroll-public.scroll-testnet.quiknode.pro", + "tracking": "yes", + "trackingDetails": "Information about your computer hardware and software may be automatically collected by QuickNode. This information can include such details as your IP address, browser type, domain names, access times and referring website addresses.https://www.quicknode.com/privacy" + }, + { + "url": "https://scroll-sepolia.chainstacklabs.com", + "tracking": "yes", + "trackingDetails": "We process certain personal data to provide you with the core functionality of our Services. Specifically, when you are: Using the Chainstack Console, we process your name, surname, email address (your account identifier), organization name, IP address, all HTTP headers (most importantly User-Agent), cookies; Using the Chainstack Blockchain infrastructure, we process nodes' token stored in Chainstack Vault, IP address and HTTP headers, request body, API token in Chainstack Vault.https://chainstack.com/privacy/" + }, + { + "url": "https://scroll-sepolia.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://scroll-testnet.rpc.grove.city/v1/a7a7c8e2", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "http://scroll-sepolia-rpc.01no.de:8545" + }, + { + "url": "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" + { + "url": "https://rpc.scroll.io" + }, + { + "url": "https://rpc-scroll.icecreamswap.com" + }, + { + "url": "https://scroll-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://scroll-mainnet-public.unifra.io", + "tracking": "limited", + "trackingDetails": "Regarding the RPC(remote procedure call) data, we do not collect request data or request origin. We temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days. Only the amounts of RPC requests of users are recorded for accounting and billing purposes within longer time. https://unifra.io/" + }, + { + "url": "https://scroll.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://1rpc.io/scroll", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://scroll.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "https://scroll-mainnet.rpc.grove.city/v1/a7a7c8e2", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://rpc.ankr.com/scroll" + }, + { + "url": "https://scroll-mainnet.chainstacklabs.com" + } ], "534849": [ - "https://rpc.shinarium.org" + { + "url": "https://rpc.shinarium.org" + } ], "535037": [ - "https://mainnet-rpc.bescscan.io" + { + "url": "https://mainnet-rpc.bescscan.io" + } ], "552981": [ - "https://testnet-rpc.oneworldchain.org" + { + "url": "https://testnet-rpc.oneworldchain.org" + } ], "555555": [ - "https://rpc-testnet.pentagon.games" + { + "url": "https://rpc-testnet.pentagon.games" + } ], "555666": [ - "https://subnets.avax.network/eclipsecha/testnet/rpc" + { + "url": "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" + { + "url": "https://rpc.hypra.network" + }, + { + "url": "https://rpc.rethereum.org" + }, + { + "url": "https://rethereum.rpc.restratagem.com" + }, + { + "url": "https://rpc.rthcentral.org" + }, + { + "url": "https://hypra.rpc.thirdweb.com" + } ], "622463": [ - "https://rpc.testnet.atl.network" + { + "url": "https://rpc.testnet.atl.network" + } ], "641230": [ - "https://brnkc-mainnet.bearnetwork.net", - "https://brnkc-mainnet1.bearnetwork.net" + { + "url": "https://brnkc-mainnet.bearnetwork.net" + }, + { + "url": "https://brnkc-mainnet1.bearnetwork.net" + } ], "651940": [ - "https://mainnet-rpc.alltra.global" + { + "url": "https://mainnet-rpc.alltra.global" + } ], "656476": [ - "https://rpc.open-campus-codex.gelato.digital" + { + "url": "https://rpc.open-campus-codex.gelato.digital" + } ], "660279": [ - "https://xai-chain.net/rpc" + { + "url": "https://xai-chain.net/rpc" + } ], "666666": [ - "https://vpioneer.infragrid.v.network/ethereum/compatible" + { + "url": "https://vpioneer.infragrid.v.network/ethereum/compatible" + } ], "666888": [ - "https://testnet-rpc.helachain.com" + { + "url": "https://testnet-rpc.helachain.com" + } ], "686868": [ - "https://rpc.wonnetwork.org" + { + "url": "https://rpc.wonnetwork.org" + } ], "696969": [ - "https://devnet.galadriel.com" + { + "url": "https://devnet.galadriel.com" + } ], "710420": [ - "https://subnets.avax.network/tiltyard/mainnet/rpc" + { + "url": "https://subnets.avax.network/tiltyard/mainnet/rpc" + } ], "713715": [ - "https://evm-rpc-arctic-1.sei-apis.com", - "https://evm-rpc.arctic-1.seinetwork.io" + { + "url": "https://evm-rpc-arctic-1.sei-apis.com" + }, + { + "url": "https://evm-rpc.arctic-1.seinetwork.io" + } ], "721529": [ - "https://mainnet-rpc.eramscan.com" + { + "url": "https://mainnet-rpc.eramscan.com" + } ], "743111": [ - "https://testnet.rpc.hemi.network/rpc" + { + "url": "https://testnet.rpc.hemi.network/rpc" + } ], "751230": [ - "https://brnkc-test.bearnetwork.net" + { + "url": "https://brnkc-test.bearnetwork.net" + } ], "761412": [ - "https://mainnet-rpc.miexs.com" + { + "url": "https://mainnet-rpc.miexs.com" + } ], "764984": [ - "https://subnets.avax.network/lamina1tes/testnet/rpc" + { + "url": "https://subnets.avax.network/lamina1tes/testnet/rpc" + } ], "767368": [ - "https://subnets.avax.network/lamina1id/testnet/rpc" + { + "url": "https://subnets.avax.network/lamina1id/testnet/rpc" + } ], "776877": [ - "https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network" + { + "url": "https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network" + } ], "800001": [ - "https://rpc.octa.space", - "wss://rpc.octa.space" + { + "url": "https://rpc.octa.space" + }, + { + "url": "wss://rpc.octa.space" + } ], "808080": [ - "https://rpc-testnet.bizex.io" + { + "url": "https://rpc-testnet.bizex.io" + } ], "810180": [ - "https://rpc.zklink.io", - "wss://rpc.zklink.io" + { + "url": "https://rpc.zklink.io" + }, + { + "url": "wss://rpc.zklink.io" + } ], "810181": [ - "https://sepolia.rpc.zklink.io", - "wss://sepolia.rpc.zklink.io" + { + "url": "https://sepolia.rpc.zklink.io" + }, + { + "url": "wss://sepolia.rpc.zklink.io" + } ], "810182": [ - "https://goerli.rpc.zklink.io", - "wss://goerli.rpc.zklink.io" + { + "url": "https://goerli.rpc.zklink.io" + }, + { + "url": "wss://goerli.rpc.zklink.io" + } ], "820522": [ - "https://testnet.tscscan.io/testrpc" + { + "url": "https://testnet.tscscan.io/testrpc" + } ], "827431": [ - "https://mainnet-rpc.curvescan.io" + { + "url": "https://mainnet-rpc.curvescan.io" + } ], "839320": [ - "https://testnet-rpc.prmscan.org" + { + "url": "https://testnet-rpc.prmscan.org" + } ], "846000": [ - "https://chain.deptofgood.com" + { + "url": "https://chain.deptofgood.com" + } ], "855456": [ - "https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network" + { + "url": "https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network" + }, + { + "url": "wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network" + } ], "879151": [ - "https://mainnet-rpc.blxscan.com" + { + "url": "https://mainnet-rpc.blxscan.com" + } ], "888882": [ - "https://rpc.rexxnetwork.com" + { + "url": "https://rpc.rexxnetwork.com" + } ], "888888": [ - "https://infragrid.v.network/ethereum/compatible" + { + "url": "https://infragrid.v.network/ethereum/compatible" + } ], "900000": [ - "https://api.posichain.org", - "https://api.s0.posichain.org" + { + "url": "https://api.posichain.org" + }, + { + "url": "https://api.s0.posichain.org" + } ], "910000": [ - "https://api.s0.t.posichain.org" + { + "url": "https://api.s0.t.posichain.org" + } ], "912559": [ - "https://rpc.evm.dusk-3.devnet.astria.org" + { + "url": "https://rpc.evm.dusk-3.devnet.astria.org" + } ], "920000": [ - "https://api.s0.d.posichain.org" + { + "url": "https://api.s0.d.posichain.org" + } ], "920001": [ - "https://api.s1.d.posichain.org" + { + "url": "https://api.s1.d.posichain.org" + } ], "923018": [ - "https://fncy-testnet-seed.fncy.world" + { + "url": "https://fncy-testnet-seed.fncy.world" + } ], "955081": [ - "https://subnets.avax.network/jono12/testnet/rpc" + { + "url": "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" + { + "url": "https://host-76-74-28-226.contentfabric.io/eth" + }, + { + "url": "https://host-76-74-28-232.contentfabric.io/eth" + }, + { + "url": "https://host-76-74-29-2.contentfabric.io/eth" + }, + { + "url": "https://host-76-74-29-8.contentfabric.io/eth" + }, + { + "url": "https://host-76-74-29-34.contentfabric.io/eth" + }, + { + "url": "https://host-76-74-29-35.contentfabric.io/eth" + }, + { + "url": "https://host-154-14-211-98.contentfabric.io/eth" + }, + { + "url": "https://host-154-14-192-66.contentfabric.io/eth" + }, + { + "url": "https://host-60-240-133-202.contentfabric.io/eth" + }, + { + "url": "https://host-64-235-250-98.contentfabric.io/eth" + } ], "978657": [ - "https://rpc-testnet.treasure.lol/http", - "wss://rpc-testnet.treasure.lol/ws" + { + "url": "https://rpc-testnet.treasure.lol/http" + }, + { + "url": "wss://rpc-testnet.treasure.lol/ws" + } ], "984122": [ - "https://rpc.forma.art" + { + "url": "https://rpc.forma.art" + } ], "984123": [ - "https://rpc.sketchpad-1.forma.art" + { + "url": "https://rpc.sketchpad-1.forma.art" + } ], "988207": [ - "https://mainnet-rpc.ecroxscan.com" + { + "url": "https://mainnet-rpc.ecroxscan.com" + } ], "998899": [ - "https://testnet-rpc.supernet.chaingames.io" + { + "url": "https://testnet-rpc.supernet.chaingames.io" + } ], "999999": [ - "https://node1.amchain.net" + { + "url": "https://node1.amchain.net" + } ], "1100789": [ - "https://testblock.protago-dev.com" + { + "url": "https://testblock.protago-dev.com" + } ], "1127469": [ - "https://subnets.avax.network/tiltyard/testnet/rpc" + { + "url": "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" + { + "url": "https://rpc.zkatana.gelato.digital" + }, + { + "url": "https://rpc.startale.com/zkatana" + }, + { + "url": "https://astar-zkatana.drpc.org" + }, + { + "url": "wss://astar-zkatana.drpc.org" + } ], "1313114": [ - "https://rpc.ethoprotocol.com" + { + "url": "https://rpc.ethoprotocol.com" + } ], "1313500": [ - "https://rpc.xerom.org" + { + "url": "https://rpc.xerom.org" + } ], "1337702": [ - "https://rpc.kintsugi.themerge.dev" + { + "url": "https://rpc.kintsugi.themerge.dev" + } ], "1337802": [ - "https://rpc.kiln.themerge.dev" + { + "url": "https://rpc.kiln.themerge.dev" + } ], "1337803": [ - "https://rpc.zhejiang.ethpandaops.io" + { + "url": "https://rpc.zhejiang.ethpandaops.io" + } ], "1612127": [ - "https://albireo-rpc.playfi.ai" + { + "url": "https://albireo-rpc.playfi.ai" + } ], "1637450": [ - "https://xterio-testnet.alt.technology" + { + "url": "https://xterio-testnet.alt.technology" + } ], "1731313": [ - "https://devchain-poa.huabeizhenxuan.com" + { + "url": "https://devchain-poa.huabeizhenxuan.com" + } ], "2021398": [ - "http://rpc.testnet.debank.com" + { + "url": "http://rpc.testnet.debank.com" + } ], "2099156": [ - "https://mainnet.plian.io/pchain" + { + "url": "https://mainnet.plian.io/pchain" + } ], "2206132": [ - "https://devnet2openapi.platon.network/rpc", - "wss://devnet2openapi.platon.network/ws" + { + "url": "https://devnet2openapi.platon.network/rpc" + }, + { + "url": "wss://devnet2openapi.platon.network/ws" + } ], "2611555": [ - "https://sc-rpc.dpu.ac.th" + { + "url": "https://sc-rpc.dpu.ac.th" + } ], "3132023": [ - "https://mainnet.saharalabs.ai" + { + "url": "https://mainnet.saharalabs.ai" + } ], "3397901": [ - "https://funki-testnet.alt.technology" + { + "url": "https://funki-testnet.alt.technology" + } ], "3441005": [ - "https://manta-testnet.calderachain.xyz/http", - "https://manta-pacific-testnet.drpc.org", - "wss://manta-pacific-testnet.drpc.org" + { + "url": "https://manta-testnet.calderachain.xyz/http" + }, + { + "url": "https://manta-pacific-testnet.drpc.org" + }, + { + "url": "wss://manta-pacific-testnet.drpc.org" + } ], "3441006": [ - "https://pacific-rpc.sepolia-testnet.manta.network/http" + { + "url": "https://pacific-rpc.sepolia-testnet.manta.network/http" + } ], "4000003": [ - "https://zero.alt.technology" + { + "url": "https://zero.alt.technology" + } ], "4281033": [ - "https://worlds-test.calderachain.xyz/http" + { + "url": "https://worlds-test.calderachain.xyz/http" + } ], "5112023": [ - "https://rpc-mainnet.numblock.org" + { + "url": "https://rpc-mainnet.numblock.org" + } ], "5167003": [ - "https://wannsee-rpc.mxc.com" + { + "url": "https://wannsee-rpc.mxc.com" + } ], "5167004": [ - "https://geneva-rpc.moonchain.com" + { + "url": "https://geneva-rpc.moonchain.com" + } ], "5201420": [ - "https://testnet-rpc.electroneum.com" + { + "url": "https://testnet-rpc.electroneum.com" + } ], "5318008": [ - "https://kopli-rpc.reactive.network", - "http://kopli-rpc.rkt.ink" + { + "url": "https://kopli-rpc.reactive.network" + }, + { + "url": "http://kopli-rpc.rkt.ink" + } ], "5555555": [ - "https://jsonrpc.imversed.network", - "https://ws-jsonrpc.imversed.network" + { + "url": "https://jsonrpc.imversed.network" + }, + { + "url": "https://ws-jsonrpc.imversed.network" + } ], "5555558": [ - "https://jsonrpc-test.imversed.network", - "https://ws-jsonrpc-test.imversed.network" + { + "url": "https://jsonrpc-test.imversed.network" + }, + { + "url": "https://ws-jsonrpc-test.imversed.network" + } ], "6038361": [ - "https://rpc.startale.com/zkyoto", - "https://rpc.zkyoto.gelato.digital" + { + "url": "https://rpc.startale.com/zkyoto" + }, + { + "url": "https://rpc.zkyoto.gelato.digital" + } ], "6666665": [ - "https://rpc.anwang.com" + { + "url": "https://rpc.anwang.com" + } ], "6666666": [ - "https://rpc-testnet.anwang.com" + { + "url": "https://rpc-testnet.anwang.com" + } ], "7225878": [ - "https://rpc.saakuru.network" + { + "url": "https://rpc.saakuru.network" + } ], "7355310": [ - "https://mainnet-external.openvessel.io" + { + "url": "https://mainnet-external.openvessel.io" + } ], "7668378": [ - "https://rpc.testnet.qom.one" + { + "url": "https://rpc.testnet.qom.one" + } ], "7762959": [ - "https://mewapi.musicoin.tw" + { + "url": "https://mewapi.musicoin.tw" + } ], "7777777": [ - "https://rpc.zora.energy" + { + "url": "https://rpc.zora.energy" + } ], "8007736": [ - "https://mainnet.plian.io/child_0" + { + "url": "https://mainnet.plian.io/child_0" + } ], "8008135": [ - "https://api.helium.fhenix.zone" + { + "url": "https://api.helium.fhenix.zone" + } ], "8080808": [ - "https://mainnet.hokum.gg" + { + "url": "https://mainnet.hokum.gg" + } ], "8601152": [ - "https://rpc.testnet8.waterfall.network" + { + "url": "https://rpc.testnet8.waterfall.network" + } ], "8794598": [ - "https://jsonrpc.hap.land" + { + "url": "https://jsonrpc.hap.land" + } ], "9322252": [ - "https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1" + { + "url": "https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1" + } ], "9322253": [ - "https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1" + { + "url": "https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1" + } ], "10067275": [ - "https://testnet.plian.io/child_test" + { + "url": "https://testnet.plian.io/child_test" + } ], "10101010": [ - "https://mainnet-rpc.soverun.com" + { + "url": "https://mainnet-rpc.soverun.com" + } ], "10241025": [ - "https://hal-rpc.alienxchain.io/http", - "https://hal.rpc.caldera.xyz/http" + { + "url": "https://hal-rpc.alienxchain.io/http" + }, + { + "url": "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" + { + "url": "https://eth-sepolia.g.alchemy.com/v2/demo", + "tracking": "yes", + "trackingDetails": "We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. https://www.alchemy.com/policies/privacy-policy" + }, + { + "url": "https://endpoints.omniatech.io/v1/eth/sepolia/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://ethereum-sepolia.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://eth-sepolia.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + }, + { + "url": "https://eth-sepolia-public.unifra.io", + "tracking": "limited", + "trackingDetails": "Regarding the RPC(remote procedure call) data, we do not collect request data or request origin. We temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days. Only the amounts of RPC requests of users are recorded for accounting and billing purposes within longer time. https://unifra.io/" + }, + { + "url": "https://sepolia.gateway.tenderly.co", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://gateway.tenderly.co/public/sepolia", + "tracking": "yes", + "trackingDetails": "Additionally, if you are an Account Member, we may collect business and transactional data about you (and your business) that accumulates over the normal course of operation regarding providing our Services. This may include transaction records, stored files, user profiles, information about collaborators, analytics data, and other metrics, as well as other types of information created or generated by your interaction with our Services. https://tenderly.co/privacy-policy" + }, + { + "url": "https://sphinx.shardeum.org", + "tracking": "yes", + "trackingDetails": "Shardeum follows a standard procedure of using log files. These files log visitors when they visit websites... The information collected by log files includes IP addresses, browser type, ISP, date and time stamp, referring/exit pages, and potentially the number of clicks.https://shardeum.org/privacy-policy/" + }, + { + "url": "https://dapps.shardeum.org", + "tracking": "yes", + "trackingDetails": "Shardeum follows a standard procedure of using log files. These files log visitors when they visit websites... The information collected by log files includes IP addresses, browser type, ISP, date and time stamp, referring/exit pages, and potentially the number of clicks.https://shardeum.org/privacy-policy/" + }, + { + "url": "https://api.zan.top/node/v1/eth/sepolia/public", + "tracking": "limited", + "trackingDetails": "ZAN Node Service generally does not store any kind of user information (e.g. IP address, location, requst location, request data, etc.) that transits through our RPCs except for one senario ——we may track your IP address when you are using our RPCs and will delete it immediately when you stoping using our RPCs. To learn more, please review our privacy policy at https://a.zan.top/static/Privacy-Policy.pdf" + }, + { + "url": "https://rpc.notadegen.com/eth/sepolia" + }, + { + "url": "https://ethereum-sepolia-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "wss://ethereum-sepolia-rpc.publicnode.com", + "tracking": "none", + "trackingDetails": "We do not store or track any user data with the exception of data that will be public on chain. We do not correlate wallets address's with IP's, any data which is needed to transact is deleted after 24 hours. We also do no use any Analytics or 3rd party website tracking. https://www.publicnode.com/privacy" + }, + { + "url": "https://1rpc.io/sepolia", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://eth-sepolia.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://rpc.sepolia.org" + }, + { + "url": "https://rpc2.sepolia.org" + }, + { + "url": "https://rpc-sepolia.rockx.com" + }, + { + "url": "https://rpc.sepolia.ethpandaops.io" + }, + { + "url": "wss://sepolia.gateway.tenderly.co" + }, + { + "url": "https://sepolia.drpc.org" + }, + { + "url": "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" + { + "url": "https://optimism-sepolia.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://sepolia.optimism.io" + }, + { + "url": "https://optimism-sepolia.drpc.org" + }, + { + "url": "wss://optimism-sepolia.drpc.org" + } ], "13068200": [ - "https://devnet.coti.io/rpc" + { + "url": "https://devnet.coti.io/rpc" + } ], "13371337": [ - "https://churchill-rpc.pepchain.io" + { + "url": "https://churchill-rpc.pepchain.io" + } ], "14288640": [ - "https://rpc.anduschain.io/rpc", - "wss://rpc.anduschain.io/ws" + { + "url": "https://rpc.anduschain.io/rpc" + }, + { + "url": "wss://rpc.anduschain.io/ws" + } ], "16658437": [ - "https://testnet.plian.io/testnet" + { + "url": "https://testnet.plian.io/testnet" + } ], "17000920": [ - "https://testnrpc.lambda.im" + { + "url": "https://testnrpc.lambda.im" + } ], "18289463": [ - "https://net.iolite.io" + { + "url": "https://net.iolite.io" + } ], "20180427": [ - "https://free.testnet.stabilityprotocol.com" + { + "url": "https://free.testnet.stabilityprotocol.com" + } ], "20180430": [ - "https://jsonapi1.smartmesh.cn" + { + "url": "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" + { + "url": "https://hz.rpc.qkiscan.cn" + }, + { + "url": "https://rpc1.qkiscan.cn" + }, + { + "url": "https://rpc2.qkiscan.cn" + }, + { + "url": "https://rpc3.qkiscan.cn" + }, + { + "url": "https://rpc1.qkiscan.io" + }, + { + "url": "https://rpc2.qkiscan.io" + }, + { + "url": "https://rpc3.qkiscan.io" + }, + { + "url": "https://jp.rpc.qkiscan.io" + } ], "20201022": [ - "https://pegorpc.com", - "https://node1.pegorpc.com", - "https://node2.pegorpc.com", - "https://node3.pegorpc.com" + { + "url": "https://pegorpc.com" + }, + { + "url": "https://node1.pegorpc.com" + }, + { + "url": "https://node2.pegorpc.com" + }, + { + "url": "https://node3.pegorpc.com" + } ], "20240324": [ - "https://sepolia-rpc.testnet.debank.com" + { + "url": "https://sepolia-rpc.testnet.debank.com" + } ], "20241133": [ - "https://rpc-proxima.swanchain.io" + { + "url": "https://rpc-proxima.swanchain.io" + } ], "20482050": [ - "https://testnet.hokum.gg" + { + "url": "https://testnet.hokum.gg" + } ], "22052002": [ - "https://edgewallet1.xlon.org" + { + "url": "https://edgewallet1.xlon.org" + } ], "27082017": [ - "https://testnet-rpc.exlscan.com" + { + "url": "https://testnet-rpc.exlscan.com" + } ], "27082022": [ - "https://rpc.exlscan.com" + { + "url": "https://rpc.exlscan.com" + } ], "28122024": [ - "https://rpcv2-testnet.ancient8.gg" + { + "url": "https://rpcv2-testnet.ancient8.gg" + } ], "28945486": [ - "https://rpc.auxilium.global" + { + "url": "https://rpc.auxilium.global" + } ], "29032022": [ - "https://flachain.flaexchange.top" + { + "url": "https://flachain.flaexchange.top" + } ], "35855456": [ - "https://node.joys.digital" + { + "url": "https://node.joys.digital" + } ], "37084624": [ - "https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet", - "wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet" + { + "url": "https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet" + }, + { + "url": "wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet" + } ], "39916801": [ - "https://kingdomchain.observer/rpc" + { + "url": "https://kingdomchain.observer/rpc" + } ], "43214913": [ - "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" + { + "url": "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" + } ], "61717561": [ - "https://c.onical.org", - "https://tx.aquacha.in/api" + { + "url": "https://c.onical.org" + }, + { + "url": "https://tx.aquacha.in/api" + } ], "65010002": [ - "https://rpc1.bakerloo.autonity.org", - "wss://rpc1.bakerloo.autonity.org/ws" + { + "url": "https://rpc1.bakerloo.autonity.org" + }, + { + "url": "wss://rpc1.bakerloo.autonity.org/ws" + } ], "65100002": [ - "https://rpc1.piccadilly.autonity.org", - "wss://rpc1.piccadilly.autonity.org/ws" + { + "url": "https://rpc1.piccadilly.autonity.org" + }, + { + "url": "wss://rpc1.piccadilly.autonity.org/ws" + } ], "68840142": [ - "https://rpc.testnet.frame.xyz/http" + { + "url": "https://rpc.testnet.frame.xyz/http" + } ], "77787778": [ - "https://rpc-test.0xhash.io" + { + "url": "https://rpc-test.0xhash.io" + } ], "88888888": [ - "https://rpc.teamblockchain.team" + { + "url": "https://rpc.teamblockchain.team", + "tracking": "none", + "trackingDetails": "We only store and track data that will be publicly available on the blockchain, and do not collect or retain any other user data. https://policy.teamblockchain.team/" + } ], "94204209": [ - "https://rpc.polygon-blackberry.gelato.digital", - "wss://ws.polygon-blackberry.gelato.digital" + { + "url": "https://rpc.polygon-blackberry.gelato.digital" + }, + { + "url": "wss://ws.polygon-blackberry.gelato.digital" + } ], "99415706": [ - "https://toys.joys.cash" + { + "url": "https://toys.joys.cash" + } ], "108160679": [ - "https://evm.orai.io" + { + "url": "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" + { + "url": "https://cyber-testnet.alt.technology" + }, + { + "url": "wss://cyber-testnet.alt.technology/ws" + }, + { + "url": "https://rpc.testnet.cyber.co" + }, + { + "url": "wss://rpc.testnet.cyber.co" + } ], "123420111": [ - "https://rpc.opcelestia-raspberry.gelato.digital", - "wss://ws.opcelestia-raspberry.gelato.digital" + { + "url": "https://rpc.opcelestia-raspberry.gelato.digital" + }, + { + "url": "wss://ws.opcelestia-raspberry.gelato.digital" + } ], "161221135": [ - "https://testnet-rpc.plumenetwork.xyz/http", - "wss://testnet-rpc.plumenetwork.xyz/ws" + { + "url": "https://testnet-rpc.plumenetwork.xyz/http" + }, + { + "url": "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" + { + "url": "https://blast-sepolia.blockpi.network/v1/rpc/public", + "tracking": "limited", + "trackingDetails": "We do not collect request data or request origin. We only temporarily record the request method names and IP addresses for 7 days to ensure our service functionality such as load balancing and DDoS protection. All the data is automatically deleted after 7 days and we do not store any user information for longer periods of time. https://blockpi.io/privacy-policy" + }, + { + "url": "https://sepolia.blast.io" + }, + { + "url": "https://blast-sepolia.drpc.org" + }, + { + "url": "wss://blast-sepolia.drpc.org" + } ], "192837465": [ - "https://mainnet.gather.network" + { + "url": "https://mainnet.gather.network" + } ], "222000222": [ - "https://testnet-rpc.meld.com" + { + "url": "https://testnet-rpc.meld.com" + } ], "245022926": [ - "https://devnet.neonevm.org", - "https://neon-evm-devnet.drpc.org", - "wss://neon-evm-devnet.drpc.org" + { + "url": "https://devnet.neonevm.org" + }, + { + "url": "https://neon-evm-devnet.drpc.org" + }, + { + "url": "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" + { + "url": "https://neon-proxy-mainnet.solana.p2p.org" + }, + { + "url": "https://neon-mainnet.everstake.one" + }, + { + "url": "https://neon-evm.drpc.org" + }, + { + "url": "wss://neon-evm.drpc.org" + } ], "278611351": [ - "https://mainnet.skalenodes.com/v1/turbulent-unique-scheat" + { + "url": "https://mainnet.skalenodes.com/v1/turbulent-unique-scheat" + } ], "311752642": [ - "https://mainnet-rpc.oneledger.network" + { + "url": "https://mainnet-rpc.oneledger.network" + } ], "328527624": [ - "https://testnet-rpc.nal.network" + { + "url": "https://testnet-rpc.nal.network" + } ], "333000333": [ - "https://rpc-1.meld.com" + { + "url": "https://rpc-1.meld.com" + } ], "356256156": [ - "https://testnet.gather.network" + { + "url": "https://testnet.gather.network" + } ], "486217935": [ - "https://devnet.gather.network" + { + "url": "https://devnet.gather.network" + } ], "666666666": [ - "https://rpc.degen.tips" + { + "url": "https://rpc.degen.tips" + } ], "888888888": [ - "https://rpc.ancient8.gg" + { + "url": "https://rpc.ancient8.gg" + } ], "889910245": [ - "https://rpc-testnet.ptcscan.io" + { + "url": "https://rpc-testnet.ptcscan.io" + } ], "889910246": [ - "https://rpc.ptcscan.io" + { + "url": "https://rpc.ptcscan.io" + } ], "974399131": [ - "https://testnet.skalenodes.com/v1/giant-half-dual-testnet" + { + "url": "https://testnet.skalenodes.com/v1/giant-half-dual-testnet" + } ], "999999999": [ - "https://sepolia.rpc.zora.energy" + { + "url": "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" + { + "url": "https://testnet.skalenodes.com/v1/aware-fake-trim-testnet" + }, + { + "url": "wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet" + } ], "1122334455": [ - "https://rpc.iposlab.com", - "https://rpc2.iposlab.com" + { + "url": "https://rpc.iposlab.com" + }, + { + "url": "https://rpc2.iposlab.com" + } ], "1146703430": [ - "http://cybeth1.cyberdeck.eu:8545" + { + "url": "http://cybeth1.cyberdeck.eu:8545" + } ], "1273227453": [ - "https://mainnet.skalenodes.com/v1/wan-red-ain" + { + "url": "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" + { + "url": "https://mainnet.aurora.dev" + }, + { + "url": "https://endpoints.omniatech.io/v1/aurora/mainnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://1rpc.io/aurora", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://aurora.drpc.org", + "tracking": "none", + "trackingDetails": "Specific types of technical data that we may temporarily log include:IP address (only in logs for redirecting requests to the nearest RPC nodes and rate limiting at the free level, which are cleared weekly). The user ID is hidden in the temporary logs, so it is not possible to link them to a specific user.https://drpc.org/privacy-policy" + }, + { + "url": "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" + { + "url": "https://endpoints.omniatech.io/v1/aurora/testnet/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://testnet.aurora.dev" + }, + { + "url": "https://aurora-testnet.drpc.org" + }, + { + "url": "wss://aurora-testnet.drpc.org" + } ], "1313161560": [ - "https://powergold.aurora.dev" + { + "url": "https://powergold.aurora.dev" + } ], "1350216234": [ - "https://mainnet.skalenodes.com/v1/parallel-stormy-spica", - "wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica" + { + "url": "https://mainnet.skalenodes.com/v1/parallel-stormy-spica" + }, + { + "url": "wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica" + } ], "1351057110": [ - "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix" + { + "url": "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix" + } ], "1380012617": [ - "https://rari.calderachain.xyz/http" + { + "url": "https://rari.calderachain.xyz/http" + } ], "1380996178": [ - "https://rpc.raptorchain.io/web3" + { + "url": "https://rpc.raptorchain.io/web3" + } ], "1444673419": [ - "https://testnet.skalenodes.com/v1/juicy-low-small-testnet" + { + "url": "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" + { + "url": "https://mainnet.skalenodes.com/v1/green-giddy-denebola" + }, + { + "url": "wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola" + } ], "1564830818": [ - "https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague" + { + "url": "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" + { + "url": "https://api.harmony.one" + }, + { + "url": "https://a.api.s0.t.hmny.io" + }, + { + "url": "https://api.s0.t.hmny.io" + }, + { + "url": "https://rpc.ankr.com/harmony", + "tracking": "limited", + "trackingDetails": "For service delivery purposes, we temporarily record IP addresses to set usage limits and monitor for denial of service attacks against our infrastructure. Though we do look at high-level data around the success rate of transactions made over the blockchain RPC, we do not correlate wallet transactions made over the infrastructure to the IP address making the RPC request. Thus, we do not store, exploit, or share any information regarding Personal Identifiable Information (PII), including wallet addresses. https://www.ankr.com/blog/ankrs-ip-address-policy-and-your-privacy/" + }, + { + "url": "https://harmony.api.onfinality.io/public", + "tracking": "limited", + "trackingDetails": "For the sole purpose of providing our service, we temporarily record IP addresses and origins to check against free limits, provide load balancing, prevent DOS attacks, and to determine where best to locate our nodes. We do not, and will never, correlate or link specific wallet addresses or transactions made over our infrastructure to the IP address or origin making the RPC request. After processing IP addresses, we discard the IP address value within 24 hours. Read more here: https://blog.onfinality.io/how-does-onfinality-deal-with-personal-information/" + }, + { + "url": "https://1rpc.io/one", + "tracking": "none", + "trackingDetails": "With the exception of data that will be public on chain, all the other metadata / data should remain private to users and other parties should not be able to access or collect it. 1RPC uses many different techniques to prevent the unnecessary collection of user privacy, which prevents tracking from RPC providers. https://docs.1rpc.io/technology/zero-tracking" + }, + { + "url": "https://hmyone-pokt.nodies.app", + "tracking": "none", + "trackingDetails": "What We Do Not Collect: User's IP address, request origin, request data. https://www.blog.pokt.network/rpc-logging-practices/" + }, + { + "url": "https://endpoints.omniatech.io/v1/harmony/mainnet-0/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://harmony-0.drpc.org" + }, + { + "url": "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" + { + "url": "https://s1.api.harmony.one" + }, + { + "url": "https://api.s1.t.hmny.io" + }, + { + "url": "https://harmony-1.drpc.org" + }, + { + "url": "wss://harmony-1.drpc.org" + } ], "1666700000": [ - "https://endpoints.omniatech.io/v1/harmony/testnet-0/public", - "https://api.s0.b.hmny.io" + { + "url": "https://endpoints.omniatech.io/v1/harmony/testnet-0/public", + "tracking": "none", + "trackingDetails": "All the data and metadata remain private to the users. No third party is able to access, analyze or track it. OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching. https://blog.omniatech.io/how-omnia-handles-your-personal-data" + }, + { + "url": "https://api.s0.b.hmny.io" + } ], "1666700001": [ - "https://api.s1.b.hmny.io" + { + "url": "https://api.s1.b.hmny.io" + } ], "1666900000": [ - "https://api.s0.ps.hmny.io" + { + "url": "https://api.s0.ps.hmny.io" + } ], "1666900001": [ - "https://api.s1.ps.hmny.io" + { + "url": "https://api.s1.ps.hmny.io" + } ], "1802203764": [ - "https://sepolia-rpc.kakarot.org" + { + "url": "https://sepolia-rpc.kakarot.org" + } ], "1918988905": [ - "https://testnet.rpc.rarichain.org/http" + { + "url": "https://testnet.rpc.rarichain.org/http" + } ], "2021121117": [ - "https://23.92.21.121:8545" + { + "url": "https://23.92.21.121:8545" + } ], "2046399126": [ - "https://mainnet.skalenodes.com/v1/elated-tan-skat", - "wss://mainnet.skalenodes.com/v1/elated-tan-skat" + { + "url": "https://mainnet.skalenodes.com/v1/elated-tan-skat" + }, + { + "url": "wss://mainnet.skalenodes.com/v1/elated-tan-skat" + } ], "3125659152": [ - "https://wallrpc.pirl.io" + { + "url": "https://wallrpc.pirl.io" + } ], "4216137055": [ - "https://frankenstein-rpc.oneledger.network" + { + "url": "https://frankenstein-rpc.oneledger.network" + } ], "11297108109": [ - "https://palm-mainnet.infura.io/v3/3a961d6501e54add9a41aa53f15de99b", - "https://palm-mainnet.public.blastapi.io" + { + "url": "https://palm-mainnet.infura.io/v3/3a961d6501e54add9a41aa53f15de99b", + "tracking": "limited", + "trackingDetails": "We collect wallet and IP address information. The purpose of this collection is to ensure successful transaction propagation, execution, and other important service functionality such as load balancing and DDoS protection. IP addresses and wallet address data relating to a transaction are not stored together or in a way that allows our systems to associate those two pieces of data. We retain and delete user data such as IP address and wallet address pursuant to our data retention policy. https://consensys.net/blog/news/consensys-data-retention-update/" + }, + { + "url": "https://palm-mainnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + } ], "11297108099": [ - "https://palm-testnet.public.blastapi.io" + { + "url": "https://palm-testnet.public.blastapi.io", + "tracking": "limited", + "trackingDetails": "All the information in our logs (log data) can only be accessed for the last 7 days at any certain time, and it is completely purged after 14 days. We do not store any user information for longer periods of time or with any other purposes than investigating potential errors and service failures. https://blastapi.io/privacy-policy" + } ], "28872323069": [ - "https://gitswarm.com:2096" + { + "url": "https://gitswarm.com:2096" + } ], "37714555429": [ - "https://testnet-v2.xai-chain.net/rpc" + { + "url": "https://testnet-v2.xai-chain.net/rpc" + } ], "88153591557": [ - "https://rpc.arb-blueberry.gelato.digital", - "wss://ws.arb-blueberry.gelato.digital" + { + "url": "https://rpc.arb-blueberry.gelato.digital" + }, + { + "url": "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" + { + "url": "https://londonpublic.alphabetnetwork.org" + }, + { + "url": "wss://londonpublic.alphabetnetwork.org/ws" + }, + { + "url": "https://main-rpc.com" + }, + { + "url": "wss://main-rpc.com/ws" + } ], "197710212030": [ - "https://rpc.ntity.io" + { + "url": "https://rpc.ntity.io" + } ], "197710212031": [ - "https://blockchain.haradev.com" + { + "url": "https://blockchain.haradev.com" + } ], "202402181627": [ - "https://gmnetwork-testnet.alt.technology" + { + "url": "https://gmnetwork-testnet.alt.technology" + } ], "383414847825": [ - "https://smart.zeniq.network:9545" + { + "url": "https://smart.zeniq.network:9545" + } ], "666301171999": [ - "https://mainnet.ipdc.io" + { + "url": "https://mainnet.ipdc.io" + } ], "6022140761023": [ - "https://molereum.jdubedition.com" + { + "url": "https://molereum.jdubedition.com" + } ], "2713017997578000": [ - "https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io" + { + "url": "https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io" + } ], "2716446429837000": [ - "https://dchain-2716446429837000-1.jsonrpc.sagarpc.io" + { + "url": "https://dchain-2716446429837000-1.jsonrpc.sagarpc.io" + } ] }; diff --git a/types/handler.ts b/types/handler.ts index 9c728ae..d9b7891 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -41,11 +41,12 @@ export type HandlerInterface = { export type HandlerConstructorConfig = { networkId: NetworkId; networkName: NetworkName | null; - networkRpcs: string[] | null; + networkRpcs: Rpc[] | null; autoStorage: boolean | null; cacheRefreshCycles: number | null; runtimeRpcs: string[] | null; rpcTimeout: number | null; + tracking?: Tracking; }; export type NetworkRPCs = typeof networkRpcs; @@ -62,3 +63,24 @@ type ChainsUnfiltered = { // filtered NetworkName union export type NetworkName = ChainsUnfiltered[NetworkId] | "anvil" | "hardhat"; + +export type Tracking = "yes" | "limited" | "none"; + +export type Rpc = { + url: string; + tracking?: Tracking; + trackingDetails?: string; + isOpenSource?: boolean; +}; + +export function getRpcUrls(rpcs: Rpc[]) { + const urls: string[] = []; + rpcs.forEach((rpc) => { + if (typeof rpc == "string") { + urls.push(rpc); + } else { + urls.push(rpc.url); + } + }); + return urls; +} diff --git a/types/rpc-handler.ts b/types/rpc-handler.ts index f70d413..ca8aecf 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, NetworkId, NetworkName } from "./handler"; +import { HandlerInterface, HandlerConstructorConfig, NetworkId, NetworkName, Rpc, Tracking, getRpcUrls } from "./handler"; import { RPCService } from "../src/services/rpc-service"; import { StorageService } from "../src/services/storage-service"; @@ -20,11 +20,11 @@ export class RPCHandler implements HandlerInterface { private _runtimeRpcs: string[] = []; private _latencies: Record = {}; - private _networkRpcs: string[] = []; + private _networkRpcs: Rpc[]; constructor(config: HandlerConstructorConfig) { this._networkId = config.networkId; - this._networkRpcs = networkRpcs[this._networkId]; + this._networkRpcs = this._filterRpcs(networkRpcs[this._networkId].rpcs, config.tracking || "yes"); this._networkName = networkIds[this._networkId]; this._initialize(config); } @@ -55,7 +55,7 @@ export class RPCHandler implements HandlerInterface { Object.keys(this._latencies).filter((rpc) => rpc.startsWith(`${this._networkId}__`)).length <= 1 || this._refreshLatencies >= this._cacheRefreshCycles; if (shouldRefreshRpcs) { - this._runtimeRpcs = networkRpcs[this._networkId]; + this._runtimeRpcs = getRpcUrls(this._networkRpcs); this._refreshLatencies = 0; } else { this._runtimeRpcs = Object.keys(this._latencies).map((rpc) => { @@ -119,7 +119,7 @@ export class RPCHandler implements HandlerInterface { return this._networkName; } - public getNetworkRpcs(): string[] { + public getNetworkRpcs(): Rpc[] { return this._networkRpcs; } @@ -185,6 +185,19 @@ export class RPCHandler implements HandlerInterface { } } + private _filterRpcs(networks: Rpc[], tracking: Tracking) { + return networks.filter((rpc) => { + if (tracking == "yes") { + return true; + } else if (tracking == "limited") { + return rpc.tracking == "limited" || rpc.tracking == "none"; + } else if (tracking == "none") { + return rpc.tracking == "none"; + } + return false; + }); + } + private _initialize(config: HandlerConstructorConfig): void { this._env = typeof window === "undefined" ? "node" : "browser"; this._updateConfig(config);