Unwrap
Unwrap

Ethereum Virtual Machine · Acts onchain

Unwraps WETH back into native ETH on the current chain. The amount is burned through the wrapped native contract's withdraw, which pays the native asset out one-to-one with no fee. Reach for it after a step that pays out WETH, such as a swap or a vault redemption, when the next step needs native ETH by value.

Unwrap WETH to ETH

evm
plug
4actions
  1. 1·Get token balance

    Reads the WETH balance at 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 held by Your Wallet, capturing the current wrapped holding.

  2. 2·Bubble

    Surfacing the value in slot 0.1 as an output of this plug hands that WETH balance back to the caller.

  3. 3·Take

    Next, amount is declared as a caller parameter, letting the caller size how much WETH to unwrap at execution time.

  4. 4·Unwrap

    Drawing the amount from slot 2.0, this unwraps that quantity of WETH at 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 into native ETH at 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE on the current chain.

Get balance of held by
Bubble
Take
Unwrap to
  • Unwrap WETH to ETH

    evm
    plug

On other protocols · 4