Transaction Hash:
Block:
21937236 at Feb-27-2025 11:00:47 AM +UTC
Transaction Fee:
0.00018356205196416 ETH
$0.58
Gas Used:
140,768 Gas / 1.30400412 Gwei
Emitted Events:
45 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 000000000000000000000000000000000000000000000000003499c3ae6207c1 )
|
46 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=316500000000000000 )
|
47 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=316500000000000000 )
|
48 |
erc.Transfer( from=UniswapV2Pair, to=[Sender] 0x5948e9294d1d18951160643cef02962f42424d01, value=122586283606147 )
|
49 |
UniswapV2Pair.Sync( reserve0=20483465601472655273, reserve1=7834541110527639 )
|
50 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=316500000000000000, amount1In=0, amount0Out=0, amount1Out=122586283606147, to=[Sender] 0x5948e9294d1d18951160643cef02962f42424d01 )
|
51 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000c9089c58c380d3e9ce812ddb878aae9828de8436, 0000000000000000000000005948e9294d1d18951160643cef02962f42424d01, 00000000000000000000000000000000000000000000000004646f12b7694000, 00000000000000000000000000000000000000000000000000006f7dd7e38083 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3b091133...4DE5C7349 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.623122885692067023 Eth | 8.623193269692067023 Eth | 0.000070384 | |
0x5948e929...f42424D01 |
0.3212623625868819 Eth
Nonce: 202
|
0.00457880053491774 Eth
Nonce: 203
| 0.31668356205196416 | ||
0xC02aaA39...83C756Cc2 | 2,923,529.044345187880636264 Eth | 2,923,529.360845187880636264 Eth | 0.3165 | ||
0xc9089C58...828DE8436 |
Execution Trace
ETH 0.3165
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.3165
WETH9.CALL( )
-
WETH9.transfer( dst=0x3b091133D9c0Fc14Be3aCa71Df9eC6E4DE5C7349, wad=316500000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
erc.balanceOf( account=0x5948e9294d1d18951160643cEf02962f42424D01 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x3b091133D9c0Fc14Be3aCa71Df9eC6E4DE5C7349 ) => ( 20483465601472655273 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=122586283606147, to=0x5948e9294d1d18951160643cEf02962f42424D01, data=0x )
-
erc.balanceOf( account=0x5948e9294d1d18951160643cEf02962f42424D01 ) => ( 122586283606147 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: erc
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: erc
12345678910111213141516/**https://t.me/AdrianDittman_Elon*/// SPDX-License-Identifier: MITpragma solidity 0.8.23;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}