Taiko RPC Node
True Ethereum Equivalence

Connect to Taiko, the Type 1 zkEVM achieving perfect Ethereum equivalence. Experience zero-knowledge rollup security with no code changes required from Ethereum.

7 M+

Requests per Day

99.9 %

Network Uptime

< 100 ms

Average Response Time

24/7

Technical Support

Specification Taiko Network

Technical characteristics and available endpoints

Taiko (TAIKO)

Mainnet & Hekla Testnet Support

Chain ID 167000
Protocol HTTPS / WSS
Uptime 99.9%
Block Time ~12s
Type Type 1 zkEVM
EVM Compatible Yes (Equivalent)

Taiko is a Type 1 zkEVM (zero-knowledge Ethereum Virtual Machine), achieving true Ethereum equivalence — the highest form of EVM compatibility. Unlike other zkEVMs that modify the EVM for performance, Taiko proves Ethereum blocks directly, meaning any Ethereum application works on Taiko without any code changes. This 'based rollup' approach prioritizes decentralization and security through Ethereum's own validators.

Key capabilities:

  • Type 1 zkEVM — perfect Ethereum equivalence
  • Based rollup — Ethereum validators sequence blocks
  • Zero-knowledge proofs for security and scaling
  • No code changes from Ethereum required
  • 100% compatible with Ethereum tools and infrastructure
  • Decentralized sequencing (no single sequencer)
  • Multi-proof system for additional security
  • Open-source and fully permissionless
  • Community-driven development and governance

🔗 RPC Endpoints

HTTPS
https://rpc.crypto-chief.com/taiko/{YOUR_API_KEY}
WSS
wss://rpc.crypto-chief.com/taiko/ws/{YOUR_API_KEY}

Replace {YOUR_API_KEY} with your actual API key from the dashboard.

What is a Taiko RPC Node?

Access Type 1 zkEVM infrastructure

A Taiko RPC node provides applications with access to the most Ethereum-equivalent zkEVM, where literally any Ethereum application works without modification. Taiko's Type 1 zkEVM proves Ethereum blocks directly using zero-knowledge proofs, combining Ethereum's security and developer experience with L2 scalability.

What makes Type 1 zkEVM special

There are different types of zkEVMs, ranked by Ethereum equivalence. Type 1 is the highest — it proves Ethereum blocks exactly as they are, with no modifications. This means Taiko is literally Ethereum, just proven with zero-knowledge proofs for scalability. Unlike Type 2-4 zkEVMs that make tradeoffs for performance, Taiko prioritizes perfect compatibility.

Taiko advantages:

  • Type 1 zkEVM — perfect Ethereum equivalence
  • Based rollup — Ethereum validators sequence blocks
  • Zero changes — deploy Ethereum code as-is
  • Maximum security — inherits full Ethereum security
  • Decentralized — no centralized sequencer
  • Multi-proof — multiple proof systems for security

Based rollups explained

Taiko is a based rollup (also called L1-sequenced rollup), meaning Ethereum's own validators order Taiko transactions — not a separate sequencer. This eliminates centralization risks and MEV capture by rollup operators, making Taiko the most decentralized L2 design.

How based rollups work:

  1. Users submit transactions to Ethereum L1
  2. Ethereum validators include Taiko txs in L1 blocks
  3. Taiko state updated based on L1 transaction ordering
  4. Zero-knowledge proofs generated to verify execution
  5. Proofs submitted to Ethereum for verification

Multi-proof security

Taiko uses multiple proof systems simultaneously for defense in depth. If a bug is found in one proof system, others provide backup security. This multi-proof approach represents the highest security standard in zkEVM design.

Combined with based rollup sequencing, Taiko achieves unprecedented decentralization and security — though with tradeoffs in transaction speed compared to centralized sequencer designs.

Technical Documentation

Quick start for developers

Supported RPC Methods

Taiko supports ALL Ethereum JSON-RPC methods with perfect equivalence:

  • eth_blockNumber — current block number
  • eth_getBalance — ETH balance
  • eth_call — execute view functions
  • eth_sendRawTransaction — broadcast transactions
  • eth_getTransactionReceipt — transaction confirmation
  • eth_getLogs — event logs
  • eth_gasPrice — current gas price
  • eth_estimateGas — gas estimation
  • debug_traceTransaction — transaction tracing (Type 1!)
  • eth_subscribe — WebSocket subscriptions

Code Examples

💻

JavaScript (ethers.js) — Taiko Connection:

const { ethers } = require('ethers');

const provider = new ethers.JsonRpcProvider('https://rpc.crypto-chief.com/taiko/YOUR_API_KEY');

// Verify we're on Taiko
const network = await provider.getNetwork();
console.log('Chain ID:', network.chainId); // 167000

// Get ETH balance (Taiko uses ETH as gas token)
const balance = await provider.getBalance('0x...');
console.log('ETH on Taiko:', ethers.formatEther(balance));

// Deploy any Ethereum contract — no changes needed!
const factory = new ethers.ContractFactory(abi, bytecode, wallet);
const contract = await factory.deploy();
await contract.waitForDeployment();
console.log('Contract deployed:', await contract.getAddress());

// Type 1 zkEVM means EVERYTHING works exactly like Ethereum
💻

Python (web3.py) — Taiko Setup:

from web3 import Web3

w3 = Web3(Web3.HTTPProvider('https://rpc.crypto-chief.com/taiko/YOUR_API_KEY'))

