Transaction Hash:
Block:
22544013 at May-23-2025 07:14:59 AM +UTC
Transaction Fee:
0.000028401947479912 ETH
$0.11
Gas Used:
27,938 Gas / 1.016606324 Gwei
Emitted Events:
584 |
WETH9.Deposit( dst=[Sender] 0x8d40b7bc061ec93e4cfeb33e4b6c065f90af6777, wad=11995447940108 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.333679656839721838 Eth | 8.333679679190121838 Eth | 0.0000000223504 | |
0x8D40B7bc...f90Af6777 |
0.031863858901799538 Eth
Nonce: 1
|
0.031823461506379518 Eth
Nonce: 2
| 0.00004039739542002 | ||
0xC02aaA39...83C756Cc2 | 2,788,265.782388975712898867 Eth | 2,788,265.782400971160838975 Eth | 0.000011995447940108 |
Execution Trace
ETH 0.000011995447940108
WETH9.CALL( )
[WETH9 (ln:31)]
deposit[WETH9 (ln:32)]
Deposit[WETH9 (ln:36)]
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);