ETH Price: $3,357.63 (+9.51%)

Transaction Decoder

Block:
21936818 at Feb-27-2025 09:36:59 AM +UTC
Transaction Fee:
0.000085236715828578 ETH $0.29
Gas Used:
53,799 Gas / 1.584355022 Gwei

Emitted Events:

307 WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=1130000000000000000 )
308 WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=[Sender] 0x819fa0169c5d2e0f99060e378a829ef6e4955e2f, wad=1130000000000000000 )
309 0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
310 0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 000000000000000000000000819fa0169c5d2e0f99060e378a829ef6e4955e2f, 0000000000000000000000000000000000000000000000000fae910354310000, 0000000000000000000000000000000000000000000000000fae910354310000 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
8.171702524537853347 Eth8.17175349884271655 Eth0.000050974304863203
0x819fa016...6e4955e2f
1.390547940882729885 Eth
Nonce: 23
0.260462704166901307 Eth
Nonce: 24
1.130085236715828578
0xC02aaA39...83C756Cc2 2,923,976.622574671205208814 Eth2,923,977.752574671205208814 Eth1.13

Execution Trace

ETH 1.13 0xf3de3c0d654fda23dad170f0f320a92172509127.01617fab( )
  • ETH 1.13 WETH9.CALL( )
  • WETH9.transfer( dst=0x819fa0169c5d2e0F99060e378A829eF6e4955e2f, wad=1130000000000000000 ) => ( 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