print('Connected to Taiko:', w3.is_connected())
print('Chain ID:', w3.eth.chain_id)  # 167000
print('Latest block:', w3.eth.block_number)
print('Gas price:', w3.eth.gas_price)

# Literally any Ethereum code works on Taiko
balance = w3.eth.get_balance('0x...')
print(f'ETH: {balance / 1e18}')
💻

WebSocket — Monitor Taiko Network:

const { ethers } = require('ethers');
const provider = new ethers.WebSocketProvider('wss://rpc.crypto-chief.com/taiko/ws/YOUR_API_KEY');

// Monitor new blocks
provider.on('block', async (blockNumber) => {
  const block = await provider.getBlock(blockNumber);
  console.log(`Taiko block ${blockNumber}: ${block.transactions.length} txs`);
});

// Monitor any Ethereum event — Type 1 compatibility
const USDC = '0x...';
const filter = {
  address: USDC,
  topics: [ethers.id('Transfer(address,address,uint256)')]
};

provider.on(filter, (log) => {
  console.log('USDC transfer on Taiko:', log);
});

Taiko Best Practices

  • Zero Changes: Deploy Ethereum contracts without modification
  • Perfect Compatibility: All Ethereum tools work (Hardhat, Foundry, Remix)
  • Based Rollup: Understand L1 sequencing may add latency
  • Multi-Proof: Benefit from multiple proof system security
  • Decentralization: No centralized sequencer to depend on
  • Testing: Test on Hekla testnet, but Ethereum testnet works too!

Why choose us?

Type 1 zkEVM infrastructure

Perfect Equivalence

Infrastructure supporting true Ethereum equivalence delivering <60ms latency for Type 1 zkEVM operations.

Multi-Proof Security

Enterprise infrastructure supporting multiple proof systems with 99.9% uptime and maximum security.

zkEVM Analytics

Monitor proof generation, based rollup activity, Ethereum finality, and decentralized sequencing metrics.

Global Infrastructure

Strategically deployed nodes ensuring optimal performance for Type 1 zkEVM verification.

Proof Scaling

Infrastructure scales with zero-knowledge proof generation handling growing Taiko adoption.

zkEVM Experts

24/7 support from engineers specialized in Type 1 zkEVM, zero-knowledge proofs, and based rollups.

Examples of Use

Build with perfect Ethereum equivalence

Taiko's Type 1 zkEVM enables any Ethereum application to scale without code changes, making it ideal for projects prioritizing security and compatibility.

Ethereum App Migration

Migrate existing Ethereum dApps to Taiko with zero code changes. Perfect equivalence means instant compatibility.

Security-Critical Apps

Build applications where maximum security is paramount. Taiko's multi-proof based rollup provides highest security standard.

DeFi Protocols

Deploy DeFi protocols requiring Ethereum-level security with L2 economics. Type 1 equivalence ensures no compatibility issues.

Development Tools

Build development tools and infrastructure for Taiko. Type 1 means all Ethereum tooling works perfectly.

Data Availability Apps

Create applications leveraging Taiko's based rollup for transparent, decentralized data availability.

Community Dapps

Develop community-driven applications aligned with Taiko's decentralization and open-source ethos.

Got questions?
we are here to help

Taiko is a Type 1 zkEVM achieving perfect Ethereum equivalence through zero-knowledge proofs and based rollup architecture.

Type 1 is the highest zkEVM category, proving Ethereum blocks exactly as they are with no modifications for maximum compatibility.

Based rollups use Ethereum's own validators for sequencing instead of separate sequencer, maximizing decentralization and eliminating MEV capture.

No! Type 1 equivalence means deploy your Ethereum contract to Taiko without ANY code changes.

Type 1 prioritizes compatibility and security over raw performance. Based sequencing adds latency vs centralized sequencers.

Taiko uses multiple zero-knowledge proof systems simultaneously for defense in depth — if one has bugs, others provide backup security.

Yes, Taiko is the most decentralized L2 design. Based rollup means no centralized sequencer; Ethereum validators sequence blocks.

ALL Ethereum tools — Hardhat, Foundry, Remix, Metamask, etc. Type 1 equivalence ensures perfect compatibility.

Yes, we provide RPC access to both Taiko mainnet (167000) and Hekla testnet for development.

Taiko is Type 1 (perfect equivalence) while others are Type 2-4 (modified for performance). Taiko prioritizes compatibility and decentralization.

Pricing that grows with your needs.

Free

Start building on Web3 — no credit card.

$0
  • 5 reqs/sec RPC
  • 5 reqs/min Unified API
  • Ultimate chains
  • WSS, Statistics
  • Community support

Pay for use

Flexible pay-as-you-go for any workload.

From $10
  • 400 reqs/sec RPC
  • 300 reqs/min Unified API
  • 10 reqs/min AML
  • EventStream
  • Ultimate chains
  • WSS, Whitelists, Statistics
  • Support portal

Subscription

From $500 monthly plus 20% extra value.

From $500
  • 700 reqs/sec RPC
  • 500 reqs/min Unified API
  • 5 reqs/sec AML
  • EventStream
  • Ultimate chains
  • WSS, Whitelists, Statistics
  • Support portal

Enterprise

Tailored solution for expert builders

Custom terms

All Subscription features plus:

  • Flexible rate limits
  • Engineering team support
  • Custom SLA
  • Personal manager