Tron (EVM) RPC Endpoint

Fast, flat-rate Tron (EVM) RPC node provider — free tier, no KYC, HTTP & WebSocket.

This endpoint exposes Tron's main network through an Ethereum-compatible JSON-RPC interface on chain ID 728126428, so EVM tooling can read and write to Tron — where the bulk of USDT circulation lives.

Network: Tron (EVM)
Type: EVM
Chain ID: 728126428
Slug: tron-evm
Native token: TRX (Tron)
Category: Layer 1

About Tron (EVM)

Tron is its own Layer 1 with a delegated proof-of-stake validator set, and it is the largest chain by stablecoin transfer volume, which is why an EVM-compatible interface to it is worth having alongside native Tron support. Contracts written for EVM can be reached through this interface, but Tron's economic model is not an Ethereum gas auction.

The important difference is resources. Tron charges through Energy and Bandwidth, consumed by execution and payload size, with fees settled in TRX — and TRX uses six decimals, not eighteen. Any code that assumes an 18-decimal native balance, or that estimates fees with an Ethereum gas-price model, will produce wrong numbers against this endpoint even though the JSON-RPC calls themselves succeed.

Common Use Cases on Tron (EVM)

  • USDT transfers and balances
  • Stablecoin payments
  • Contract interaction on Tron
  • Exchange withdrawal pipelines

HTTP Endpoint

https://rpc.swiftnodes.io/rpc/tron-evm?key=YOUR_API_KEY

WebSocket Endpoint

wss://rpc.swiftnodes.io/ws/tron-evm?key=YOUR_API_KEY

Quick Start: Connect to Tron (EVM)

cURL

curl -X POST https://rpc.swiftnodes.io/rpc/tron-evm?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/tron-evm?key=YOUR_API_KEY"
);

const blockNumber = await provider.getBlockNumber();
console.log("Tron (EVM) block:", blockNumber);

viem

import { createPublicClient, http } from "viem";

const client = createPublicClient({
  transport: http("https://rpc.swiftnodes.io/rpc/tron-evm?key=YOUR_API_KEY"),
});

const blockNumber = await client.getBlockNumber();

web3.py

from web3 import Web3

w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/tron-evm?key=YOUR_API_KEY"))
print("Tron (EVM) block:", w3.eth.block_number)

Add Tron (EVM) to MetaMask

Network Name: Tron (EVM) (SwiftNodes)
RPC URL: https://rpc.swiftnodes.io/rpc/tron-evm?key=YOUR_API_KEY
Chain ID: 728126428
Currency Symbol: TRX
WebSocket: wss://rpc.swiftnodes.io/ws/tron-evm?key=YOUR_API_KEY

Features of SwiftNodes for Tron (EVM)

  • 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 Tron (EVM)

Rate Limits

PlanPriceHTTP req/sWS msg/s
Free$0/mo21
Starter$49/mo5025
Growth$89/mo15075
Scale$149/mo300150
Pro$249/mo500250

Ready to start building on Tron (EVM)? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.