Transaction Hash:
Block:
22547266 at May-23-2025 06:10:47 PM +UTC
Transaction Fee:
0.00013083137463711 ETH
$0.33
Gas Used:
45,038 Gas / 2.904910845 Gwei
Emitted Events:
168 |
WETH9.Deposit( dst=[Sender] 0x8bb6e43cc7fe9905d170cde0b7f4e5d502adb8e5, wad=8900000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 6.290050943191416913 Eth | 6.290082289763001185 Eth | 0.000031346571584272 | |
0x8bB6e43C...502aDb8E5 |
8.918246680734942902 Eth
Nonce: 6
|
0.018115849360305792 Eth
Nonce: 7
| 8.90013083137463711 | ||
0xC02aaA39...83C756Cc2 | 2,824,413.520894346919582077 Eth | 2,824,422.420894346919582077 Eth | 8.9 |
Execution Trace
ETH 8.9
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);