OpenScan.AI powers production explorers for multiple EVM networks, and the same platform is available for yours.
Live networks
XDC Network
The flagship deployment: xdcscan.io
- Chain ID: 50 (mainnet), 51 (Apothem testnet)
- API base:
https://xdcscan.io/api/v2 - Interactive API docs: xdcscan.io/api-docs
- Full feature set: contract verification, token and NFT views, watchlists, AI-powered summaries
EVS
Explorer for the EVS network, with the complete REST API and contract verification surface.
Wanchain
Cross-chain-focused network explorer including token views and verified contract decoding.
Velas
Explorer for the Velas EVM chain with full indexing of blocks, transactions, and tokens.
One API shape, every network
All instances expose the same Blockscout-compatible API at /api/v2. Code written against one OpenScan.AI explorer works against any of them by changing the base URL:
const EXPLORERS = { xdc: "https://xdcscan.io/api/v2", // evs, wanchain, velas: your instance URLs};
async function getBalance(base, address) { const res = await fetch(base + "/addresses/" + address); return (await res.json()).coin_balance;}This uniformity is why wallets and dev tools can support every OpenScan.AI-powered network with a single integration.
Add your network
Two paths:
- Explorer-as-a-Service — a managed, branded explorer for your chain. Start with Onboarding Your Chain.
- Self-hosting — run the open-source codebase yourself; see Self-Hosting and Connecting to a Network for RPC configuration.
Stay in touch
- GitHub: github.com/OpenScanAI
- X: @OpenScan_Ai