ETH Price: $2,679.02 (+6.70%)

Transaction Decoder

Block:
22447603 at May-09-2025 06:14:47 PM +UTC
Transaction Fee:
0.000201078985844394 ETH $0.54
Gas Used:
45,486 Gas / 4.420678579 Gwei

Emitted Events:

82 WETH9.Deposit( dst=[Sender] 0x650ace4c5b1fac66f3cf565e1f48ee8766b8bc4b, wad=1480000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.901373956092624863 Eth12.901434451014070787 Eth0.000060494921445924
0x650ACE4c...766B8Bc4b
1.665707448549850931 Eth
Nonce: 1279
0.185506369564006537 Eth
Nonce: 1280
1.480201078985844394
0xC02aaA39...83C756Cc2 2,722,805.719021576084391978 Eth2,722,807.199021576084391978 Eth1.48

Execution Trace

ETH 1.48 WETH9.deposit( )
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