DOT
DOT · POLKADOT

What is Polkadot?

Layer 0Multi-chain
Last verified: April 2026
This page documents what Polkadot is and how it works — based on the Polkadot whitepaper (Wood, 2016) and official Web3 Foundation documentation. Nothing here is financial advice. Always do your own research.

👋 New to this? Just start reading at the top — it begins in plain English and gets more detailed as you scroll. Jump to any level:

🟢 The simple version

Plain English — no jargon. Start here.

One sentence that captures it

Polkadot is a network of blockchains — a "blockchain of blockchains" — that lets many specialised chains share security and communicate with each other, built by one of Ethereum's original co-founders.

The problem Polkadot was built to solve

By 2016, it was clear that blockchains were proliferating. Bitcoin handled payments. Ethereum handled smart contracts. But these chains could not talk to each other. And building a new blockchain from scratch was expensive and dangerous — security required a large network of validators, which took years to build.

Gavin Wood — who co-founded Ethereum and wrote its technical specification (the Yellow Paper) — left to build Polkadot with a different vision: a base layer that provides shared security to many specialised chains simultaneously, and a communication protocol so those chains can pass messages and assets between each other.

Think of it like a country's transport infrastructure. Instead of every city building its own independent highway system, Polkadot provides the motorways — and individual chains (called parachains) connect to them.

What is a parachain?

A parachain is a specialised blockchain that runs in parallel and connects to Polkadot's central chain (called the Relay Chain). Each parachain can be optimised for a specific purpose — privacy, DeFi, gaming, identity, or anything else — and it borrows its security from Polkadot's validator set rather than building its own. This is the core innovation: shared security without sacrificing specialisation.

Parachain slots are scarce and awarded through auctions where projects must lock up DOT. Projects that cannot win a slot can use "parathreads" — a pay-per-use model for less frequent access. As of 2025, Polkadot moved to an "Agile Coretime" model that replaced the slot auction with a more flexible marketplace for computation time.

What is DOT used for?

DOT has three roles: governance (DOT holders vote on protocol changes), staking (validators lock DOT to secure the Relay Chain), and bonding (projects lock DOT to secure a parachain slot). It is not primarily a payment currency — it is the utility token that governs and secures the network.

Is it legal in India?

Yes. DOT is a VDA under Indian law. The 30% tax and 1% TDS apply. See India regulation.

🟡 A bit more detail

For when you want to go a little deeper.

The Relay Chain and parachain architecture

Polkadot's architecture has three layers. The Relay Chain is the central chain — it provides consensus and security but deliberately has no smart contract functionality. Parachains are specialised chains that connect to the Relay Chain and inherit its security. Bridges connect Polkadot to external networks like Ethereum or Bitcoin.

The Relay Chain's validators validate both Relay Chain blocks and parachain blocks simultaneously. Parachain blocks (called "parablocks") are validated by a randomly assigned subset of Relay Chain validators before being included. This gives parachains Relay Chain-level security without each needing its own validator set — a parachain with 10 users gets the same security as one with 10 million, because security comes from DOT staked on the Relay Chain.

What it's used for in real life

Notable Polkadot parachains: Moonbeam (EVM-compatible smart contracts, allowing Ethereum dApps to deploy on Polkadot), Acala (DeFi hub with its own stablecoin aUSD), Astar (smart contracts supporting both EVM and WASM), and Centrifuge (real-world asset tokenisation). The Kusama network is Polkadot's "canary network" — a live, value-bearing chain where upgrades are tested before Polkadot deployment.

Cross-chain messaging: XCM

Cross-Consensus Messaging (XCM) is Polkadot's language for parachains to communicate. XCM is not a transport protocol — it defines what messages mean and what effects they have. A parachain can use XCM to transfer assets to another parachain, execute remote transactions, or query another chain's state. This inter-chain communication is what distinguishes Polkadot from simply being a collection of independent chains.

Governance: OpenGov

Polkadot's governance system (OpenGov, launched 2023) is one of the most sophisticated on-chain governance systems in crypto. Any DOT holder can submit a referendum. Voting power is based on tokens multiplied by a conviction factor — the longer you lock your tokens, the more your vote counts. There are multiple parallel tracks for different types of proposals (treasury spending, runtime upgrades, small tips) with different approval thresholds and enactment timelines. The system operates entirely on-chain with no off-chain committees.

How people evaluate this

Key Polkadot metrics: number of active parachains, cross-chain XCM transaction volume, total DOT staked (security indicator), active governance referenda, and coretime utilisation (post-Agile Coretime). Polkadot's differentiation is architectural rather than raw performance — its value is interoperability and shared security, not TPS. Live data: CoinGecko · Polkascan.

🟣 The full technical picture

For the technically curious.

The whitepaper: Wood's original design

Gavin Wood published the Polkadot whitepaper in 2016, titled "Polkadot: Vision for a Heterogeneous Multi-Chain Framework." The core contribution is the concept of pooled security — a single Relay Chain that validates multiple heterogeneous chains in parallel, distributing security guarantees across all connected chains proportionally to total stake. The whitepaper formalises the notion of "parachain validity" — what it means for a Relay Chain validator to confirm a parachain block without executing the full parachain state transition themselves.

Source: Wood, G. (2016). Polkadot: Vision for a Heterogeneous Multi-Chain Framework. polkadot.network/whitepaper

GRANDPA and BABE: dual consensus

Polkadot uses two consensus mechanisms in tandem. BABE (Blind Assignment for Blockchain Extension) is a block production mechanism — it determines which validator produces each block using a verifiable random function (VRF), similar in design to Ouroboros Praos. GRANDPA (GHOST-based Recursive ANcestor Deriving Prefix Agreement) is a finality gadget — it finalises chains of blocks rather than individual blocks, allowing it to finalise many blocks at once when the network is healthy and recover gracefully from network partitions. Together they provide both fast probabilistic finality (BABE) and strong economic finality (GRANDPA).

Nominated Proof of Stake (NPoS)

Polkadot uses Nominated Proof of Stake — DOT holders can nominate up to 16 validators they trust. The protocol selects an active validator set (currently 297 validators) from nominations, optimising for equal stake distribution across validators to maximise security. The election algorithm used is a variant of the sequential Phragmén method, which achieves proportional representation in the validator set. Nominators share in validator rewards and face slashing if their nominated validators misbehave.

Technical detail

Parachain validation uses an Availability and Validity (AnV) protocol. When a parachain collator produces a block candidate, it is checked by a small randomly-assigned subset of validators (backing). The block's erasure-coded data chunks are distributed across all validators (availability). A larger random subset then performs approval checking. This layered approach means the full parachain state need not be replicated on the Relay Chain — only validity proofs and erasure-coded availability data. This is the core technical mechanism enabling Polkadot to scale to many parachains simultaneously.

Key protocol parameters

  • Consensus: BABE (block production) + GRANDPA (finality)
  • Staking model: Nominated Proof of Stake (NPoS)
  • Active validators: 297 (as of 2026)
  • Parachain slots: Up to 100 (Agile Coretime model from 2025)
  • DOT supply: ~1.4 billion (inflation ~10% annually, governance-adjustable)
  • Smart contracts on Relay Chain: No (deliberately)
  • Cross-chain protocol: XCM (Cross-Consensus Messaging)
  • Runtime language: Rust (compiled to WASM)
  • Canary network: Kusama (KSM)

Source: Web3 Foundation documentation. docs.polkadot.network