Transaction Hash:
Block:
21937134 at Feb-27-2025 10:40:23 AM +UTC
Transaction Fee:
0.000159337103133452 ETH
$0.49
Gas Used:
137,122 Gas / 1.162009766 Gwei
Emitted Events:
152 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
153 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=20000000000000000 )
|
154 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=20000000000000000 )
|
155 |
token.Transfer( from=UniswapV2Pair, to=[Sender] 0xca8945c6bc8b2093e1e92a7e54cce94c18012077, value=732761768368533 )
|
156 |
UniswapV2Pair.Sync( reserve0=12611763491678609847, reserve1=343212801371145520385 )
|
157 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=0, amount1In=20000000000000000, amount0Out=732761768368533, amount1Out=0, to=[Sender] 0xca8945c6bc8b2093e1e92a7e54cce94c18012077 )
|
158 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 00000000000000000000000028561b8a2360f463011c16b6cc0b0cbef8dbbcad, 000000000000000000000000ca8945c6bc8b2093e1e92a7e54cce94c18012077, 00000000000000000000000000000000000000000000000000470de4df820000, 00000000000000000000000000000000000000000000000000029a7164e89995 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 1.540053216594272408 Eth | 1.540121777594272408 Eth | 0.000068561 | ||
0x28561B8A...EF8dbBcad | |||||
0x470DC172...dd456A03D | |||||
0xC02aaA39...83C756Cc2 | 2,923,367.013757145296891887 Eth | 2,923,367.033757145296891887 Eth | 0.02 | ||
0xCa8945C6...c18012077 |
0.082443814055939328 Eth
Nonce: 14
|
0.062284476952805876 Eth
Nonce: 15
| 0.020159337103133452 |
Execution Trace
ETH 0.02
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.02
WETH9.CALL( )
-
WETH9.transfer( dst=0x470DC172d6502Ac930B59322EcE5345dd456A03D, wad=20000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
token.balanceOf( account=0xCa8945C6Bc8B2093E1e92a7E54ccE94c18012077 ) => ( 4217191994226795 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x470DC172d6502Ac930B59322EcE5345dd456A03D ) => ( 343212801371145520385 )
UniswapV2Pair.swap( amount0Out=732761768368533, amount1Out=0, to=0xCa8945C6Bc8B2093E1e92a7E54ccE94c18012077, data=0x )
-
token.balanceOf( account=0xCa8945C6Bc8B2093E1e92a7E54ccE94c18012077 ) => ( 4949953762595328 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: token
12345678910111213141516// 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;
File 2 of 3: UniswapV2Pair
12345678910111213141516// File: contracts/interfaces/IUniswapV2Pair.solpragma solidity >=0.5.0;interface IUniswapV2Pair {event Approval(address indexed owner, address indexed spender, uint value);event Transfer(address indexed from, address indexed to, uint value);function name() external pure returns (string memory);function symbol() external pure returns (string memory);function decimals() external pure returns (uint8);function totalSupply() external view returns (uint);function balanceOf(address owner) external view returns (uint);function allowance(address owner, address spender) external view returns (uint);function approve(address spender, uint value) external returns (bool);
File 3 of 3: token
12345678910111213141516// SPDX-License-Identifier: UNLICENSE/*tg:https://t.me/MOODENGONETHhttps://x.com/X/status/1835404944167571587*/pragma solidity 0.8.23;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}interface IERC20 {