Taiko

Taiko occupies a distinctive position in the Ethereum L2 landscape: it is simultaneously the most Ethereum-equivalent ZK rollup (type-1 EVM) and the most decentralized from a sequencing standpoint (based rollup). Most ZK-EVMs sacrifice some EVM compatibility to make proofs cheaper to generate — zkSync Era uses a different bytecode (type 4); Polygon zkEVM targets type 2 (mostly compatible). Taiko targets type 1: its zkVM proves exactly the same EVM execution that Ethereum uses, making Taiko deployments identical to Ethereum mainnet. Meanwhile, Taiko replaces the typical centralized sequencer with L1 validators sequencing Taiko blocks, inheriting Ethereum’s liveness and censorship resistance guarantees directly. These properties come at a cost — type-1 proving is more expensive, and based sequencing means 12-second block times unless preconfirmations are used. Taiko’s design embodies a particular Ethereum-aligned philosophy: maximize compatibility and decentralization at the expense of raw throughput.


Background: Type-1 ZK-EVM

The ZK-EVM spectrum (Vitalik Buterin’s taxonomy):

Type EVM Equivalence Proving Speed Examples
Type 1 Byte-code identical Slowest / most expensive Taiko
Type 2 Mostly compatible; some EVM differences Moderate Scroll, Polygon zkEVM
Type 3 Partially compatible; some opcode gaps Faster Earlier Polygon zkEVM
Type 4 High-level language only (Solidity imports) Fastest zkSync Era

What type-1 means in practice:

  • Any Ethereum smart contract deploys to Taiko without modification
  • Any Ethereum tooling (Hardhat, Foundry, Ethers.js, wagmi) works on Taiko identically
  • Ethereum security research applies directly to Taiko (no new EVM dialect to audit)
  • The same Solidity bytecode runs; no recompiler needed

The tradeoff: Proving EVM execution is expensive. The EVM was not designed for ZK provability — it uses operations that are inefficient to represent as ZK constraints. Type-1 ZK-EVMs like Taiko require significantly more computational work per block than type-4 systems.


Based Sequencing on Taiko

Taiko is the primary production implementation of the based rollup design (described in [based-rollups]):

Traditional L2 sequencing:

  • Rollup team operates a sequencer server
  • Sequencer receives transactions and orders them
  • 100ms soft confirmations via centralized sequencer
  • If sequencer goes offline, L2 stops

Taiko based sequencing:

  1. Users submit transactions to Ethereum mempool
  2. L1 block proposers include Taiko block proposals in their L1 blocks
  3. Taiko block ordering is determined by L1 block inclusion order
  4. Taiko inherits L1 liveness (no separate sequencer to go down)
  5. Taiko inherits L1 censorship resistance (same validator set)

Taiko’s specific mechanism:

  • “Preconfirmation” lookahead: L1 validators who will propose the next block can provide Taiko preconfirmations (~100ms) before the full L1 block
  • This partially addresses the 12-second latency concern without introducing a centralized sequencer

Multi-Proof Architecture

Taiko’s security model uses multiple proof types simultaneously — a risk diversification approach:

Proof types Taiko supports:

  1. SGX proofs (Intel Trusted Execution Environment): Fast, hardware-based execution proofs; ready now but require trusting Intel hardware
  2. ZK proofs (zkEVM): Cryptographic validity proofs; computationally expensive but trust-minimized
  3. RISC Zero proofs (zkVM-based): Alternative ZK proving system

Multi-proof rationale: If one proof system has a vulnerability, the others provide backup. Production deployment uses SGX proofs for speed while ZK proofs develop — transitioning to pure ZK as the provers mature.

Prover market:

  • Anyone can run a Taiko prover and earn TAIKO rewards for submitting valid proofs
  • Prover competition: proving is competitive; fastest correct proof wins the reward
  • Proving is separate from proposing (based sequencing proposes blocks; provers prove them asynchronously)

TAIKO Token

