QL1 Track Record
- FoxxOne has run QL1 validator infrastructure for 18+ months.
- FoxxOne has run the public QL1 RPC stack for 18+ months.
- The public QL1 RPC shown here is the current Chainlist-visible endpoint.
The Guide
Connect to unlock theme variants across the site.
Electronic Thumb
Connect here, then use the address button for account and network options.
FoxxOne house colours for standard issue navigation.
Connected travellers can uncover two hidden traces on the homepage for each theme.
Current traveller
Disconnected from the Infinite lanes.
The guide indicates your site skin is still mostly standard issue.
Detailed endpoint references with visuals, copyable URLs, quick-start snippets, and wallet setup guidance.
Need proactive validator signal instead of checking dashboards manually? Use FoxxOne Validator Alerts for low-noise Telegram monitoring.
Need to run a validator or your own RPC node? See the official Infinite Drive docs.
Running a validator? Get Telegram alerts for missed blocks, jail events, governance updates, and stake changes.
These are operational facts, not marketing claims. The goal is to show what FoxxOne runs, how long it has been live, and where the current public dependency sits.
Recommended OVH server ranges for Validator and RPC nodes, based on FoxxOne operations experience.
| Role | Recommended | Why |
|---|---|---|
| Validator Node | KS-4 / KS-5 (Kimsufi) | NVMe + real cores, stable consensus performance, cost-efficient entry point. |
| Public RPC Node | SYS-1 / SYS-2 (SoYouStart) | More CPU and memory headroom for external traffic and tooling load. |
Recommended websites relevant to wallet security and infrastructure setup.
Cold-storage wallet options for operators and users securing long-term assets.
Domains, DNS, Private Email, SSL, WordPress, and starter hosting for validator, RPC, and ecosystem project websites.
Encrypted remote access for validator and RPC operations.
Dedicated server options with strong hardware-to-price value for validator and RPC infrastructure.
Bare-metal Ryzen server options with unmetered 1 Gbps bandwidth and NVMe storage.
Disclosure: Some links in this section are affiliate links. If you use them, FoxxOne may earn a commission at no extra cost to you.
Official Infinite builder and operator references for docs, public assets, and wallet-connect tooling.
Official documentation covering chain usage, validator and RPC setup paths, and broader integration guidance.
Public API endpoints, chain data, references, and utility links for Infinite ecosystem development.
FoxxOne-operated QL1 endpoints. Live checks are available on the status page for RPC, JSON-RPC, EVM RPC, gRPC, and P2P.
Ethereum-compatible JSON-RPC endpoint for wallets and dApps. Recommended endpoint for Chainlist, MetaMask, and EVM tooling.
Add to Wallet (MetaMask / Keplr / etc)
QOM Layer One (QL1)
RPC URL: https://evm-rpc-ql1.foxxone.one
Chain ID: 766
Currency Symbol: QOM
Block Explorer: Use QL1 explorer
Tip: Chainlist can auto-fill the same values. Quick JSON-RPC Test (curl)
curl -X POST "https://evm-rpc-ql1.foxxone.one" \
-H "content-type: application/json" \
--data '{"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]}' ethers.js
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider("https://evm-rpc-ql1.foxxone.one");
const block = await provider.getBlockNumber();
console.log(block);
Associated with the Tendermint RPC service that underpins the QL1 blockchain. Exposes core consensus and chain-level information.
Comet/Tendermint Status (curl)
curl "https://rpc.foxxone.one/status"
Provides access to JSON-RPC for backend apps interacting with QL1. Supports queries and transaction submissions.
Quick JSON-RPC Test (curl)
curl -X POST "https://json-rpc.foxxone.one" \
-H "content-type: application/json" \
--data '{"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]}'
Cosmos SDK gRPC endpoint for integrations and developer tooling. Intended for gRPC-compatible clients, not browser wallets.
gRPC Note
Endpoint: rpc.foxxone.one:9090
Use gRPC-compatible tooling (grpcurl, app SDKs, indexers).
Available services/methods depend on the remote node configuration.
Tendermint P2P connectivity between nodes. Required for validator connectivity and chain synchronization; not for end-user wallets.
P2P Usage Note
Host: p2p.foxxone.one
For validator/node networking and sync only.
Not a wallet or dApp RPC endpoint. Community/public QL1 endpoints operated by AYC. Not operated by FoxxOne.
Ethereum-compatible JSON-RPC endpoint for QOM Layer One (QL1). Community/public endpoint operated by AYC (not FoxxOne).
Add to Wallet (MetaMask / Keplr / etc)
QOM Layer One (QL1)
RPC URL: https://evm-rpc-ql1.mschihuahua.org
Chain ID: 766
Currency Symbol: QOM
Block Explorer: Use official Infinite explorer
Tip: Chainlist can auto-fill the same values. Quick JSON-RPC Test (curl)
curl -X POST "https://evm-rpc-ql1.mschihuahua.org" \
-H "content-type: application/json" \
--data '{"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]}' ethers.js
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider("https://evm-rpc-ql1.mschihuahua.org");
const block = await provider.getBlockNumber();
console.log(block);
Comet/Tendermint-style RPC endpoint for QOM Layer One (QL1) chain and consensus data. Community/public endpoint operated by AYC (not FoxxOne).
Comet/Tendermint Status (curl)
curl "https://comet-rpc-ql1.mschihuahua.org/status" Community/public Infinite endpoints for mainnet reference. These endpoints are not operated by FoxxOne.
Ethereum-compatible JSON-RPC endpoint for wallets and dApps on Infinite Improbability Drive. Community/public endpoint, not operated by FoxxOne.
Add to Wallet (MetaMask / Keplr / etc)
Infinite Improbability Drive
RPC URL: https://evm-rpc.infinitedrive.xyz
Chain ID: 421018
Currency Symbol: 42
Block Explorer: Use official Infinite explorer
Tip: Chainlist can auto-fill the same values. Quick JSON-RPC Test (curl)
curl -X POST "https://evm-rpc.infinitedrive.xyz" \
-H "content-type: application/json" \
--data '{"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]}' ethers.js
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider("https://evm-rpc.infinitedrive.xyz");
const block = await provider.getBlockNumber();
console.log(block);
Comet/Tendermint-style RPC endpoint for chain and consensus data on Infinite Improbability Drive. Community/public endpoint, not operated by FoxxOne.
Comet/Tendermint Status (curl)
curl "https://comet-rpc.infinitedrive.xyz/status"
gRPC endpoint for service integrations and node tooling on Infinite Improbability Drive. Community/public endpoint, not operated by FoxxOne.
gRPC Note
Endpoint: grpc.infinitedrive.xyz
Use gRPC-compatible tooling (grpcurl, app SDKs, indexers).
Available services/methods depend on the remote node configuration. Community/public Infinite mainnet endpoints operated by Panda. Not operated by FoxxOne. Currently in performance testing.
Ethereum-compatible JSON-RPC endpoint for Infinite Improbability Drive mainnet. Community/public endpoint operated by Panda (not FoxxOne).
Add to Wallet (MetaMask / Keplr / etc)
Infinite Improbability Drive
RPC URL: https://evm-rpc.infinitepanda.xyz
Chain ID: 421018
Currency Symbol: 42
Block Explorer: Use official Infinite explorer
Tip: Chainlist can auto-fill the same values. Quick JSON-RPC Test (curl)
curl -X POST "https://evm-rpc.infinitepanda.xyz" \
-H "content-type: application/json" \
--data '{"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]}' ethers.js
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider("https://evm-rpc.infinitepanda.xyz");
const block = await provider.getBlockNumber();
console.log(block);
Comet/Tendermint-style RPC endpoint for Infinite Improbability Drive mainnet. Community/public endpoint operated by Panda (not FoxxOne).
Comet/Tendermint Status (curl)
curl "https://comet-rpc.infinitepanda.xyz/status"
gRPC endpoint for Infinite Improbability Drive mainnet integrations and tooling. Community/public endpoint operated by Panda (not FoxxOne).
gRPC Note
Endpoint: grpc.infinitepanda.xyz
Use gRPC-compatible tooling (grpcurl, app SDKs, indexers).
Available services/methods depend on the remote node configuration. Community/public Infinite testnet endpoints for testing only. These endpoints are not operated by FoxxOne.
TESTNET Ethereum-compatible JSON-RPC endpoint for Infinite Improbability Drive testnet. Community/public endpoint, not operated by FoxxOne.
Add to Wallet (MetaMask / Keplr / etc)
Infinite Improbability Drive Testnet
RPC URL: https://evm-rpc-testnet.infinitedrive.xyz
Chain ID: 421018001
Currency Symbol: TEST42
Block Explorer: Use official Infinite explorer
Tip: Chainlist can auto-fill the same values. Quick JSON-RPC Test (curl)
curl -X POST "https://evm-rpc-testnet.infinitedrive.xyz" \
-H "content-type: application/json" \
--data '{"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]}' ethers.js
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider("https://evm-rpc-testnet.infinitedrive.xyz");
const block = await provider.getBlockNumber();
console.log(block);
TESTNET Comet/Tendermint-style RPC endpoint for Infinite Improbability Drive testnet. Community/public endpoint, not operated by FoxxOne.
Comet/Tendermint Status (curl)
curl "https://comet-rpc-testnet.infinitedrive.xyz/status"
TESTNET gRPC endpoint for Infinite Improbability Drive testnet integrations and tooling. Community/public endpoint, not operated by FoxxOne.
gRPC Note
Endpoint: grpc-testnet.infinitedrive.xyz
Use gRPC-compatible tooling (grpcurl, app SDKs, indexers).
Available services/methods depend on the remote node configuration.