IOTA is a permissionless distributed ledger built for machine-to-machine value transfer and real-world asset tokenisation. For most of its history it was deliberately not a blockchain: instead of a linear chain of blocks it recorded transactions in a directed acyclic graph called the Tangle, and it charged no transaction fees — design choices aimed squarely at high-volume micropayments between IoT devices.

In May 2025 the IOTA Rebased upgrade replaced that architecture wholesale. The Tangle ledger gave way to a Move-based object ledger with delegated proof-of-stake consensus, real (if tiny) gas fees, and no central Coordinator. IOTA today is closer to a Sui-style Layer 1 than to the feeless DAG it started as. This section covers both the legacy model and the current one, because both still shape how the network is described in the wild.

From the Tangle to Rebased#

Era Ledger model Fees Decentralisation Smart contracts
Tangle (pre-2025) DAG of transactions; each tx approves two prior ones None Gated by a Foundation-run Coordinator Off-ledger only (IOTA EVM as an L2)
IOTA Rebased (May 2025+) Object ledger on the Move VM ~0.005 IOTA per tx, burned dPoS, ~150 permissionless validators, no Coordinator Native Move on L1; IOTA EVM still runs as L2

The pivot is the single most important thing to understand about IOTA. Most third-party explainers, exchange pages, and older documentation describe the Tangle as if it were still the production system. It is not — see The Tangle for what it was and why it was retired.

Two Smart-Contract Environments#

Post-Rebased, IOTA exposes two programming surfaces:

  • Move on Layer 1 — resource-oriented contracts executing directly against the new object ledger, with parallel execution and Sui-derived Mysticeti consensus.
  • IOTA EVM — a fully EVM-compatible chain where existing Solidity and ERC-20 tooling works unmodified. This remains the practical entry point for porting existing DeFi protocols.

The IOTA Foundation has signalled an intent to eventually fold EVM execution into Layer 1, but as of the Rebased mainnet the two run side by side, bridged for asset transfers.

Why It Matters for DeFi#

IOTA’s positioning is real-world assets, supply chain, and machine payments rather than pure on-chain speculation. The DeFi-relevant takeaways:

  • Solidity portability — IOTA EVM means most Ethereum-native dApps can deploy with config changes only.
  • Low, predictable fees — gas on L1 averages a fraction of a cent and can be sponsored, so applications can offer feeless UX to end users.
  • Staking yield — IOTA holders can delegate to validators for protocol rewards; see staking.
  • MEV posture — the Mysticeti pipeline limits some classes of maximal extractable value, though this should be treated as a design goal rather than a guarantee.

The IOTA Token#

The native token is IOTA (historically tickered MIOTA). Under Rebased it pays gas, is burned on every transaction, and is the staking asset for dPoS. A separate incentivised network, Shimmer (SMR), served as the staging ground for protocol upgrades; with Rebased live, Shimmer’s role is largely historical.

Wiki Pages#

The Tangle
IOTA Rebased
IOTA EVM