AVAX
AVAX ยท AVALANCHE

What is Avalanche?

Layer 1Institutional-grade
Last verified: April 2026
This page documents what Avalanche is, how it works, and what it has been used for โ€” based on the Avalanche whitepaper (Team Rocket, 2019) and official Avalanche 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.

In one sentence

Avalanche is a fast, low-cost blockchain that lets companies and projects launch their own custom mini-blockchains.

A fast chain with a twist

Avalanche does the usual smart-contract things โ€” runs apps, supports trading and DeFi โ€” and it's quick and cheap. But its standout idea is letting people create their own custom blockchains (called subnets) that still connect to the main network. Think of it as a city that lets you build your own gated neighbourhood with its own rules, while still being part of the city.

Why that's useful

A game, a bank, or a big project might want its own dedicated space โ€” its own fees, its own rules โ€” rather than sharing a crowded public chain. Avalanche makes that possible, which has attracted gaming and institutional projects. Its coin is called AVAX.

What to keep in mind

Avalanche is fast and flexible, but it competes hard with Ethereum's cheaper add-on networks and other quick chains for attention. Spreading activity across many custom chains can also split users up. As with all crypto, AVAX's price moves a lot โ€” treat it as a volatile holding.

๐ŸŸก A bit more detail

For when you want to go a little deeper.

The three chains in detail

The X-Chain (Exchange Chain) uses the Avalanche consensus protocol and a DAG (Directed Acyclic Graph) data structure rather than a linear chain. It is optimised for creating and transferring digital assets at high speed. The P-Chain (Platform Chain) coordinates validators across the network and manages subnet creation using the Snowman consensus protocol (a linear-chain version of Avalanche consensus). The C-Chain (Contract Chain) is a full EVM-compatible execution environment using Snowman consensus, where all Ethereum-compatible smart contracts run.

For most developers and users, Avalanche means the C-Chain โ€” Ethereum tools, wallets (MetaMask works directly), and contracts all function identically. The C-Chain's EVM compatibility was a deliberate choice to capture the existing Ethereum developer ecosystem without requiring them to learn new tools.

What it's used for in real life

Trader Joe โ€” a leading Avalanche DEX. Aave, Curve, and Benqi operate on the C-Chain. Deloitte built a FEMA disaster relief management system on Avalanche using subnet technology. The Avalanche Foundation partnered with multiple financial institutions on tokenised asset pilots. Avalanche hosts several major GameFi subnets including DeFi Kingdoms (DFK Chain) and Swimmer Network. As of 2026, several emerging market central banks are piloting CBDC infrastructure on private Avalanche subnets.

AVAX tokenomics

AVAX has a hard cap of 720 million tokens. The genesis block distributed 360 million. The remaining 360 million are released gradually as staking rewards. Transaction fees on Avalanche are burned โ€” permanently removed from supply โ€” rather than paid to validators. Validators are compensated only through staking rewards. This fee-burning mechanism creates deflationary pressure as network usage grows.

Minimum stake to become a validator is 2,000 AVAX. Delegators can stake a minimum of 25 AVAX with an existing validator. Staking lock-up periods range from 2 weeks to 1 year, with longer lock-ups receiving higher rewards.

How people evaluate this

Key Avalanche metrics: number of active subnets (indicator of ecosystem expansion), C-Chain TVL, daily transactions across all three chains, validator count and stake distribution, and AVAX burn rate. Avalanche's primary differentiator versus Ethereum and Solana is its institutional subnet business โ€” track subnet growth for forward-looking adoption signals. Live data: CoinGecko ยท Snowtrace.

Subnets: the institutional play

Creating a subnet on Avalanche requires burning 1 AVAX. The subnet creator defines: which tokens are used for fees, whether validators need to be permissioned or permissionless, whether the chain is public or private, and what consensus parameters to use. Validators on a subnet must also validate the Avalanche Primary Network (requiring 2,000 AVAX staked), which creates an economic link between subnet security and the main network.

