Core Concepts

Wrapped Tokens

How a coin from one chain gets represented on another — WBTC, wETH and beyond.

A wrapped token is a version of a cryptocurrency that has been locked up on its native blockchain so that an equivalent, pegged token can be issued and used on a different blockchain. The concept is simple in principle but quietly powers a huge amount of activity in decentralized finance: it lets an asset that lives on one chain do useful things — lending, trading, earning fees — on a chain where it otherwise could not exist.

Why wrapping is necessary

Every blockchain is, by default, an island. Bitcoin runs on its own network with its own rules; Ethereum runs on an entirely separate one. Neither chain can natively read or verify what is happening on the other. A Bitcoin transaction does not exist from Ethereum’s point of view, and vice versa.

This isolation is not a design flaw — it is an intentional consequence of each chain maintaining its own consensus and security. But it creates a practical problem: the largest and most liquid asset in crypto (bitcoin) cannot participate in the DeFi protocols built on Ethereum without some kind of translation layer.

Wrapped tokens are one answer to that problem. Rather than changing either blockchain, they create a peg: lock the original asset somewhere, then mint a new token on the destination chain that represents it one-for-one.

How wrapping works in practice

The mechanics vary by implementation, but the general flow looks like this:

  1. A user deposits their original asset (say, BTC) with a custodian or into a smart contract.
  2. That custodian or contract locks the asset and signals that it is held in reserve.
  3. An equivalent amount of the wrapped token (WBTC, in this case) is minted on the destination chain.
  4. The user now holds a token on Ethereum that tracks the price of BTC and can be used anywhere that token is accepted.
  5. To reverse the process, the user burns the wrapped token, and the original asset is released back to them.

The key insight is that the supply of wrapped tokens and the supply of locked originals must stay in balance. One WBTC should always be backed by exactly one BTC in custody — that 1:1 backing is what gives it its value.

Custodial vs. trustless wrapping

Not all wrapping mechanisms offer the same trust model, and this distinction matters.

ApproachHow it worksTrust required
Custodial (e.g. WBTC)A centralized custodian holds the underlying BTCHigh — you rely on the custodian’s solvency and honesty
Multi-party (e.g. threshold schemes)A group of parties must cooperate to mint or release fundsMedium — security is distributed but not eliminated
Trustless bridgeSmart contracts and cryptographic proofs handle custodyLower — but smart contract risk replaces custodian risk

Wrapped Bitcoin (WBTC) is the most prominent example of the custodial model. The underlying BTC is held by a regulated custodian, and the Ethereum token is backed by on-chain proof of reserves that anyone can verify. It has succeeded at scale partly because institutional participants are comfortable with known custodians. The trade-off is that users must trust a third party and that trust introduces counterparty risk.

Trustless or “bridge-based” approaches try to remove the custodian by using smart contracts and sometimes cryptographic light-client proofs. These are technically more elegant but introduce their own risks — the bridge smart contract itself becomes a high-value target. Several of the largest hacks in crypto history have involved bridge exploits, which is worth understanding before using them. You can read more about the mechanics in the guide on sidechains and bridges.

wETH: wrapping a chain’s own asset

Wrapping is not only about moving assets between chains. A subtler use case is wrapping a chain’s native asset so it conforms to the token standard used by that chain’s smart contracts.

On Ethereum, the native currency (ETH) predates the ERC-20 token standard. ETH itself does not conform to ERC-20, which means many DeFi protocols cannot interact with it directly — they are written to handle ERC-20 tokens only. The solution is Wrapped Ether (wETH): a smart contract that accepts ETH and issues an ERC-20 token of equal value. Unwrapping returns ETH.

This might feel like an administrative detail, but it matters in practice. When you use a decentralized exchange or a lending protocol on Ethereum, you are often working with wETH behind the scenes even if the interface abstracts it away. Understanding token standards helps explain why this wrapper exists at all.

Risks to understand

Wrapped tokens introduce risks that the underlying asset does not have on its home chain.

Custodian or bridge risk. If the entity or contract holding the original asset is compromised, frozen, or insolvent, the wrapped token can lose its backing. A wrapped token is only as sound as whatever holds the collateral.

Smart contract bugs. Minting and burning logic is code, and code can have vulnerabilities. Audits reduce this risk but do not eliminate it.

Liquidity fragmentation. If confidence in a wrapped token erodes, its market price can briefly decouple from the underlying asset — the peg can break under stress, even if temporarily.

Regulatory exposure. Custodial wrappers involve a known legal entity. Regulatory action against that entity can affect the token’s redeemability. This is distinct from the risk profile of holding the native asset directly.

None of these risks mean wrapped tokens are not useful. They are widely used and, in the case of WBTC, have operated reliably at significant scale. But they do mean that holding a wrapped token is not identical to holding the native asset — it is an IOU, and IOUs carry counterparty exposure.

Where wrapped tokens show up

Wrapped tokens are a foundational piece of decentralized finance. You will encounter them in:

  • Lending protocols, where WBTC can be posted as collateral to borrow stablecoins
  • Decentralized exchanges, which use wETH and other wrapped assets in trading pairs and liquidity pools
  • Cross-chain applications, where bridges wrap assets so they can be deployed on lower-fee chains
  • Yield strategies, where wrapping unlocks access to opportunities that the native asset cannot reach on its own chain

The broader question of how different blockchains communicate and share assets is covered in the guide on cross-chain interoperability, which goes deeper into the infrastructure that makes all of this possible.

Key takeaways

  • A wrapped token locks an original asset on its native chain and mints a pegged representation on another chain, maintaining a 1:1 backing.
  • Wrapping solves the isolation problem: blockchains cannot natively read each other, so a translation layer is needed to move value between them.
  • Custodial wrappers (like WBTC) rely on trusted third parties; bridge-based or trustless wrappers replace that with smart contract risk — neither is risk-free.
  • wETH exists not to move ETH to another chain, but to make ETH compatible with Ethereum’s own ERC-20 token standard.
  • Holding a wrapped token is holding an IOU — if the backing mechanism fails, the peg can break.
  • Wrapped tokens are essential infrastructure for DeFi, enabling bitcoin and other assets to participate in lending, trading, and yield protocols they otherwise could not reach.

Next up: Governance and DAOs