Networks
A consolidated reference for the QoreChain networks — chain identifiers, EVM chain IDs, token denomination, address prefixes, public endpoints, and standard service ports.
Networks at a glance
| Mainnet | Testnet | |
|---|---|---|
| Status | Live | Active testnet |
| Cosmos chain ID | qorechain-vladi | qorechain-diana |
| EVM chain ID (EIP-155) | 9801 (hex 0x2649) | 9800 (hex 0x2648) |
| Live since | 7 June 2026, 23:59 UTC | — |
| Chain version | v3.1.85 | v3.1.85 |
| Framework | Cosmos SDK v0.53 | Cosmos SDK v0.53 |
| Minimum gas price | 0.1uqor | 0.1uqor |
| Connection guide | Connecting to Mainnet | Connecting to Testnet |
Public endpoints
All public endpoints are served over HTTPS.
| Service | Mainnet | Testnet |
|---|---|---|
| Consensus RPC | https://rpc.qore.host | https://rpc-testnet.qore.host |
| Consensus WebSocket | wss://rpc.qore.host/websocket | wss://rpc-testnet.qore.host/websocket |
| Cosmos REST (LCD) | https://api.qore.host | https://api-testnet.qore.host |
| EVM JSON-RPC | https://evm.qore.host | https://evm-testnet.qore.host |
| EVM WebSocket | — | wss://evm-ws-testnet.qore.host |
| SVM JSON-RPC (Solana-compatible, read-only) | https://svm.qore.host | https://svm-testnet.qore.host |
| Block explorer | explore.qore.network | explore.qore.network (toggle to Testnet) |
| Downloads (binary / genesis / snapshot) | download.qore.host | — |
The public SVM endpoints are read-only (transaction submission is disabled at the edge); run your own node for SVM writes. For heavy or production workloads, run your own node — see Running a Node.
Token and addresses
| Item | Value |
|---|---|
| Display denom | QOR |
| Base denom | uqor (1 QOR = 10⁶ uqor) |
| Decimals by interface | Cosmos 6 (uqor) · EVM 18 (wei-style; 1 uqor = 10¹² wei) · SVM 9 (lamports; 1 uqor = 1,000 lamports) |
| HD coin type (BIP-44) | 118 |
| Bech32 account prefix | qor (e.g. qor1...) |
| Bech32 validator prefix | qorvaloper (e.g. qorvaloper1...) |
The three interfaces expose one unified native-QOR balance: the same key controls the same funds under its qor1... (Cosmos), 0x... (EVM), and base58 (SVM) address forms.
Standard ports
These are the standard service ports exposed by a QoreChain node you run yourself.
| Service | Port |
|---|---|
| Cosmos RPC | 26657 |
| P2P | 26656 |
| REST / API | 1317 |
| gRPC | 9090 |
| EVM JSON-RPC | 8545 |
| EVM JSON-RPC (WebSocket) | 8546 |
| SVM (Solana-compatible) JSON-RPC | 8899 |
| Prometheus metrics | 26660 |
Endpoints and access
- For node connection, peers, genesis, and snapshots, follow Connecting to Mainnet or Connecting to Testnet.
- For programmatic access from an application, use the QoreChain SDK, which resolves network configuration for you.
- The public block explorer is at explore.qore.network; the Dashboard at dashboard.qorechain.io includes its own explorer view, and the testnet Faucet is reachable there (see Dashboard Faucet).
- These docs are published at docs.qorechain.io.
Add to MetaMask
To add a QoreChain network to an EVM wallet such as MetaMask, use the EVM chain IDs above — 9801 for mainnet with https://evm.qore.host, and 9800 for testnet with https://evm-testnet.qore.host — with https://explore.qore.network as the block-explorer URL. See Wallet Setup for the step-by-step walkthrough.
Related
- Connecting to Mainnet — join the live
qorechain-vladinetwork. - Connecting to Testnet — join the Diana testnet.
- Exchange & Integrator Guide — deposits, withdrawals, and node operations for integrators.
- Chain Parameters — canonical chain configuration.
- SDK Overview — resolve network configuration from code.