Arbitrum Nova RPC Endpoint

Fast, flat-rate Arbitrum Nova RPC node provider — free tier, no KYC, HTTP & WebSocket.

Nova is an Arbitrum chain using the AnyTrust data-availability model: transaction data goes to a committee instead of Ethereum calldata, which cuts fees sharply at the cost of a different trust assumption.

Network: Arbitrum Nova
Type: EVM
Chain ID: 42170
Slug: arbitrum-nova
Native token: ETH (Ether)
Mainnet: August 2022
Category: Optimistic Rollup

About Arbitrum Nova

Arbitrum launched Nova in August 2022 as a companion to Arbitrum One for applications that prioritise cheap throughput over maximal data availability. Both are Nitro-stack optimistic rollups secured by fraud proofs and settlement on Ethereum, but Nova's cost structure makes it the usual choice for high-volume, low-value activity such as gaming and social applications.

From the RPC side Nova behaves like other Arbitrum chains — standard eth_* plus the chain-specific quirks of a sequenced rollup, including a gas limit field that is a sentinel rather than real capacity. The chain ID you need is 42170.

Common Use Cases on Arbitrum Nova

  • Gaming and high-frequency state
  • Social applications
  • Micro-payments
  • Cost-sensitive DeFi

HTTP Endpoint

https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY

WebSocket Endpoint

wss://rpc.swiftnodes.io/ws/arbitrum-nova?key=YOUR_API_KEY

Quick Start: Connect to Arbitrum Nova

cURL

curl -X POST https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'

ethers.js

import { JsonRpcProvider } from "ethers";

const provider = new JsonRpcProvider(
  "https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY"
);

const blockNumber = await provider.getBlockNumber();
console.log("Arbitrum Nova block:", blockNumber);

viem

import { createPublicClient, http } from "viem";

const client = createPublicClient({
  transport: http("https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY"),
});

const blockNumber = await client.getBlockNumber();

web3.py

from web3 import Web3

w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY"))
print("Arbitrum Nova block:", w3.eth.block_number)

Add Arbitrum Nova to MetaMask

Network Name: Arbitrum Nova (SwiftNodes)
RPC URL: https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY
Chain ID: 42170
Currency Symbol: ETH
WebSocket: wss://rpc.swiftnodes.io/ws/arbitrum-nova?key=YOUR_API_KEY

Features of SwiftNodes for Arbitrum Nova

  • Multiple load-balanced upstream nodes for high availability
  • Health-checked every 60 seconds with automatic failover
  • Free tier available — no credit card or KYC required
  • Flat-rate monthly pricing with no per-request fees
  • HTTP and WebSocket support
  • One API key works across all 75+ supported chains, including Arbitrum Nova

Rate Limits

PlanPriceHTTP req/sWS msg/s
Free$0/mo21
Starter$49/mo5025
Growth$89/mo15075
Scale$149/mo300150
Pro$249/mo500250

Ready to start building on Arbitrum Nova? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.