Glossary

Native Token

A native token is the base currency of a blockchain network, used to pay transaction fees and incentivize validators.

Key Takeaways

  • A native token is the protocol-level currency of a blockchain, built directly into the ledger rather than deployed via a smart contract. BTC, ETH, and SOL are all native tokens.
  • Native tokens serve three primary functions: fee payment, network security (through staking or mining), and governance. No smart contract token can replace these roles.
  • Layer 2 networks take different approaches to native tokens: some use the parent chain's native token for gas while issuing a separate governance token, and others operate with no token of their own at all.

What Is a Native Token?

A native token is the primary digital asset of a blockchain network, embedded directly into the protocol's consensus and execution layers. Unlike ERC-20 tokens or BRC-20 tokens, which are created by deploying application code on top of an existing chain, a native token exists from the network's genesis block. Its transfer and balance logic are handled by the protocol itself, not by a contract.

Every blockchain has exactly one native token. Bitcoin has BTC. Ethereum has ETH. Solana has SOL. These assets are not optional add-ons: they are integral to how each network functions. Without its native token, a blockchain cannot process transactions, reward validators or miners, or enforce its economic security model.

The distinction matters because native tokens and application tokens have fundamentally different trust assumptions. A native token's rules are enforced by every node running the protocol. An application token's rules are enforced only by the smart contract that created it, which can contain bugs, admin keys, or upgrade mechanisms that alter its behavior.

How It Works

Native tokens operate at the deepest layer of a blockchain's architecture. Their mechanics differ from smart contract tokens in several important ways.

Protocol-Level Accounting

A native token's balances are tracked by the blockchain's core state machine. On Bitcoin, balances are represented as UTXOs (unspent transaction outputs). On Ethereum, each address has a balance field stored directly in the account state trie. In both cases, the protocol itself manages these records without any intermediary contract.

Application tokens work differently. An ERC-20 token's balances are stored inside a smart contract's internal storage mapping. Transferring an ERC-20 token requires calling the contract's transfer() function, which executes bytecode and updates the mapping. This consumes more gas than a native ETH transfer because it involves contract storage operations (SSTORE).

// Native ETH transfer: uses the CALL opcode with a value field
// Cost: 21,000 gas (base transaction cost)
{
  "to": "0xRecipient...",
  "value": "1000000000000000000"  // 1 ETH in wei
}

// ERC-20 transfer: calls a contract function
// Cost: ~45,000-65,000 gas (base + contract execution + SSTORE)
{
  "to": "0xTokenContract...",
  "data": "0xa9059cbb..."  // transfer(address,uint256) selector + args
}

Three Core Functions

Native tokens serve roles that no application token can fill, because these roles are hardcoded into the protocol's consensus rules.

  1. Fee payment: every transaction on a blockchain must pay a fee denominated in the native token. On Bitcoin, fees are measured in satoshis per virtual byte. On Ethereum, fees use a base-fee-plus-tip model introduced by EIP-1559, denominated in gwei (one billionth of ETH). On Solana, fees include a fixed base fee plus optional priority fees, typically costing fractions of a cent. You cannot send an ERC-20 token without first holding ETH to pay gas.
  2. Network security: native tokens incentivize the participants who secure the network. Bitcoin miners earn BTC through block rewards and transaction fees. Ethereum validators must stake 32 ETH to participate in proof of stake. Solana validators stake SOL to earn rewards and participate in consensus. The economic value of the native token directly determines the cost of attacking the network.
  3. Governance: some native tokens grant holders the ability to influence protocol decisions. Solana launched formal on-chain governance in 2026, requiring staked SOL to submit proposals. Ethereum governance remains largely off-chain through social consensus and improvement proposals, though holding ETH gives validators economic weight in signaling support for upgrades.

Fee Burning and Monetary Policy

Many networks burn a portion of native token fees, creating deflationary pressure. Ethereum's EIP-1559 burns the base fee (roughly 60 to 70 percent of total fees paid), reducing ETH supply with every transaction. Solana burns 50 percent of fees while distributing the rest to validators. Bitcoin does not burn fees: all fees go directly to miners as part of the block reward.

