Solana RPC Nodes & Endpoints

Layer 1 (non-EVM)Gas: SOL

Solana is a high-throughput Layer 1 that is not EVM-based, so you talk to it with the Solana JSON-RPC API via @solana/web3.js rather than an EVM chain ID. Its 400ms slots and massive transaction volume make RPC latency and reliability the make-or-break factor for trading and consumer apps alike.

Coming soon: Ethereum mainnet is live on BLAZED.sh today. Dedicated Solana node hosting is on our roadmap. The endpoints below are third-party public RPCs you can use right now, and you can join the Solana waitlist below.

mainnet-beta
Cluster
~400ms
Slot Time
SOL
Gas Token
Non-EVM
VM

Solana public RPC endpoints

Free, third-party public endpoints for reads and prototyping. They are shared and rate-limited, not run by BLAZED.sh, so use a dedicated node for production traffic.

Solana (official)
https://api.mainnet-beta.solana.com
PublicNode
https://solana-rpc.publicnode.com

Connect with @solana/web3.js

import { Connection } from "@solana/web3.js";

const connection = new Connection("https://api.mainnet-beta.solana.com", "confirmed");
const slot = await connection.getSlot();
console.log("Solana slot:", slot);

Dedicated Solana RPC node vs shared endpoints

Solana's public mainnet-beta endpoint is explicitly not meant for production, and it shows: getProgramAccounts scans over busy programs get rejected or truncated, websocket fan-out is capped, and rate limits arrive quickly. Serious Solana workloads, whether trading systems, indexers, or consumer apps at scale, outgrow shared RPC faster than on any EVM chain, because the chain moves at 400 millisecond slots and the common methods are heavier.

A dedicated Solana RPC node changes what is possible rather than just how fast: full getProgramAccounts scans, as many account and slot subscriptions as your architecture wants, and transaction submission that is not queued behind a public crowd. On BLAZED.sh the model will match our Ethereum product: your bot or indexer runs on the node host and reads over a local socket.

Solana RPC latency: architecture over benchmarks

With 400 millisecond slots, Solana punishes network distance more than any EVM chain: a public-internet round trip of tens to low hundreds of milliseconds can span multiple slots before your code reacts. Co-location is the structural answer. On our live Ethereum product, calls from the co-located container complete in under 10 milliseconds, and dedicated Solana RPC will apply the same architecture to the chain where the gap between local and remote is worth the most.

What a dedicated Solana node costs

BLAZED.sh prices node access in per-request credits granted monthly by your subscription, with a deliberately narrow weight spread: most RPC methods cost 1 credit, a few heavy operations like txpool_content and the trace_replay methods cost 4, and responses over 100KB add 50 credits per MB. The Beta plan is €75 per month with 1M credits, 1 container and 2 scripts; Beta XL is €249 per month with 5M credits, 3 containers and 4 scripts; Enterprise plans add private nodes and archive access. These are the live Ethereum plans today, and pricing is still being finalized. Dedicated Solana nodes will launch on the same credit model, with the waitlist above deciding rollout priority.

Solana's chatty method mix of constant polling and subscriptions is exactly where per-method weighted billing hurts most, and where a narrow credit spread keeps the forecast down to counting calls.

See the full credit price list

Perfect for

DEX trading & MEV
Consumer apps
NFTs
Indexers

Get notified when Solana goes live

We prioritise new networks by demand. Drop your email and we'll let you know the moment dedicated Solana nodes are available on BLAZED.sh.

What is Solana?

Solana uses a single global state with parallel execution (Sealevel) and a proof-of-history clock to reach very high throughput and sub-second slot times. Its RPC surface differs entirely from Ethereum: methods like getSlot, getAccountInfo, getProgramAccounts, and sendTransaction, plus websocket account and slot subscriptions, and there is no EVM chain ID, so you select the cluster (mainnet-beta) by URL. Because block space is abundant but contention is real, the competitive edge for DEX trading, sniping, and market making comes from low-latency transaction submission and staked-connection priority. Heavy getProgramAccounts scans and websocket fan-out also strain public endpoints quickly, which is why serious Solana teams run dedicated RPC close to their bots and indexers.

Solana RPC: frequently asked questions

What is the Solana mainnet RPC endpoint?

The official public endpoint is https://api.mainnet-beta.solana.com. Solana selects networks by cluster URL (mainnet-beta, devnet, testnet) rather than an EVM chain ID.

How do I connect to Solana RPC?

Use @solana/web3.js: create a Connection with the cluster URL, then call methods like getSlot or getAccountInfo. Solana's JSON-RPC differs from Ethereum's, so EVM libraries do not apply.

What is a dedicated Solana RPC node?

A Solana RPC node reserved for one customer, with capacity for getProgramAccounts scans, large websocket fan-out, and fast transaction submission that public endpoints do not allow. On BLAZED.sh, dedicated Solana RPC is planned to follow our co-located model: your code on the node host, reads over a local socket.

Does BLAZED.sh host Solana nodes?

Ethereum mainnet is live today; Solana RPC is on the roadmap. Join the waitlist on this page to be notified and to help us prioritise it.

Building on Ethereum today?

Run your code on the node itself. No rate limits, no compute units, predictable credit pricing, sub-10ms RPC.