Transaction Hash:
Block:
10908364 at Sep-21-2020 09:43:14 PM +UTC
Transaction Fee:
0.0112876 ETH
$28.65
Gas Used:
112,876 Gas / 100 Gwei
Emitted Events:
10 |
TokensOfBabel.Transfer( from=[Sender] 0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e, to=UniswapV2Pair, value=236285213758559413756 )
|
11 |
WETH9.Transfer( src=UniswapV2Pair, dst=[Receiver] UniswapV2Router02, wad=1845764150391293374 )
|
12 |
UniswapV2Pair.Sync( reserve0=9498552500238023063217, reserve1=72570783610698595447 )
|
13 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=236285213758559413756, amount1In=0, amount0Out=0, amount1Out=1845764150391293374, to=[Receiver] UniswapV2Router02 )
|
14 |
WETH9.Withdrawal( src=[Receiver] UniswapV2Router02, wad=1845764150391293374 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x04668Ec2...D451c8F7F
Miner
| (zhizhu.top) | 2,895.708112693316420086 Eth | 2,895.719400293316420086 Eth | 0.0112876 | |
0x7777770f...EBa9209E6 | |||||
0x7844c04B...7686865ff | |||||
0x9374176B...94BF06e0e |
0.82809144841890295 Eth
Nonce: 13
|
2.662567998810196324 Eth
Nonce: 14
| 1.834476550391293374 | ||
0xC02aaA39...83C756Cc2 | 7,199,485.884799217279266694 Eth | 7,199,484.03903506688797332 Eth | 1.845764150391293374 |
Execution Trace
UniswapV2Router02.swapExactTokensForETH( amountIn=236285213758559413756, amountOutMin=1836581244170441168, path=[0x7777770f8A6632ff043c8833310e245EBa9209E6, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2], to=0x9374176Ba0e0E56D1F244B2f4Ba32A794BF06e0e, deadline=1600725759 ) => ( amounts=[236285213758559413756, 1845764150391293374] )
-
UniswapV2Pair.STATICCALL( )
-
TokensOfBabel.transferFrom( from=0x9374176Ba0e0E56D1F244B2f4Ba32A794BF06e0e, to=0x7844c04B043B51dc45Bdf59ee2De53e7686865ff, value=236285213758559413756 ) => ( True )
UniswapV2Pair.swap( amount0Out=0, amount1Out=1845764150391293374, to=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, data=0x )
WETH9.withdraw( wad=1845764150391293374 )
- ETH 1.845764150391293374
UniswapV2Router02.CALL( )
- ETH 1.845764150391293374
- ETH 1.845764150391293374
0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e.CALL( )
swapExactTokensForETH[UniswapV2Router02 (ln:499)]
getAmountsOut[UniswapV2Router02 (ln:507)]
getReserves[UniswapV2Library (ln:739)]
sortTokens[UniswapV2Library (ln:702)]
getReserves[UniswapV2Library (ln:703)]
pairFor[UniswapV2Library (ln:703)]
sortTokens[UniswapV2Library (ln:691)]
safeTransferFrom[UniswapV2Router02 (ln:509)]
call[TransferHelper (ln:772)]
encodeWithSelector[TransferHelper (ln:772)]
decode[TransferHelper (ln:773)]
pairFor[UniswapV2Router02 (ln:510)]
sortTokens[UniswapV2Library (ln:691)]
_swap[UniswapV2Router02 (ln:512)]
sortTokens[UniswapV2Router02 (ln:430)]
pairFor[UniswapV2Router02 (ln:433)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:434)]
pairFor[UniswapV2Router02 (ln:434)]
sortTokens[UniswapV2Library (ln:691)]
withdraw[UniswapV2Router02 (ln:513)]
safeTransferETH[UniswapV2Router02 (ln:514)]
File 1 of 4: UniswapV2Router02
File 2 of 4: UniswapV2Pair
File 3 of 4: TokensOfBabel
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: TokensOfBabel
12345678910111213141516pragma solidity 0.6.0;library SafeMath {function add(uint256 a, uint256 b) internal pure returns (uint256) {uint256 c = a + b;require(c >= a, "SafeMath: addition overflow");return c;}function sub(uint256 a, uint256 b) internal pure returns (uint256) {return sub(a, b, "SafeMath: subtraction overflow");}function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {require(b <= a, errorMessage);
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;