New

Solana Beta is now live on every BoltRPC trial.

ethereum-sepolia live
Ethereum

Ethereum

Connect to the Ethereum Sepolia testnet with BoltRPC's reliable RPC endpoint. Free 2-week trial, no credit card required.

chain id · 11155111 json-rpc 2.0 websocket

latency

In production at
Chainlink Enjin Tiingo Gains Network

Quick connect

Your endpoint, ready in one line.

Drop this URL into your RPC client, HTTP library or wallet config. No SDK install required.

HTTPS
https://eu.endpoints.matrixed.link/rpc/ethereum-sepolia?auth=YOUR_API_KEY
WebSocket
wss://eu.endpoints.matrixed.link/ws/ethereum-sepolia?auth=YOUR_API_KEY

Replace YOUR_API_KEY with your API key. Get a free key →

Connect

Pick your stack.

Copy-paste examples for the libraries you already use. Swap the API key, hit run.

import { ethers } from "ethers";

const provider = new ethers.JsonRpcProvider(
  "https://eu.endpoints.matrixed.link/rpc/ethereum-sepolia?auth=YOUR_API_KEY"
);

// Confirm you are on Sepolia (chain ID 11155111)
const network = await provider.getNetwork();
console.log(network.chainId); // 11155111n

Why BoltRPC

Built for teams that ship on Ethereum.

Free trial access with mainnet-parity infrastructure

BoltRPC's 2-week free trial includes testnet access. Your Sepolia workflow uses the same endpoint format, the same API key and the same infrastructure quality as your Ethereum mainnet setup. No separate accounts or configurations for testnet.

Built for application development workflows

Sepolia is the standard testnet for Ethereum smart contract development and dApp testing. BoltRPC gives your Sepolia endpoint the same reliability as your production connections. Automated test suites, staging environments and CI/CD pipelines that rely on Sepolia get consistent, stable RPC access.

Stable testnet infrastructure for CI/CD

Public testnet RPCs drop connections, hit rate limits and lag behind the chain tip. BoltRPC gives your Sepolia workflows the same stability as your mainnet setup. No broken test pipelines from unreliable endpoints.

Mirror your mainnet setup

Use BoltRPC on Sepolia and Ethereum mainnet from the same provider. One API key, one endpoint format, one configuration to manage. When you promote from Sepolia to mainnet, only the endpoint slug changes.

WebSocket support for event-driven testing

Subscribe to Sepolia testnet events via WebSocket at wss://eu.endpoints.matrixed.link/ws/ethereum-sepolia?auth=YOUR_API_KEY. Useful for integration test suites that need real-time block confirmation events, contract event subscriptions, or pending transaction monitoring during development.

EU-based infrastructure, ISO/IEC 27001:2022 certified

BoltRPC's endpoint infrastructure is operated by Matrixed.Link, certified to ISO/IEC 27001:2022. For teams in regulated industries or organizations with vendor security requirements, this matters even for testnet access as the same infrastructure serves both testnet and mainnet workloads.

Methods

Full JSON-RPC coverage.

Every standard Ethereum method you'd expect. Archive-only methods are available on request for qualifying plans.

standard

9
eth_call eth_sendRawTransaction eth_getBalance eth_blockNumber eth_getTransactionReceipt eth_getLogs eth_estimateGas eth_getCode javascript import { ethers } from "ethers"; const provider = new ethers.JsonRpcProvider( "https://eu.endpoints.matrixed.link/rpc/ethereum-sepolia?auth=YOUR_API_KEY" ); const wallet = new ethers.Wallet(process.env.PRIVATE_KEY, provider); // Deploy contract const factory = new ethers.ContractFactory(abi, bytecode, wallet); const contract = await factory.deploy(); await contract.waitForDeployment(); const address = await contract.getAddress(); console.log("Deployed to Sepolia:", address); // Verify deployment const code = await provider.getCode(address); console.log("Contract deployed:", code.length > 2);

FAQ

Ethereum, explained.

Common questions about connecting to Ethereum over BoltRPC.

Get started

Pick a chain. Point your client.

One endpoint format, 20+ networks, no SDK. Drop our URL into the client you already use and your integration is done.

https://eu.endpoints.matrixed.link/rpc/ {chain} ?auth= YOUR_API_KEY

No credit card required. · 14-day trial on any tier.