XRP EVM WSS RPC
The XRP EVM WebSocket interface provides real-time access to the EVM-compatible XRP endpoint. It is designed for applications that use Ethereum-style JSON-RPC subscriptions while working with the XRP EVM network.
The XRP EVM WebSocket interface provides real-time access to the EVM-compatible XRP endpoint. It is designed for applications that use Ethereum-style JSON-RPC subscriptions while working with the XRP EVM network.
Endpoint
wss://xrp-evm.nownodes.io/wss/{YOUR_API_KEY}
When to use it
- Subscribe to new heads and chain updates.
- Listen for logs emitted by smart contracts.
- Build EVM-compatible wallets, dApps, indexers, and monitoring tools that need live events.
Authentication
Add your NOWNodes API key to the WSS endpoint path:
wss://xrp-evm.nownodes.io/wss/{YOUR_API_KEY}
Example subscription
Copied!
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_subscribe",
"params": ["newHeads"]
}Supported use cases
- Block listeners using
newHeads. - Contract event tracking using
logssubscriptions. - Real-time backend automation for EVM-compatible applications.
Notes
Use the HTTP EVM RPC pages for standard request-response methods. Use this WSS page when you need a persistent subscription channel.