Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 4.103141841370814469 Eth | 4.103201639358958729 Eth | 0.00005979798814426 | ||
0x59dfbEE3...8df06C53A |
0.209166388363604526 Eth
Nonce: 504
|
0.068962557645928058 Eth
Nonce: 505
| 0.140203830717676468 | ||
0xC02aaA39...83C756Cc2 | 2,988,425.120732905857180389 Eth | 2,988,425.260732905857180389 Eth | 0.14 |
Execution Trace
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);