Zora Network RPC Nodes & Endpoints

Ethereum L2 (OP Stack, Superchain)Gas: ETHChain ID 7777777

Zora Network is an OP-Stack Layer 2 built by Zora Labs around NFTs, creator tools, and on-chain media. It settles to Ethereum, pays gas in ETH, and connects with chain ID 7777777, and its mint-driven traffic pattern makes RPC capacity a real design concern.

Coming soon: Zora node hosting is on our roadmap; Ethereum mainnet is the chain we run in production today. The endpoints below are third-party public RPCs you can use right now.

7777777
Chain ID
~2s
Block Time
ETH
Gas Token
OP Stack
Rollup Type

Zora Network RPC URLs you can use right now

Third-party endpoints, free and shared. They are comfortable on a normal day and least available during a drop, which is the only moment a mint UI genuinely needs them.

Zora (official)
https://rpc.zora.energy
dRPC
https://zora.drpc.org

Connect with ethers.js

import { JsonRpcProvider } from "ethers";

const provider = new JsonRpcProvider("https://rpc.zora.energy");
const blockNumber = await provider.getBlockNumber();
console.log("Zora block:", blockNumber);

Mint rushes are exactly when shared endpoints throttle

Zora's traffic is shaped by drops. When a mint goes live, thousands of collectors arrive in the same minute, and every marketplace, bot, and indexer watching the collection starts hammering eth_getLogs and token-URI reads at once. Public endpoints throttle under exactly that load, which means the moments that matter most on Zora, the first minutes of a mint, are the moments shared RPC is least reliable.

A dedicated Zora RPC node keeps your platform responsive through the rush: log queries over a hot collection run at hardware speed, websocket subscriptions stay attached, and no shared quota decides whether your feed updates. On BLAZED.sh, dedicated goes further than a private URL: your indexer or media backend runs in a container on the node host, so reads travel a local socket rather than the public internet.

Resolving token metadata is the workload, not the transfers

The interesting engineering problem on Zora is not tracking who minted what, which is a straightforward log walk. It is turning those tokens into something you can render. Each one requires a tokenURI or uri call, and for ERC-1155 the returned string frequently contains a placeholder your client has to substitute before the URI is usable at all. A feed showing a few hundred tokens is therefore a few hundred contract reads before a single image loads, and those reads are serial with respect to the user's patience.

Then the URI usually points at IPFS, and you have left the chain entirely. Gateway latency dominates from that point, gateways rate limit independently of your RPC provider, and pinning status varies by collection, so a token that resolved last week may hang today. The pattern that works is to treat metadata as a cache to be populated ahead of time rather than resolved on request: walk the collection's logs, batch the URI reads, fetch and store the metadata yourself, and serve the feed from your own storage. That turns a user-facing latency problem into a background job, and the background job is bounded by how fast you can issue contract reads, which is precisely where a dedicated node changes the numbers.

Zora RPC latency is a distance problem

Zora produces a block roughly every two seconds, but mint UX is decided in far smaller windows: the difference between showing a token as available or already claimed is a read that either returns immediately or queues at a remote gateway for tens to low hundreds of milliseconds. On our live Ethereum product, co-locating code with the node keeps calls under 10 milliseconds over a local socket, and dedicated Zora nodes will use the same architecture.

What dedicated Zora node hosting will cost

BLAZED.sh prices node access in per-request credits granted monthly by your subscription, with a deliberately narrow weight spread: most RPC methods cost a single credit, and only a handful of heavy operations cost more. Dedicated Zora nodes will launch on the same credit model, with the waitlist deciding rollout priority.

NFT indexing on Zora is log queries and state reads, single-credit calls almost without exception, so a collection backfill prices out by block range and a live feed by its polling rate.

See the full credit price list and plans

Perfect for

NFT mints & marketplaces
Creator platforms
Media indexing
Consumer apps

Get notified when Zora goes live

Zora demand comes from creator platforms and marketplaces, whose traffic is bursty in a very specific way. Tell us about your drops and it helps us plan capacity.

What is Zora Network?

Zora Network launched in 2023 as an OP-Stack rollup and is a member of the Superchain, so it behaves like other OP-Stack chains from an integration standpoint: EVM execution, ETH for gas, data posted to Ethereum, and standard tooling that works after swapping the RPC URL to chain ID 7777777. What sets it apart is what runs on it. Zora's protocol and marketplace centre on minting and trading media NFTs, so activity concentrates around drops: a popular mint compresses thousands of transactions and metadata reads into minutes. Indexers tracking collections, marketplaces resolving token URIs, and creator platforms rendering feeds all lean on eth_getLogs and state reads at exactly those moments, which is why the RPC layer, not the chain's throughput, is usually the first thing teams need to upgrade.

Zora RPC: frequently asked questions

What is the Zora RPC URL and chain ID?

Zora Network mainnet uses chain ID 7777777. The official public RPC is https://rpc.zora.energy; https://zora.drpc.org is a common alternative for reads and testing.

Which Zora RPC provider should I use?

For prototyping, the official public endpoint is enough. Once you index collections or serve real traffic, pick a provider offering dedicated Zora capacity rather than a shared URL, because mint spikes are precisely when shared endpoints throttle. BLAZED.sh will offer dedicated Zora RPC nodes with co-located compute; join the waitlist above.

What is a dedicated Zora RPC node?

A Zora Network node reserved for one customer instead of shared behind a public URL. It keeps eth_getLogs and metadata reads fast during mint rushes and removes shared rate limits. On BLAZED.sh your indexer or backend will run on the node host itself, reading over a local socket.

Does BLAZED.sh host Zora nodes?

Ethereum mainnet is live on BLAZED.sh today; Zora Network is on the roadmap. Join the waitlist on this page to be notified and to help us prioritise it.

Building on Ethereum today?

Mainnet is live on BLAZED.sh now. If you index NFTs on L1 as well, that pipeline can run on the node host and read over a local socket today.