ETH Price: $2,774.69 (-0.74%)

Transaction Decoder

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 Code
0x9Ac32922...EcE416Dd4
0.041667745880552472 Eth
Nonce: 5
0.056090069880552472 Eth
Nonce: 6
0.014422324
0xC02aaA39...83C756Cc2 3,832,618.532955697981471815 Eth3,832,618.517955697981471815 Eth0.015
(Flashbots: Builder)
1.195173881834469607 Eth1.195262190943339699 Eth0.000088309108870092

Execution Trace

WETH9.withdraw( wad=15000000000000000 )
  • ETH 0.015 0x9ac32922239b146656bc01b8baeae33ece416dd4.CALL( )
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // 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);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX