Network

Purpose‑built Layer 1 for Web3 gaming. Specs and endpoints coming with Testnet.

Status

Testnet & Explorer

Testnet

Coming soon

Consensus

To be announced

Explorer

Open Explorer

Specs

Designed for Games

  • Fast finality and predictable fees
  • Scalable throughput tuned for real‑time gameplay
  • On‑chain rewards and asset utility across ecosystem titles

Testnet Endpoints

Endpoints are placeholders until Testnet is live.

Nodes

Run a Node

Below is a preliminary guide you can use once Testnet details are published. Replace placeholders with the actual chain configs and binaries.

Prerequisites

  • OS: Ubuntu 22.04 LTS or Debian 12 (recommended)
  • CPU/RAM: 4 vCPU, 8 GB RAM minimum; SSD storage
  • Network: stable connection; open ports for RPC and p2p

Artifacts

Quick Start (placeholder)

# 1) Download artifacts
# (Replace sct-node URL when binaries are published)
wget https://downloads.vireonprotocol.com/testnet/sct-node && chmod +x sct-node
wget https://www.vireonprotocol.com/genesis.json
wget https://www.vireonprotocol.com/config.toml

# 2) Initialize data directory
./sct-node init --home ~/.sct --genesis genesis.json --config config.toml

# 3) Start the node (p2p + RPC)
./sct-node start \
  --home ~/.sct \
  --rpc.addr 0.0.0.0:8545 \
  --ws.addr 0.0.0.0:8546 \
  --p2p.addr 0.0.0.0:26656

# 4) Verify local RPC
curl http://127.0.0.1:8545 -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'

# 5) Optional: run behind Nginx/HAProxy and enable TLS
            

Expose Public Endpoints

  • RPC: rpc.testnet.vireonprotocol.com → load balancer → nodes
  • WebSocket: ws.testnet.vireonprotocol.com → load balancer → nodes

Replace hosts, ports, and flags with the final Testnet parameters when announced.