Transaction Hash:
Block:
16240322 at Dec-22-2022 12:44:11 PM +UTC
Transaction Fee:
0.000577676 ETH
$1.60
Gas Used:
30,404 Gas / 19 Gwei
Emitted Events:
40 |
WETH9.Withdrawal( src=[Sender] 0x9ac32922239b146656bc01b8baeae33ece416dd4, wad=15000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x9Ac32922...EcE416Dd4 |
0.041667745880552472 Eth
Nonce: 5
|
0.056090069880552472 Eth
Nonce: 6
| 0.014422324 | ||
0xC02aaA39...83C756Cc2 | 3,832,618.532955697981471815 Eth | 3,832,618.517955697981471815 Eth | 0.015 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 1.195173881834469607 Eth | 1.195262190943339699 Eth | 0.000088309108870092 |
Execution Trace
WETH9.withdraw( wad=15000000000000000 )

- ETH 0.015
0x9ac32922239b146656bc01b8baeae33ece416dd4.CALL( )
withdraw[WETH9 (ln:38)]
transfer[WETH9 (ln:41)]
Withdrawal[WETH9 (ln:42)]
1234567891011121314151617181920212223242526// Copyright (C) 2015, 2016, 2017 Dapphub// This program is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.// You should have received a copy of the GNU General Public License// along with this program. If not, see <http://www.gnu.org/licenses/>.pragma solidity ^0.4.18;contract WETH9 {string public name = "Wrapped Ether";string public symbol = "WETH";uint8 public decimals = 18;event Approval(address indexed src, address indexed guy, uint wad);event Transfer(address indexed src, address indexed dst, uint wad);event Deposit(address indexed dst, uint wad);event Withdrawal(address indexed src, uint wad);