Transaction Hash:
Block:
21936860 at Feb-27-2025 09:45:35 AM +UTC
Transaction Fee:
0.000159608020913016 ETH
$0.49
Gas Used:
137,976 Gas / 1.156781041 Gwei
Emitted Events:
95 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
|
96 |
WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=13000000000000000 )
|
97 |
WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV2Pair, wad=13000000000000000 )
|
98 |
HULEZI.Transfer( from=UniswapV2Pair, to=[Sender] 0xfd94c8c3004b75a5a440c16067957a3d8851e629, value=4132761714129 )
|
99 |
UniswapV2Pair.Sync( reserve0=30726791282283988367, reserve1=9793440375526125 )
|
100 |
UniswapV2Pair.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, amount0In=13000000000000000, amount1In=0, amount0Out=0, amount1Out=4132761714129, to=[Sender] 0xfd94c8c3004b75a5a440c16067957a3d8851e629 )
|
101 |
0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000c24d52e3d3a36e9481af0715180e530cbe4667ca, 000000000000000000000000fd94c8c3004b75a5a440c16067957a3d8851e629, 000000000000000000000000000000000000000000000000002e2f6e5e148000, 000000000000000000000000000000000000000000000000000003c23bcb3dd1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x158CdFd6...686716315 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.516348100153591195 Eth | 8.516417088153591195 Eth | 0.000068988 | |
0xC02aaA39...83C756Cc2 | 2,923,828.477701928043696526 Eth | 2,923,828.490701928043696526 Eth | 0.013 | ||
0xc24d52E3...CBe4667CA | |||||
0xfD94c8C3...d8851e629 |
0.02193134517184723 Eth
Nonce: 67
|
0.008771737150934214 Eth
Nonce: 68
| 0.013159608020913016 |
Execution Trace
ETH 0.013
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.013
WETH9.CALL( )
-
WETH9.transfer( dst=0x158CdFd6f03D115C95887f9aba21b3D686716315, wad=13000000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
HULEZI.balanceOf( account=0xfD94c8C3004b75a5A440c16067957A3d8851e629 ) => ( 15495315744183 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x158CdFd6f03D115C95887f9aba21b3D686716315 ) => ( 30726791282283988367 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=4132761714129, to=0xfD94c8C3004b75a5A440c16067957A3d8851e629, data=0x )
-
HULEZI.balanceOf( account=0xfD94c8C3004b75a5A440c16067957A3d8851e629 ) => ( 19628077458312 )
File 1 of 3: WETH9
File 2 of 3: UniswapV2Pair
File 3 of 3: HULEZI
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: HULEZI
12345678910111213141516// SPDX-License-Identifier: UNLICENSE/*https://etherscan.io/idm?addresses=0x1a19c370ea73d67a0a91085811a1e89e89b36813,0x0000000000000000000000000000000000000000&type=1https://t.me/hulezhi*/pragma solidity ^0.8.0;abstract contract Context {function _msgSender() internal view virtual returns (address) {