ThePathMark
Chapter 22 Core concepts Low risk

What are wrapped tokens?

Why WETH exists, what "wrapped" means on a block explorer, and how to tell a legitimate receipt token from a random copy with the same name.

The short version
  • A wrapped token is an on-chain receipt for another asset — you deposit the original into a smart contract and receive a token that represents your claim.
  • WETH (wrapped ETH) exists because most DeFi smart contracts cannot handle native ETH directly; wrapping lets ETH trade in pools like any other token.
  • Bridged tokens are a type of wrapped token — locked on chain A, minted as a copy on chain B. Same ticker on screen does not mean same token.
  • Legitimate wrappers aim for a 1:1 peg — one WETH should always unwrap to one ETH. The peg depends on the contract and whoever runs it.
  • Always check the contract address on a block explorer. Two tokens can both say USDC with different addresses — one official, one a copy.

A wrapped token is an on-chain token (a coin tracked by a smart contract) that stands in for another asset — usually locked in a contract vault somewhere. When your wallet shows WETH instead of ETH, or bridged USDC with a long contract name, you are holding a receipt, not a different species of money.

If you have not swapped on a DEX (decentralized exchange) yet, read How to swap on a DEX first — that is where most beginners first meet WETH. If you crossed chains recently, pair this with What are bridges?.

01

What “wrapped” actually means

Wrapping is not magic duplication. The flow is:

  1. You send the underlying asset (ETH, BTC, HYPE, etc.) to a wrapper contract.
  2. The contract locks it and mints (creates) a wrapped token in your wallet — one receipt per one unit deposited, in the honest case.
  3. To get the original back, you unwrap: send the wrapped token to the contract and receive the underlying asset.

You still own the value. You just hold it in a form that other smart contracts can move with standard token logic.

TermPlain meaning
UnderlyingThe asset the wrapper represents (ETH, BTC, USDC on its home chain)
Wrapper contractThe smart contract that holds deposits and mints/burns receipts
MintCreate new wrapped tokens when someone deposits
BurnDestroy wrapped tokens when someone withdraws the underlying
PegThe promised exchange rate (usually 1 wrapped = 1 underlying)

Wrapped is not the same as “fake.” A legitimate WETH contract is a tool. A scam token that names itself WETH on a random contract is a copy — same word, different vault, no deposit backing it.

02

Why wrapping exists — especially WETH

On Ethereum and most EVM (Ethereum Virtual Machine) networks, native ETH is special. It is the coin the network uses for gas fees, but many DeFi apps and AMM (automated market maker) pools are built for ERC-20 tokens — a standard format where one token contract talks to another the same way.

Smart contracts cannot always accept or send native ETH the way they handle USDC or DAI. So the ecosystem built WETH (wrapped ETH): deposit 1 ETH, receive 1 WETH. Trade WETH in a pool. Unwrap back to ETH when you need native coin for gas or a simple send.

Typical places you see wrapping without thinking about it:

  • DEX swap interfaces — “ETH” in the picker often routes through WETH under the hood.
  • Lending apps — collateral deposited as WETH, not raw ETH.
  • LP tokens — pools pair WETH with other assets; see LP vs token.

On HyperEVM, WHYPE is the wrapped form of native HYPE — same idea for gas and app compatibility.

03

Wrapped on one chain vs bridged from another

Not every wrapped token is WETH-style local plumbing. After a bridge, you often hold a wrapped copy of an asset that “lives” on another network:

TypeExampleWhat happened
Local wrapETH → WETH on EthereumSame chain; ETH sits in the WETH contract
Bridge wrapETH on Ethereum → bridged ETH on ArbitrumLocked on mainnet; minted representation on L2
Canonical bridge tokenOfficial USDC via Circle’s bridgeIssuer-backed; specific contract address
Third-party bridge token”USDC” from a small bridgeDifferent contract; redemption depends on that bridge

Your wallet may show the same three or four letters — USDC, ETH, BTC — for different contracts. The contract address on a block explorer is how you tell them apart. See What are bridges? for lock-and-mint mechanics.

04

Compared to a familiar non-crypto thing

Familiar thingWrapped token equivalent
Coat-check ticketWETH — you handed in ETH, you hold a claim slip
Warehouse receipt for grainBridged asset — stored in one place, paper says you own X
Casino chips bought at the cageWrapped token minted 1:1 when you deposit
Gift card balance at one store chainWrapped token redeemable only through that contract
Counterfeit ticket with the same logoScam token sharing a name but no vault behind it

The receipt is only as good as the desk that issued it.

05

Why people use wrapped tokens

Honest reasons — not marketing:

  • DeFi compatibility — trade, lend, or pool ETH without every app rewriting native-ETH logic.
  • Cross-chain movement — hold a usable representation after bridging to a network where the original does not natively exist.
  • Composable building blocks — developers treat WETH like any other ERC-20 in smart contracts.
  • Clear accounting — pool math and token approvals work on one standard; see Token approvals.

Most users never manually wrap. The dApp or DEX does it inside the swap. Knowing it happens explains weird balances and extra gas steps.

06

Risks beginners should know

  • Name confusion — searching “WETH” or “USDC” and trusting the label. Scam contracts copy names daily. Verify the contract address from official docs or a block explorer.
  • Wrong bridge wrapper — two bridged USDC tokens on one chain from different bridges. Swapping or depositing the wrong one can mean you cannot redeem where you expect.
  • Peg break — if a bridge is hacked or insolvent, wrapped tokens may not unwrap 1:1. Related: LST depeg for a different peg failure mode.
  • Extra step, extra gas — wrap and unwrap are transactions. Each costs gas fees. Small trades can feel expensive.
  • Forgotten unwrap — holding WETH when you meant to send native ETH to an exchange that only accepts ETH. Read the deposit instructions.
  • Unlimited approvals on obscure wrappers — same risk as any token; revoke stale approvals on contracts you no longer use.
07

A sensible way to start — checklist

  1. Do one small DEX swap involving ETH — notice if the interface mentions WETH in the transaction preview or explorer.
  2. Open the token on a block explorer — save the official WETH (or WHYPE) contract address for your network.
  3. Before depositing anywhere — compare the token’s contract address to the app’s docs, not just the ticker symbol.
  4. After bridging — confirm which bridge issued your wrapped USDC (or other asset) and whether your destination app accepts that contract.
  5. Leave a little native token for gas — unwrapping WETH back to ETH still costs gas.
  6. Optional — unwrap a tiny amount manually once so “wrap” is a button you have pressed, not vocabulary.

Wrapped tokens are plumbing. Boring on purpose. The skill is reading the label on the pipe before you pour money through it.

⚑ One honest flag

Wrapped does not mean “safe because it sounds official.” It means “this token is a claim on something else.” Verify which contract holds the claim — especially after a bridge — before you approve, deposit, or size up.

If this cleared something up, you can buy me a coffee — or say hi on X.

← All guides