WebSocket RPC

Fraxtal WebSocket RPC

Stream Fraxtal data in real time over a WebSocket connection instead of polling: new blocks and contract events. Every SwiftNodes plan includes a Fraxtal WebSocket endpoint alongside HTTP, with flat-rate pricing and no KYC.

Endpoint

wss://rpc.swiftnodes.io/ws/fraxtal?key=YOUR_API_KEY

The HTTP endpoint for Fraxtal is https://rpc.swiftnodes.io/rpc/fraxtal?key=YOUR_API_KEY. One API key works for both, and across all 75+ supported chains.

Subscribe to Fraxtal in real time

import { createPublicClient, webSocket } from "viem";

const client = createPublicClient({
  transport: webSocket("wss://rpc.swiftnodes.io/ws/fraxtal?key=YOUR_API_KEY"),
});

// Stream new Fraxtal blocks as they're produced (~~2 seconds apart)
const unwatch = client.watchBlocks({
  onBlock: (block) => console.log("new block", block.number),
});

What you can subscribe to

  • New block headers (newHeads): the subscription our health checks open on this chain
  • Contract event logs (logs): filter by address and topics
  • Pending transactions (newPendingTransactions), where the chain exposes a public mempool

Fraxtal is a Layer 2 (OP Stack), with ~~2 seconds block times and fast l2 confirmation; withdrawals to ethereum follow the optimistic challenge window (~7 days) finality. That cadence sets how frequently new-block subscriptions fire.

Frequently asked questions

Does SwiftNodes support Fraxtal WebSocket?

Yes. Every Fraxtal plan includes a WebSocket (wss://) endpoint alongside HTTP, with no separate add-on. Connect to wss://rpc.swiftnodes.io/ws/fraxtal?key=<key> and open subscriptions immediately.

What is the Fraxtal WebSocket URL?

wss://rpc.swiftnodes.io/ws/fraxtal?key=YOUR_API_KEY — replace YOUR_API_KEY with the key from your dashboard. The matching HTTP endpoint is https://rpc.swiftnodes.io/rpc/fraxtal?key=YOUR_API_KEY.

Is there a message rate limit on the WebSocket?

Yes — WebSocket throughput scales with your plan (1 msg/s on Free up to 250 msg/s on Pro), with concurrent-connection limits per plan. Within those limits, subscriptions stream in real time.

See the full Fraxtal RPC page for chain details, or the WebSocket docs for the complete method list.

Get a Fraxtal endpoint free

HTTP + WebSocket, flat-rate, pay with crypto or card, no KYC. Live in 30 seconds.

Get your API key