This architecture allows a bank to run a fully permissioned blockchain for regulated financial instruments โ€” controlling who can transact and what the rules are โ€” while still being able to interact with public Avalanche infrastructure when needed. It is fundamentally different from launching a completely separate blockchain, because Avalanche's validator set provides a security baseline.

๐ŸŸฃ The full technical picture

For the technically curious.

The Avalanche consensus protocol

Avalanche introduced a new family of consensus protocols published under the pseudonym "Team Rocket" in 2018. The key innovation is repeated random subsampling: instead of every validator communicating with every other validator (O(nยฒ) complexity), each validator randomly samples a small subset of the network and updates its preference based on the sample. This process repeats until the network converges on a decision.

The protocol has three variants: Slush (the basic stateless version), Snowflake (adds a confidence counter), and Snowball (adds a preference counter). Snowball is the production version used in Avalanche. A validator samples k nodes, counts preferences, and updates its confidence. Once confidence exceeds a threshold ฮฒ across consecutive rounds, the transaction is finalised. The protocol's probabilistic safety and liveness proofs are provided in the whitepaper.

Source: Team Rocket (Maofan Yin, Dahlia Malkhi et al.), (2018/2019). Snowflake to Avalanche: A Novel Metastable Consensus Protocol Family for Cryptocurrencies. Avalanche Consensus Whitepaper

Why Avalanche consensus achieves sub-second finality

Classical BFT protocols (PBFT and derivatives) require O(nยฒ) message complexity and explicit voting rounds. Nakamoto consensus (Bitcoin's PoW) achieves probabilistic finality over multiple blocks, taking minutes. Avalanche's subsampling approach reduces communication overhead to O(kn) where k is the sample size (constant) โ€” effectively O(n) linear complexity โ€” while still achieving safety guarantees comparable to BFT protocols under reasonable network conditions.

The protocol requires only that honest validators hold a majority (>50%) of stake. For k=20 sample size and ฮฒ=20 consecutive rounds, the probability of incorrect finalisation is astronomically small (provably). In practice, the Avalanche Primary Network achieves finality in 1โ€“2 seconds under normal conditions.

Technical detail

Avalanche's Primary Network consists of three blockchains sharing a validator set. The X-Chain uses a DAG (Directed Acyclic Graph) structure where transactions reference multiple previous transactions as "parents" rather than a single previous block. This enables parallel processing of independent transactions. Conflict resolution in the DAG is handled by Avalanche consensus โ€” conflicting transactions cannot both be finalised; the network converges on one. The P-Chain and C-Chain use Snowman, a linear-chain variant of Avalanche consensus designed for smart contracts requiring strict transaction ordering.

Subnet security model

Each subnet uses its own validator set, but every subnet validator must also validate the Primary Network (minimum 2,000 AVAX staked). This requirement creates a minimum security baseline: a subnet inherits at least partial security from the Primary Network's validator economics. However, a subnet's dedicated validator set can be a strict subset of Primary Network validators โ€” meaning subnet security depends on the subset's total stake, which may be significantly smaller than the Primary Network's total stake.

Permissioned subnets (where validators require approval) can achieve stronger security guarantees for regulated applications by restricting who can validate. The Evergreen subnet model, introduced by Ava Labs, provides pre-built compliance-ready subnet infrastructure targeting financial institutions with KYC/AML requirements built into the validator layer.

Sources: Avalanche Platform Whitepaper (2020). docs.avax.network ยท Ava Labs Evergreen documentation.

Key protocol parameters

  • Consensus: Snowball (X-Chain, P-Chain), Snowman (C-Chain)
  • Finality time: <2 seconds (Primary Network)
  • Hard cap: 720 million AVAX
  • Minimum validator stake: 2,000 AVAX
  • Minimum delegation: 25 AVAX
  • Fee model: Fees burned (not paid to validators)
  • C-Chain: EVM-compatible, Chain ID 43114
  • Subnet creation cost: 1 AVAX (burned)
  • Staking lock-up: 2 weeks to 1 year
  • Smart contract languages: Solidity, Vyper (C-Chain)

Source: Avalanche Foundation documentation. docs.avax.network