ETH Price: $2,985.93 (+5.43%)

Transaction Decoder

Block:
21845485 at Feb-14-2025 03:06:11 PM +UTC
Transaction Fee:
0.000203830717676468 ETH $0.61
Gas Used:
67,546 Gas / 3.017657858 Gwei

Emitted Events:

271 WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=140000000000000000 )
272 WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=[Sender] 0x59dfbee34004f7ff37911fe59c04bc78df06c53a, wad=140000000000000000 )
273 0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 000000000000000000000000000000000000000000000000003457b18fbdca41 )
274 0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 00000000000000000000000059dfbee34004f7ff37911fe59c04bc78df06c53a, 00000000000000000000000000000000000000000000000001f161421c8e0000, 00000000000000000000000000000000000000000000000001f161421c8e0000 )

Account State Difference:

  Address   Before After State Difference Code
4.103141841370814469 Eth4.103201639358958729 Eth0.00005979798814426
0x59dfbEE3...8df06C53A
0.209166388363604526 Eth
Nonce: 504
0.068962557645928058 Eth
Nonce: 505
0.140203830717676468
0xC02aaA39...83C756Cc2 2,988,425.120732905857180389 Eth2,988,425.260732905857180389 Eth0.14

Execution Trace

ETH 0.14 0xf3de3c0d654fda23dad170f0f320a92172509127.01617fab( )
  • ETH 0.14 WETH9.CALL( )
  • WETH9.transfer( dst=0x59dfbEE34004F7fF37911FE59c04bC78df06C53A, wad=140000000000000000 ) => ( True )
    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