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?.
What “wrapped” actually means
Wrapping is not magic duplication. The flow is:
- You send the underlying asset (ETH, BTC, HYPE, etc.) to a wrapper contract.
- The contract locks it and mints (creates) a wrapped token in your wallet — one receipt per one unit deposited, in the honest case.
- 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.
| Term | Plain meaning |
|---|---|
| Underlying | The asset the wrapper represents (ETH, BTC, USDC on its home chain) |
| Wrapper contract | The smart contract that holds deposits and mints/burns receipts |
| Mint | Create new wrapped tokens when someone deposits |
| Burn | Destroy wrapped tokens when someone withdraws the underlying |
| Peg | The 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.
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.
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:
| Type | Example | What happened |
|---|---|---|
| Local wrap | ETH → WETH on Ethereum | Same chain; ETH sits in the WETH contract |
| Bridge wrap | ETH on Ethereum → bridged ETH on Arbitrum | Locked on mainnet; minted representation on L2 |
| Canonical bridge token | Official USDC via Circle’s bridge | Issuer-backed; specific contract address |
| Third-party bridge token | ”USDC” from a small bridge | Different 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.
Compared to a familiar non-crypto thing
| Familiar thing | Wrapped token equivalent |
|---|---|
| Coat-check ticket | WETH — you handed in ETH, you hold a claim slip |
| Warehouse receipt for grain | Bridged asset — stored in one place, paper says you own X |
| Casino chips bought at the cage | Wrapped token minted 1:1 when you deposit |
| Gift card balance at one store chain | Wrapped token redeemable only through that contract |
| Counterfeit ticket with the same logo | Scam token sharing a name but no vault behind it |
The receipt is only as good as the desk that issued it.
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.
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.
A sensible way to start — checklist
- Do one small DEX swap involving ETH — notice if the interface mentions WETH in the transaction preview or explorer.
- Open the token on a block explorer — save the official WETH (or WHYPE) contract address for your network.
- Before depositing anywhere — compare the token’s contract address to the app’s docs, not just the ticker symbol.
- After bridging — confirm which bridge issued your wrapped USDC (or other asset) and whether your destination app accepts that contract.
- Leave a little native token for gas — unwrapping WETH back to ETH still costs gas.
- 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.
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.