Pixelverse Public rippled Server (Final testing)
Low-latency XRPL access for community holders. If your wallet holds $PIXELVERSE or $XRPQ, you can use our gateway with a personal access token.
What is this?
A holder-only endpoint that proxies to our high-speed XRPL rippled backend. It’s tuned for fast swaps,
bot workflows, and general ledger queries - perfect when public nodes feel congested.
Eligibility
- Hold $PIXELVERSE or $XRPQ in the wallet you connect with.
- Open Dashboard while signed in with Xaman (XUMM) to fetch your personal URL.
Your access URL includes a unique token. Keep it private — treat it like a password.
Endpoint format
You’ll see a URL like:
https://pixelversexrpl.com:2321/rippled/<YOUR_ACCESS_TOKEN>
Use it for JSON-RPC over HTTPS or WebSocket (most clients will accept the same base):
- JSON-RPC:
https://pixelversexrpl.com:2321/rippled/<TOKEN> - WebSocket:
wss://pixelversexrpl.com:2321/rippled/<TOKEN>
Quick examples
curl — JSON-RPC
curl -sX POST "https://pixelversexrpl.com:2321/rippled/<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"method":"server_info","params":[{}]}'
Python (xrpl-py)
from xrpl.clients import JsonRpcClient
from xrpl.account import get_xrp_balance
URL = "https://pixelversexrpl.com:2321/rippled/<TOKEN>"
client = JsonRpcClient(URL)
address = "rEXAMPLEADDRESS..."
print("Balance:", get_xrp_balance(address, client))
Node.js (ripple-lib)
const { RippleAPI } = require('ripple-lib');
const api = new RippleAPI({
server: 'wss://pixelversexrpl.com:2321/rippled/<TOKEN>'
});
api.connect().then(async () => {
const info = await api.getServerInfo();
console.log(info);
await api.disconnect();
});
Best practices
- Keep your
<TOKEN>secret. Do not embed it in public repos. - Use one persistent WebSocket per app instead of opening many short-lived connections.
- Respect backoff on HTTP 429 (rate limiting) and reduce burst traffic.
- Avoid heavy historical crawls; this endpoint is optimized for live trading and light queries.
Troubleshooting
- 401/403: Token missing, invalid, or wallet not eligible. Reopen the Dashboard to refresh.
- 404: Path format wrong — ensure
/rippled/<TOKEN>is included. - 429: Slow down; you’ve hit a rate limit. Add retries with exponential backoff.
Still stuck? Email admin@pixelversexrpl.com.
Ready to connect?
Sign in, grab your personal URL, and point your app or bot at our endpoint for smoother XRPL interactions.