Transaction Hash:
Block:
20923632 at Oct-08-2024 09:44:59 PM +UTC
Transaction Fee:
0.00513568490583057 ETH
$19.15
Gas Used:
157,890 Gas / 32.526980213 Gwei
Emitted Events:
628 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
629 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=19500000000000000 )
|
630 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=19500000000000000 )
|
631 |
Mozuko.Transfer( from=UniswapV2Pair, to=[Sender] 0x5d2fcf5de2f9e78849b803045bbaf4c7482fe1ec, value=508755357628610449 )
|
632 |
UniswapV2Pair.Sync( reserve0=215185277311347702790, reserve1=8242557518939238375 )
|
633 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=0, amount1In=19500000000000000, amount0Out=508755357628610449, amount1Out=0, to=[Sender] 0x5d2fcf5de2f9e78849b803045bbaf4c7482fe1ec )
|
634 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000005abcc9647f3947e76b5abc1641a9b0707be124a2, 0000000000000000000000005d2fcf5de2f9e78849b803045bbaf4c7482fe1ec, 000000000000000000000000000000000000000000000000004547258d1ec000, 000000000000000000000000000000000000000000000000070f764d6107b791 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3264150f...d7B1642Cf | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.452386206062471551 Eth | 13.452919963438901441 Eth | 0.00053375737642989 | |
0x5abcC964...07Be124A2 | |||||
0x5d2fcf5d...7482fE1eC |
0.055918640429142934 Eth
Nonce: 224
|
0.031282955523312364 Eth
Nonce: 225
| 0.02463568490583057 | ||
0xC02aaA39...83C756Cc2 | 2,962,893.784488766385043084 Eth | 2,962,893.803988766385043084 Eth | 0.0195 |
Execution Trace
ETH 0.0195
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.0195
WETH9.CALL( )
-
WETH9.transfer( dst=0x3264150fEE4e73fe8dBD51d0408c238d7B1642Cf, wad=19500000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
Mozuko.balanceOf( account=0x5d2fcf5dE2f9e78849B803045Bbaf4c7482fE1eC ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x3264150fEE4e73fe8dBD51d0408c238d7B1642Cf ) => ( 8242557518939238375 )
UniswapV2Pair.swap( amount0Out=508755357628610449, amount1Out=0, to=0x5d2fcf5dE2f9e78849B803045Bbaf4c7482fE1eC, data=0x )
-
Mozuko.balanceOf( account=0x5d2fcf5dE2f9e78849B803045Bbaf4c7482fE1eC ) => ( 508755357628610449 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: Mozuko
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: Mozuko
12345678910111213141516/**https://t.me/Mozuku_Ethereum**/// SPDX-License-Identifier: MITpragma solidity 0.8.25;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}