This burning mechanism ties network usage directly to token tokenomics. As transaction volume increases, more tokens are burned, which can offset new issuance from staking rewards or block subsidies.

Native Tokens on Layer 2 Networks

Layer 2 networks have taken divergent approaches to native tokens. Some inherit the parent chain's native token entirely, others issue their own, and some operate without any proprietary token at all.

Inherited Native Token

Networks like Base use ETH as their native gas token without issuing any additional token. Users pay transaction fees in ETH, and revenue flows to the network operator (Coinbase, in Base's case) and the Optimism Collective. This approach avoids the complexity of token governance but means the L2 has no independent economic instrument for incentive alignment.

Dual Token Model

Arbitrum and Optimism both use ETH for gas fees but have issued separate governance tokens (ARB and OP, respectively). These governance tokens do not pay for transactions: they exist solely to decentralize decision-making over protocol upgrades, treasury allocation, and sequencer policy. This separates the economic function (gas payments in ETH) from the political function (governance votes in the L2 token).

Full Native Token

Polygon migrated from MATIC to POL in 2024 as a full native token that serves as both the gas token and the staking token on Polygon PoS. POL is designed to expand into additional roles including ZK proof generation and data availability committees. This model gives the L2 complete control over its own economic and security incentives.

Why It Matters

Understanding native tokens is essential for evaluating any blockchain or Layer 2 network. The design of a network's native token shapes its security budget, fee dynamics, and governance structure. A network that uses its parent chain's token for gas (like Base) has different security trade-offs than one that issues its own (like Polygon).

For developers building on Bitcoin Layer 2s, native token design affects how users interact with the protocol. Spark, for example, operates as a Bitcoin Layer 2 where BTC remains the native asset. Users transact in bitcoin without needing to acquire or manage a separate L2 token, reducing friction and aligning economic incentives with the base layer.

Native tokens also determine a network's fee market dynamics. When demand for block space rises, fees paid in the native token increase, which can create a positive feedback loop: higher fees increase token burn, reducing supply, which may increase the token's value, which strengthens the network's security budget. This mechanism only works because fees must be paid in the native token.

Use Cases

  • Transaction fees: every on-chain action, from simple transfers to complex smart contract interactions, requires the native token for gas payment
  • Validator and miner incentives: native tokens align economic incentives for network operators through staking rewards, block subsidies, and fee revenue
  • Collateral: native tokens serve as collateral in DeFi protocols, including lending platforms and overcollateralized stablecoin systems
  • Medium of exchange: BTC and ETH function as payment currencies across their respective ecosystems, from Lightning payments to NFT marketplaces
  • Store of value: some native tokens, particularly BTC with its fixed maximum supply of 21 million, are held as long-term savings instruments

Risks and Considerations

Concentration and Centralization

Native token distribution can become highly concentrated. When a small number of holders control a large share of the staking supply, they gain outsized influence over consensus and governance. This is especially relevant for proof-of-stake networks where stake directly determines validator selection and voting power.

Fee Volatility

Because fees are denominated in the native token, users face cost uncertainty when the token's fiat value fluctuates. A transaction that costs $0.10 when ETH is at $1,900 may cost $0.20 if ETH doubles in price, even if gas consumption stays the same. This volatility complicates budgeting for applications and users.

Security Budget Dependence

A blockchain's security is directly tied to the market value of its native token. If the token price drops significantly, the economic cost of attacking the network decreases proportionally. For proof-of-work chains, lower token value means miners may shut down, reducing hashrate. For proof-of-stake chains, the dollar cost of acquiring enough stake for a 51% attack decreases.

Regulatory Classification

The legal status of native tokens varies by jurisdiction. Whether a native token qualifies as a commodity, security, or payment instrument affects how it can be traded, held, and used. Regulatory clarity continues to evolve: in the United States, Bitcoin (BTC) is generally treated as a commodity, while the classification of other native tokens has been subject to ongoing legal proceedings and legislative proposals like the GENIUS Act.

This glossary entry is for informational purposes only and does not constitute financial or investment advice. Always do your own research before using any protocol or technology.