TAIKO is the native token of the Taiko protocol.

[KEY STATS TABLE — Taiko (TAIKO)]

Token utility:

  • Staking by operations (block proposers deposit TAIKO bond)
  • Prover rewards (TAIKO for submitting valid proofs)
  • Governance (Taiko DAO)

TAIKO airdrop (May 2024):

  • Distributed to mainnet users and ecosystem participants
  • Part of a larger ecosystem allocation for community

The Taiko Mainnet Journey

Timeline:

  • Multiple public testnets (2022–2023): testing based sequencing and type-1 proving
  • March 2024: Alpha mainnet (Katla)
  • May 2024: Full mainnet launch + TAIKO token launch

Adoption:

  • Immediate DeFi deployments (Uniswap, Sushi, Synapse deployed to Taiko)
  • EVM equivalence meant existing projects could deploy with zero code changes
  • Slower TVL growth than Arbitrum/Base due to newer ecosystem and longer proving times

Taiko Ecosystem

Native protocols:

  • Taiko DEX (via Uniswap V3 deployment): Native DEX activity
  • Synapse: Cross-chain bridge on Taiko
  • LayerZero integration for multi-chain messaging

Infrastructure:

  • Raiko prover: Taiko’s reference prover implementation
  • PSE (Privacy and Scaling Explorations): Ethereum Foundation initiative contributing to type-1 ZK-EVM research
  • Based Boosts: Execution preconfirmation research

Taiko vs. Other ZK-L2s

Aspect Taiko zkSync Era Scroll Polygon zkEVM
EVM type Type 1 Type 4 Type 2 Type 2
Sequencer Based (L1 validators) Centralized Centralized Centralized
Prover Multi-proof (SGX + ZK) ZK-SNARK ZK-SNARK ZK-SNARK
Token TAIKO ZK SCR POL
Mainnet May 2024 March 2023 Oct 2023 March 2023
Ethereum alignment Highest Moderate High Moderate

Social Media Sentiment

Taiko is respected in the Ethereum research and implementation community for pursuing the most technically difficult and Ethereum-aligned design. The “type-1 ZK-EVM” goal was considered near-impossible as recently as 2022; Taiko’s shipping it in production demonstrates the pace of ZK-proving advances. However, the broader crypto market is more focused on user growth and DeFi TVL — areas where Taiko trails Arbitrum, Base, and even zkSync Era significantly. The “based rollup” design philosophy resonates strongly with Ethereum-alignment advocates but has less salience with retail DeFi users who primarily care about yield opportunities and gas fees. TAIKO token performance at launch was moderate; community engagement is high among developers but lower among yield-seeking DeFi participants. Long-term, if based preconfirmations mature and ZK proving costs continue to fall, Taiko is positioned to be both the most secure and most Ethereum-compatible rollup — an appealing combination for institutional DeFi.


Last updated: 2026-04

How to Use Taiko

  1. Get ETH via
  2. Bridge to Taiko at bridge.taiko.xyz
  3. Use any Ethereum tools (MetaMask, Foundry, wagmi) — Taiko is fully EVM-compatible
  4. Explore DeFi apps (Uniswap is live on Taiko)

Secure ETH:

Related Terms


Sources

Ben-Sasson, E., Bentov, I., Horesh, Y., & Riabzev, M. (2019). Scalable, Transparent, and Post-Quantum Secure Computational Integrity. Cryptology ePrint Archive, 2018/046.

Buterin, V. (2022). The Different Types of ZK-EVMs. Vitalik.ca Blog.

Drake, J. (2023). Based Rollups — Superpowers from L1 Sequencing. Ethereum Research Forum.

Goldberg, I., & Paterson, K. (2021). Trusted Execution Environments and Applications in Blockchain. IEEE Security and Privacy Magazine.

Setty, S. V. A., McPherson, R., Blumberg, A. J., & Walfish, M. (2012). Making Argument Systems for Outsourced Computation Practical (Sometimes). NDSS 2012.