Xphere RPC Node
Metaverse Chain

Connect to Xphere, the blockchain purpose-built for metaverse and virtual worlds. Experience optimized infrastructure for immersive experiences, virtual assets, and decentralized worlds.

2 M+

Requests per Day

99.9 %

Network Uptime

< 75 ms

Average Response Time

24/7

Technical Support

Specification Xphere Network

Technical characteristics and available endpoints

Xphere

Mainnet & Testnet Support

Chain ID 12345
Protocol HTTPS / WSS
Uptime 99.9%
Type Metaverse Chain
Focus Virtual Worlds
EVM Compatible Yes

Xphere is a purpose-built blockchain for metaverse and virtual world applications, providing optimized infrastructure for immersive experiences, virtual asset ownership, decentralized worlds, and persistent digital spaces. Through features enabling virtual land registry, avatar identity systems, in-world commerce, cross-world interoperability, and massive multiplayer coordination, Xphere creates foundation for Web3 metaverse where users truly own virtual assets and experiences transcend platform boundaries. This represents evolution from walled-garden virtual worlds to open, interoperable metaverse ecosystems.

Key capabilities:

  • Metaverse-optimized infrastructure
  • Virtual land and asset registry
  • Avatar identity systems
  • Cross-world interoperability
  • In-world commerce protocols
  • Persistent digital spaces
  • Full EVM compatibility
  • Scalable for multiplayer
  • Growing metaverse ecosystem

🔗 RPC Endpoints

HTTPS
https://rpc.crypto-chief.com/xphere/{YOUR_API_KEY}
WSS
wss://rpc.crypto-chief.com/xphere/ws/{YOUR_API_KEY}

Replace {YOUR_API_KEY} with your actual API key from the dashboard.

What is an Xphere RPC Node?

Access metaverse blockchain

An Xphere RPC node provides applications with access to blockchain infrastructure specifically designed for metaverse and virtual world applications. Xphere enables true ownership of virtual land, avatars, and digital assets; persistent worlds existing independent of any single company; interoperability between different virtual experiences; and creator economies where builders monetize directly without platform middlemen. This infrastructure transforms virtual worlds from centralized platforms into open, decentralized metaverse ecosystems.

Why metaverse needs blockchain

Traditional virtual worlds are walled gardens — platforms control everything, users own nothing, assets don't transfer between worlds, and creators pay high platform taxes. If platform shuts down, everything disappears. Blockchain solves these fundamental problems — users truly own virtual assets as NFTs, land persists on-chain regardless of any company, avatars and items work across compatible worlds, and creators receive fair compensation through smart contracts. Blockchain provides the ownership and interoperability layer enabling true metaverse.

Xphere advantages:

  • True ownership — assets as NFTs users actually control
  • Persistent worlds — virtual spaces existing on-chain forever
  • Interoperability — avatars and items working across worlds
  • Creator economy — direct monetization without platform rent
  • Decentralized — no single company controls the metaverse
  • Metaverse-native — optimized for virtual world use cases

Virtual land and asset registry

Virtual land ownership on Xphere works through NFTs representing parcels in metaverse worlds. Owners control land content, monetize through experiences, rent to others, or trade on marketplaces. Smart contracts enforce ownership rules, automate rent collection, enable fractional ownership, and coordinate adjacent land development. This creates digital real estate economy with same property rights as physical world but without geographic limitations, enabling limitless expansion and creativity.

How virtual land works on Xphere:

  1. Virtual worlds register land parcels as NFTs on Xphere
  2. Users purchase land through NFT marketplaces or auctions
  3. Owners receive NFT proving on-chain land ownership
  4. Smart contracts manage land rights, transfers, rentals
  5. Owners build experiences, monetize, or develop land
  6. Land persists on-chain regardless of world platform status

Cross-world interoperability

Xphere enables avatar and asset interoperability — same digital identity, wearables, and items working across multiple compatible metaverse platforms. Standards define how avatars render, how items transfer, and how achievements carry over, breaking down walled gardens forcing users to start fresh in each world. This creates unified metaverse identity and inventory system where users invest in assets that work everywhere, not just single platform, fundamentally changing virtual world economics.

This infrastructure powers the open, interoperable metaverse of the future.

Technical Documentation

Quick start for developers

Supported RPC Methods

Xphere supports all standard Ethereum JSON-RPC methods:

  • eth_blockNumber — current block number
  • eth_getBalance — XPER token balance
  • eth_call — execute read-only contract functions
  • eth_sendRawTransaction — broadcast signed transactions
  • eth_getTransactionReceipt — get transaction confirmation
  • eth_getLogs — query event logs (land transfers, avatar updates)
  • eth_gasPrice — current gas price
  • eth_estimateGas — estimate transaction gas cost
  • eth_subscribe — WebSocket event subscriptions

