Transaction Hash:
Block:
13708175 at Nov-29-2021 10:50:49 AM +UTC
Transaction Fee:
0.012523064536847443 ETH
$31.59
Gas Used:
163,673 Gas / 76.512708491 Gwei
Emitted Events:
95 |
CoinToken.Transfer( from=[Sender] 0x3d2c4aca0cde42dc19b7b89276df3ee426ff9a6d, to=UniswapV2Pair, value=411616224462418 )
|
96 |
CoinToken.Approval( owner=[Sender] 0x3d2c4aca0cde42dc19b7b89276df3ee426ff9a6d, spender=[Receiver] UniswapV2Router02, value=115792089237316195423570985008687907853269984665640564039457583574632893363706 )
|
97 |
WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniswapV2Router02, wad=1162999332518994596 )
|
98 |
UniswapV2Pair.Sync( reserve0=20315439450101669, reserve1=56406392910711731533 )
|
99 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=411616224462418, amount1In=0, amount0Out=0, amount1Out=1162999332518994596, to=[Receiver] UniswapV2Router02 )
|
100 |
WETH9.Withdrawal( src=[Receiver] UniswapV2Router02, wad=1162999332518994596 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1aD91ee0...dA6B45836
Miner
| (Hiveon Pool) | 7,866.524819491747449661 Eth | 7,866.525146837747449661 Eth | 0.000327346 | |
0x3D2c4AcA...426fF9a6d |
11.460023258768922533 Eth
Nonce: 163
|
12.610499526751069686 Eth
Nonce: 164
| 1.150476267982147153 | ||
0x7345Ffe6...fe9f93253 | |||||
0xA933Da7A...73AcB930B | |||||
0xC02aaA39...83C756Cc2 | 7,529,162.67331083773294084 Eth | 7,529,161.510311505213946244 Eth | 1.162999332518994596 |
Execution Trace
UniswapV2Router02.swapExactTokensForETHSupportingFeeOnTransferTokens( amountIn=433280236276229, amountOutMin=1142050539774048441, path=[0x7345Ffe6291bc15381A4110831013e8fe9f93253, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0x3D2c4AcA0cDE42DC19b7b89276Df3Ee426fF9a6d, deadline=1638183551 )
-
CoinToken.transferFrom( sender=0x3D2c4AcA0cDE42DC19b7b89276Df3Ee426fF9a6d, recipient=0xA933Da7Ad6A6105f39D868F6DE498B873AcB930B, amount=433280236276229 ) => ( True )
-
UniswapV2Pair.STATICCALL( )
-
CoinToken.balanceOf( account=0xA933Da7Ad6A6105f39D868F6DE498B873AcB930B ) => ( 20315439450101669 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=1162999332518994596, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
-
WETH9.balanceOf( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) => ( 1162999332518994596 )
WETH9.withdraw( wad=1162999332518994596 )
- ETH 1.162999332518994596
UniswapV2Router02.CALL( )
- ETH 1.162999332518994596
- ETH 1.162999332518994596
0x3d2c4aca0cde42dc19b7b89276df3ee426ff9a6d.CALL( )
swapExactTokensForETHSupportingFeeOnTransferTokens[UniswapV2Router02 (ln:594)]
safeTransferFrom[UniswapV2Router02 (ln:607)]
call[TransferHelper (ln:772)]
encodeWithSelector[TransferHelper (ln:772)]
decode[TransferHelper (ln:773)]
pairFor[UniswapV2Router02 (ln:608)]
sortTokens[UniswapV2Library (ln:691)]
_swapSupportingFeeOnTransferTokens[UniswapV2Router02 (ln:610)]
sortTokens[UniswapV2Router02 (ln:539)]
pairFor[UniswapV2Router02 (ln:540)]
sortTokens[UniswapV2Library (ln:691)]
getReserves[UniswapV2Router02 (ln:544)]
sub[UniswapV2Router02 (ln:546)]
balanceOf[UniswapV2Router02 (ln:546)]
pairFor[UniswapV2Router02 (ln:550)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:551)]
balanceOf[UniswapV2Router02 (ln:611)]
withdraw[UniswapV2Router02 (ln:613)]
safeTransferETH[UniswapV2Router02 (ln:614)]
File 1 of 4: UniswapV2Router02
File 2 of 4: UniswapV2Pair
File 3 of 4: CoinToken
File 4 of 4: WETH9
12345678910111213141516pragma solidity =0.6.6;interface IUniswapV2Factory {event PairCreated(address indexed token0, address indexed token1, address pair, uint);function feeTo() external view returns (address);function feeToSetter() external view returns (address);function getPair(address tokenA, address tokenB) external view returns (address pair);function allPairs(uint) external view returns (address pair);function allPairsLength() external view returns (uint);function createPair(address tokenA, address tokenB) external returns (address pair);function setFeeTo(address) external;function setFeeToSetter(address) external;
File 2 of 4: 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 4: CoinToken
12345678910111213141516// SPDX-License-Identifier: Unlicensedpragma solidity ^0.8.5;abstract contract Context {function _msgSender() internal view virtual returns (address payable) {return payable(msg.sender);}function _msgData() internal view virtual returns (bytes memory) {this;return msg.data;}}
File 4 of 4: WETH9
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;