1// XDC Gateway — drop-in anywhere you use eth_*
2import { ethers } from 'ethers';
3
4const provider = new ethers.JsonRpcProvider(
5 "https://rpc.xshorts.news.xdcrpc.com/mainnet"
6);
7
8// Fetch live XDC block
9const block = await provider.getBlockNumber();
10console.log("Block:", block);