Code Examples

💻

JavaScript (ethers.js) — Xphere Virtual Land:

const { ethers } = require('ethers');

const provider = new ethers.JsonRpcProvider('https://rpc.crypto-chief.com/xphere/YOUR_API_KEY');

// Verify connection to Xphere
const network = await provider.getNetwork();
console.log('Chain ID:', network.chainId); // 12345
console.log('Network:', network.name); // xphere

// Virtual land registry contract
const LAND_REGISTRY = '0x...';
const landRegistryABI = [
  'function mintLandParcel(int256 x, int256 y, string worldId) external returns (uint256)',
  'function getLandOwner(int256 x, int256 y, string worldId) view returns (address)',
  'function transferLand(uint256 tokenId, address to) external',
  'function setLandContent(uint256 tokenId, string contentHash) external'
];

const landRegistry = new ethers.Contract(LAND_REGISTRY, landRegistryABI, wallet);

// Mint virtual land parcel
const mintTx = await landRegistry.mintLandParcel(
  100,              // x coordinate
  200,              // y coordinate
  'metaverse-city'  // world identifier
);
const receipt = await mintTx.wait();
console.log('Virtual land minted as NFT!');

// Update land content
const contentHash = 'ipfs://Qm...';
const updateTx = await landRegistry.setLandContent(tokenId, contentHash);
await updateTx.wait();
console.log('Land content updated on-chain!');

// Avatar interoperability
const AVATAR_SYSTEM = '0x...';
const avatarABI = [
  'function registerAvatar(string name, string metadataURI) external returns (uint256)',
  'function equipItem(uint256 avatarId, uint256 itemId) external',
  'function getAvatarInventory(uint256 avatarId) view returns (uint256[])'
];

const avatarSystem = new ethers.Contract(AVATAR_SYSTEM, avatarABI, wallet);
const avatarTx = await avatarSystem.registerAvatar('MetaUser', 'ipfs://avatar-metadata');
await avatarTx.wait();
console.log('Avatar registered on Xphere - works across all compatible worlds!');
💻

Python (web3.py) — Metaverse Commerce:

from web3 import Web3

w3 = Web3(Web3.HTTPProvider('https://rpc.crypto-chief.com/xphere/YOUR_API_KEY'))

print('Connected to Xphere:', w3.is_connected())
print('Chain ID:', w3.eth.chain_id)  # 12345
print('Latest block:', w3.eth.block_number)

# Metaverse marketplace contract
MARKETPLACE_ADDRESS = '0x...'
marketplace_abi = [
    {
        'name': 'listLandForSale',
        'type': 'function',
        'inputs': [
            {'name': 'tokenId', 'type': 'uint256'},
            {'name': 'price', 'type': 'uint256'}
        ],
        'outputs': []
    },
    {
        'name': 'purchaseLand',
        'type': 'function',
        'inputs': [{'name': 'listingId', 'type': 'uint256'}],
        'outputs': []
    }
]

marketplace = w3.eth.contract(
    address=MARKETPLACE_ADDRESS,
    abi=marketplace_abi
)

# List virtual land for sale
tx_hash = marketplace.functions.listLandForSale(
    land_token_id,
    w3.to_wei(1000, 'ether')  # Price in XPER
).transact({'from': owner_address})

receipt = w3.eth.wait_for_transaction_receipt(tx_hash)
print('Virtual land listed on Xphere marketplace!')

# Purchase virtual land
purchase_tx = marketplace.functions.purchaseLand(listing_id).transact(
    {'from': buyer_address, 'value': w3.to_wei(1000, 'ether')}
)
w3.eth.wait_for_transaction_receipt(purchase_tx)
print('Virtual land purchased - ownership transferred on-chain!')
print('True metaverse property rights!')
💻

WebSocket — Monitor Metaverse Activity:

const { ethers } = require('ethers');
const provider = new ethers.WebSocketProvider('wss://rpc.crypto-chief.com/xphere/ws/YOUR_API_KEY');

// Monitor virtual land transfers
const LAND_REGISTRY = '0x...';
const landTransferFilter = {
  address: LAND_REGISTRY,
  topics: [ethers.id('Transfer(address,address,uint256)')]
};

provider.on(landTransferFilter, (log) => {
  console.log('\n=== Virtual Land Transfer ===');
  console.log('Transaction:', log.transactionHash);
  console.log('Land ownership changed on-chain!');
});

// Monitor avatar registrations
const AVATAR_SYSTEM = '0x...';
const avatarFilter = {
  address: AVATAR_SYSTEM,
  topics: [ethers.id('AvatarRegistered(address,uint256,string)')]
};

