Evmos RPC Endpoint
Fast, flat-rate Evmos RPC node provider — free tier, no KYC, HTTP & WebSocket.
Evmos is a proof-of-stake EVM Layer 1 built with the Cosmos SDK on the CometBFT consensus engine, designed to bring Ethereum-compatible smart contracts to the Cosmos ecosystem. SwiftNodes provides Evmos mainnet RPC over HTTP and WebSocket.
evmosAbout Evmos
Evmos launched its mainnet in 2022 (the current evmos_9001-2 chain followed an early relaunch in April 2022). It runs CometBFT (Tendermint) BFT consensus with roughly 2-second block times and instant finality.
Evmos pairs a full Ethereum EVM with Cosmos IBC, letting Solidity contracts interoperate with the Cosmos ecosystem. The native EVMOS token (18 decimals, base denom atto EVMOS) is used for staking, governance, and gas. Evmos has since evolved into the evmOS stack for building EVM chains on Cosmos.
Common Use Cases on Evmos
- EVM smart contracts on Cosmos
- Cross-chain DeFi via IBC
- Staking and governance
- Token issuance
- Interchain application development
Evmos Ecosystem
Hosts EVM-native DeFi and NFT applications and connects to the broader Cosmos ecosystem; the underlying evmOS stack is used to build additional EVM-on-Cosmos chains.
HTTP Endpoint
https://rpc.swiftnodes.io/rpc/evmos?key=YOUR_API_KEYWebSocket Endpoint
wss://rpc.swiftnodes.io/ws/evmos?key=YOUR_API_KEYQuick Start: Connect to Evmos
cURL
curl -X POST https://rpc.swiftnodes.io/rpc/evmos?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/evmos?key=YOUR_API_KEY"
);
const blockNumber = await provider.getBlockNumber();
console.log("Evmos block:", blockNumber);viem
import { createPublicClient, http } from "viem";
const client = createPublicClient({
transport: http("https://rpc.swiftnodes.io/rpc/evmos?key=YOUR_API_KEY"),
});
const blockNumber = await client.getBlockNumber();web3.py
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/evmos?key=YOUR_API_KEY"))
print("Evmos block:", w3.eth.block_number)Add Evmos to MetaMask
https://rpc.swiftnodes.io/rpc/evmos?key=YOUR_API_KEYwss://rpc.swiftnodes.io/ws/evmos?key=YOUR_API_KEYBridging to Evmos
Evmos uses Cosmos IBC for inter-chain transfers and connects to Ethereum and other ecosystems through bridges such as Axelar and Gravity Bridge.
Features of SwiftNodes for Evmos
- 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 Evmos
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: Evmos
What's Evmos's chain ID?
Evmos mainnet is EVM chain ID 9001 (Cosmos chain ID evmos_9001-2).
Is Evmos EVM-compatible?
Yes - Evmos is the canonical EVM chain on Cosmos and runs a full Ethereum-compatible EVM.
Does Evmos support IBC?
Yes - Evmos supports Cosmos IBC for transfers with other Cosmos chains alongside its EVM.
Is WebSocket supported?
Yes - SwiftNodes provides HTTP and WebSocket (wss://) endpoints with eth_subscribe support.
Ready to start building on Evmos? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.