Transaction Hash:
Block:
21845388 at Feb-14-2025 02:46:47 PM +UTC
Transaction Fee:
0.00045992684717322 ETH
$1.64
Gas Used:
161,140 Gas / 2.854206573 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 20.558272584169613424 Eth | 20.558428889969613424 Eth | 0.0001563058 | |
0xE66dcc8e...ad6585ea4 |
0.03962565672857667 Eth
Nonce: 15
|
0.03916572988140345 Eth
Nonce: 16
| 0.00045992684717322 |
Execution Trace
ETH 0.0185
0xf3de3c0d654fda23dad170f0f320a92172509127.9871efa4( )
- ETH 0.0185
WETH9.CALL( )
-
WETH9.transfer( dst=0x3b091133D9c0Fc14Be3aCa71Df9eC6E4DE5C7349, wad=18500000000000000 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
erc.balanceOf( account=0xE66dcc8ee7cd4c2f28C016A81a4Dd40ad6585ea4 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x3b091133D9c0Fc14Be3aCa71Df9eC6E4DE5C7349 ) => ( 18728761328132853537 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=8056102655052, to=0xE66dcc8ee7cd4c2f28C016A81a4Dd40ad6585ea4, data=0x )
-
erc.balanceOf( account=0xE66dcc8ee7cd4c2f28C016A81a4Dd40ad6585ea4 ) => ( 8056102655052 )
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;}}