Berachain RPC Endpoint
Fast, flat-rate Berachain RPC node provider — free tier, no KYC, HTTP & WebSocket.
Berachain is an EVM-identical Layer 1 built on a Proof-of-Liquidity consensus model. Instead of rewarding raw staking, Proof-of-Liquidity ties validator rewards to liquidity provided to the ecosystem, aiming to align chain security with on-chain economic activity.
berachainAbout Berachain
Berachain launched its mainnet in February 2025. It is built with the BeaconKit framework on CometBFT consensus while remaining fully EVM-identical, so Solidity contracts and standard Ethereum tooling deploy unchanged. The chain uses a tri-token model: BERA for gas, BGT (a non-transferable governance token earned by providing liquidity) for emissions and voting, and HONEY, a native stablecoin.
Proof-of-Liquidity routes block rewards through BGT to liquidity providers and the protocols they support, creating a flywheel intended to keep liquidity and security on-chain. The model drew a large pre-launch ecosystem of DeFi protocols building specifically around BGT incentives.
Common Use Cases on Berachain
- Liquidity-incentivized DeFi (BGT emissions)
- Deploying existing Ethereum contracts unchanged
- Native stablecoin (HONEY) applications
- Validator participation tied to liquidity provision
- Yield and liquidity-routing strategies
Berachain Ecosystem
Berachain's ecosystem centers on its native DeFi — BEX (DEX), Berps (perps), Bend (lending) — plus a wide set of third-party protocols competing for BGT-directed emissions. Being EVM-identical, mainstream Ethereum protocols port over directly.
HTTP Endpoint
https://rpc.swiftnodes.io/rpc/berachain?key=YOUR_API_KEYWebSocket Endpoint
wss://rpc.swiftnodes.io/ws/berachain?key=YOUR_API_KEYQuick Start: Connect to Berachain
cURL
curl -X POST https://rpc.swiftnodes.io/rpc/berachain?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/berachain?key=YOUR_API_KEY"
);
const blockNumber = await provider.getBlockNumber();
console.log("Berachain block:", blockNumber);viem
import { createPublicClient, http } from "viem";
const client = createPublicClient({
transport: http("https://rpc.swiftnodes.io/rpc/berachain?key=YOUR_API_KEY"),
});
const blockNumber = await client.getBlockNumber();web3.py
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/berachain?key=YOUR_API_KEY"))
print("Berachain block:", w3.eth.block_number)Add Berachain to MetaMask
https://rpc.swiftnodes.io/rpc/berachain?key=YOUR_API_KEYwss://rpc.swiftnodes.io/ws/berachain?key=YOUR_API_KEYBridging to Berachain
Canonical and third-party bridges (including LayerZero-based routes) connect Berachain to Ethereum and other chains for moving assets in and out.
Features of SwiftNodes for Berachain
- 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 Berachain
Rate Limits
| Plan | Price | HTTP req/s | WS msg/s |
|---|---|---|---|
| Free | $0/mo | 2 | 1 |
| Starter | $49/mo | 50 | 25 |
| Growth | $89/mo | 150 | 75 |
| Scale | $149/mo | 300 | 150 |
| Pro | $249/mo | 500 | 250 |
Frequently Asked Questions: Berachain
What's Berachain's chain ID?
Berachain mainnet is chain ID 80094. The Bepolia testnet uses a separate ID.
What is Proof-of-Liquidity?
Proof-of-Liquidity is Berachain's consensus-incentive model: validator rewards flow through BGT to liquidity providers and the protocols they back, tying chain security to on-chain liquidity rather than raw staking.
Is Berachain EVM-compatible?
Yes — it's EVM-identical. Solidity contracts, audits, and tools like Foundry, Hardhat, viem, and ethers.js work without modification.
What are BERA, BGT, and HONEY?
BERA is the gas token, BGT is the non-transferable governance/emissions token earned by providing liquidity, and HONEY is Berachain's native stablecoin.
Ready to start building on Berachain? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.