Connect to the Onchain Points Network
The Onchain Points ecosystem lives on a dedicated Layer 3 blockchain. You can connect using any EVM-compatible wallet or Web3 provider with the following network details:
Network Details | Value |
---|---|
Network Name | Onchain Points |
RPC URL | https://rpc.onchainpoints.xyz |
Chain ID | 17071 |
Explorer | https://explorer.onchainpoints.xyz |
Currency | $POP |
Connect with MetaMask
Automatically connect with MetaMask:
- Visit the Onchain Points Explorer
- Click on the "Connect with MetaMask" button located in the bottom left corner
Manually connect with MetaMask:
- Open MetaMask and click the network dropdown at the top
- Select "Add Network"
- Choose "Add Network Manually"
- Enter the network details:
Network Name: Onchain Points
New RPC URL: https://rpc.onchainpoints.xyz
Chain ID: 17071
Currency Symbol: POP
Block Explorer URL: https://explorer.onchainpoints.xyz - Click "Save"
Connect Programmatically
Using ethers.js:
const provider = new ethers.providers.JsonRpcProvider('https://rpc.onchainpoints.xyz');
const network = await provider.getNetwork();
console.log(`Connected to chain ID: ${network.chainId}`);
Using Web3.js:
const web3 = new Web3('https://rpc.onchainpoints.xyz');
const network = await web3.eth.getChainId();
console.log(`Connected to chain ID: ${network}`);