provider.on(avatarFilter, (log) => {
  const decoded = ethers.AbiCoder.defaultAbiCoder().decode(
    ['address', 'uint256', 'string'],
    log.data
  );
  console.log('\n=== New Avatar Registered ===');
  console.log('Owner:', decoded[0]);
  console.log('Avatar ID:', decoded[1].toString());
  console.log('Name:', decoded[2]);
  console.log('Works across all Xphere-compatible worlds!');
});

console.log('Monitoring Xphere metaverse blockchain...');

Xphere Best Practices

  • True Ownership: Implement NFT-based asset ownership for all virtual items
  • Interoperability Standards: Follow Xphere standards for cross-world compatibility
  • Persistent Worlds: Design worlds that persist on-chain independent of servers
  • Creator Economy: Enable direct creator monetization through smart contracts
  • Land Mechanics: Implement virtual land management and development systems
  • Avatar Systems: Create interoperable avatar and inventory standards
  • Testing: Thoroughly test metaverse mechanics on Xphere testnet

Why choose us?

Metaverse infrastructure

Metaverse Native

Infrastructure optimized for virtual worlds with <75ms RPC latency for immersive experiences.

Production Ready

Battle-tested infrastructure achieving 99.9% uptime for persistent metaverse worlds.

Virtual World Analytics

Comprehensive monitoring of land transfers, avatar activity, marketplace trades, and metaverse metrics.

Global Metaverse

Worldwide infrastructure supporting Xphere's international virtual world ecosystem.

Infinite Expansion

Infrastructure designed to scale with limitless virtual worlds and growing metaverse population.

Metaverse Experts

24/7 support from engineers specialized in virtual worlds, NFT systems, and metaverse architecture.

Examples of Use

Build the metaverse

Xphere's metaverse-optimized blockchain enables virtual world platforms, land trading systems, avatar marketplaces, and decentralized immersive experiences.

Virtual Worlds

Create persistent metaverse worlds where users truly own land, avatars, and assets through blockchain verification.

Digital Real Estate

Build virtual land platforms enabling purchase, development, rental, and trading of metaverse property.

Avatar Marketplaces

Launch platforms trading avatars, wearables, and accessories that work across compatible metaverse worlds.

Virtual Commerce

Develop in-world shops, events, and experiences monetized directly through smart contracts.

Creator Platforms

Create tools enabling metaverse builders to monetize worlds, assets, and experiences without platform middlemen.

Cross-World Systems

Build infrastructure enabling avatars, items, and achievements to work across multiple virtual worlds.

Got questions?
we are here to help

Xphere is a purpose-built blockchain for metaverse and virtual worlds featuring virtual land registry, avatar systems, and cross-world interoperability.

Blockchain enables true asset ownership, persistent worlds independent of companies, cross-platform interoperability, and fair creator monetization.

Virtual land parcels are NFTs representing ownership of metaverse space. Owners control content, monetize experiences, and trade property.

Yes! Xphere enables avatar interoperability standards allowing same identity, inventory, and items to work across compatible metaverse platforms.

Yes, Xphere is fully EVM-compatible enabling Solidity smart contract development with metaverse-specific optimizations.

XPER is Xphere's native cryptocurrency used for transaction fees, metaverse commerce, land purchases, and ecosystem operations.

Yes! Assets are NFTs on blockchain that users control completely, portable between platforms, and persistent regardless of any company status.

Absolutely! Creators monetize through land sales, event tickets, asset trades, and experiences using smart contracts for direct payments.

Yes, we provide RPC access to both Xphere mainnet (Chain ID 12345) and testnet for development and testing.

Xphere is purpose-built for metaverse with optimized infrastructure for virtual worlds, land systems, avatars, and cross-world interoperability.

Pricing that grows with your needs.

Free

Start building on Web3 — no credit card.

$0
  • 5 reqs/sec RPC
  • 5 reqs/min Unified API
  • Ultimate chains
  • WSS, Statistics
  • Community support

Pay for use

Flexible pay-as-you-go for any workload.

From $10
  • 400 reqs/sec RPC
  • 300 reqs/min Unified API
  • 10 reqs/min AML
  • EventStream
  • Ultimate chains
  • WSS, Whitelists, Statistics
  • Support portal

Subscription

From $500 monthly plus 20% extra value.

From $500
  • 700 reqs/sec RPC
  • 500 reqs/min Unified API
  • 5 reqs/sec AML
  • EventStream
  • Ultimate chains
  • WSS, Whitelists, Statistics
  • Support portal

Enterprise

Tailored solution for expert builders

Custom terms

All Subscription features plus:

  • Flexible rate limits
  • Engineering team support
  • Custom SLA
  • Personal manager