Aurora RPC Endpoint
Fast, flat-rate Aurora RPC node provider — free tier, no KYC, HTTP & WebSocket.
Aurora is an EVM environment running on the NEAR Protocol, letting Ethereum applications deploy unchanged while settling on NEAR. It uses ETH as its gas token and offers sub-second block times.
auroraAbout Aurora
Aurora (chain ID 1313161554) launched its mainnet in 2021 as an EVM implemented via the Aurora Engine running on NEAR. Block times are around 1 second with roughly 2-second finality, and ETH is used for gas.
Aurora's AURORA token is a governance token for the AuroraDAO, not the gas asset. Standard EVM tooling such as Foundry, Hardhat, viem, and ethers.js works against Aurora's JSON-RPC.
Common Use Cases on Aurora
- Deploying Ethereum dApps on NEAR
- DeFi protocols
- Low-fee transactions
- DEX trading
- Cross-chain apps with NEAR
Aurora Ecosystem
Aurora hosts EVM DeFi deployments and connects to the NEAR ecosystem; Trisolaris is among its native DEXes.
HTTP Endpoint
https://rpc.swiftnodes.io/rpc/aurora?key=YOUR_API_KEYWebSocket Endpoint
wss://rpc.swiftnodes.io/ws/aurora?key=YOUR_API_KEYQuick Start: Connect to Aurora
cURL
curl -X POST https://rpc.swiftnodes.io/rpc/aurora?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/aurora?key=YOUR_API_KEY"
);
const blockNumber = await provider.getBlockNumber();
console.log("Aurora block:", blockNumber);viem
import { createPublicClient, http } from "viem";
const client = createPublicClient({
transport: http("https://rpc.swiftnodes.io/rpc/aurora?key=YOUR_API_KEY"),
});
const blockNumber = await client.getBlockNumber();web3.py
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/aurora?key=YOUR_API_KEY"))
print("Aurora block:", w3.eth.block_number)Add Aurora to MetaMask
https://rpc.swiftnodes.io/rpc/aurora?key=YOUR_API_KEYwss://rpc.swiftnodes.io/ws/aurora?key=YOUR_API_KEYBridging to Aurora
The Rainbow Bridge connects Ethereum, NEAR, and Aurora; additional third-party bridges support asset transfers.
Features of SwiftNodes for Aurora
- 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 Aurora
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: Aurora
What's Aurora's chain ID?
Aurora mainnet is chain ID 1313161554.
What token does Aurora use for gas?
Aurora uses ETH for gas. The AURORA token is a governance token for the AuroraDAO, not the gas asset.
How does Aurora relate to NEAR?
Aurora is an EVM implemented by the Aurora Engine running on the NEAR Protocol, so EVM contracts execute while transactions settle on NEAR.
Ready to start building on Aurora? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.