Transaction Hash:
Block:
12419838 at May-12-2021 01:25:48 PM +UTC
Transaction Fee:
0.0493232058 ETH
$123.93
Gas Used:
150,974 Gas / 326.7 Gwei
Emitted Events:
27 |
WETH9.Deposit( dst=[Receiver] UniswapV2Router02, wad=160000000000000000 )
|
28 |
WETH9.Transfer( src=[Receiver] UniswapV2Router02, dst=UniswapV2Pair, wad=160000000000000000 )
|
29 |
FEG.Transfer( from=UniswapV2Pair, to=[Sender] 0xe341a2678c6d3bd06ac220fecf6ae2ccc9fd2822, value=17026275717866200169 )
|
30 |
UniswapV2Pair.Sync( reserve0=232055333117190849090621, reserve1=2130814870104697654932 )
|
31 |
UniswapV2Pair.Swap( sender=[Receiver] UniswapV2Router02, amount0In=806374621476907, amount1In=160000000000000000, amount0Out=17373750732516530783, amount1Out=0, to=[Sender] 0xe341a2678c6d3bd06ac220fecf6ae2ccc9fd2822 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x38999921...52522C945 | |||||
0x85437338...6Fa10D872 | |||||
0xC02aaA39...83C756Cc2 | 6,400,276.079373810767113149 Eth | 6,400,276.239373810767113149 Eth | 0.16 | ||
0xE341A267...cc9Fd2822 |
0.223615288 Eth
Nonce: 2
|
0.0142920822 Eth
Nonce: 3
| 0.2093232058 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 3,516.889534626908025771 Eth | 3,516.938857832708025771 Eth | 0.0493232058 |
Execution Trace
ETH 0.16
UniswapV2Router02.swapExactETHForTokens( amountOutMin=17142270684116640736, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x389999216860AB8E0175387A0c90E5c52522C945], to=0xE341A2678C6d3BD06Ac220FECf6Ae2Ccc9Fd2822, deadline=1620827684 ) => ( amounts=[160000000000000000, 17373750732516530783] )
-
UniswapV2Pair.STATICCALL( )
- ETH 0.16
WETH9.CALL( )
-
WETH9.transfer( dst=0x854373387E41371Ac6E307A1F29603c6Fa10D872, wad=160000000000000000 ) => ( True )
UniswapV2Pair.swap( amount0Out=17373750732516530783, amount1Out=0, to=0xE341A2678C6d3BD06Ac220FECf6Ae2Ccc9Fd2822, data=0x )
-
FEG.transfer( recipient=0xE341A2678C6d3BD06Ac220FECf6Ae2Ccc9Fd2822, amount=17373750732516530783 ) => ( True )
-
FEG.balanceOf( account=0x854373387E41371Ac6E307A1F29603c6Fa10D872 ) => ( 232055333117190849090621 )
-
WETH9.balanceOf( 0x854373387E41371Ac6E307A1F29603c6Fa10D872 ) => ( 2130814870104697654932 )
-
swapExactETHForTokens[UniswapV2Router02 (ln:467)]
getAmountsOut[UniswapV2Router02 (ln:476)]
getReserves[UniswapV2Library (ln:739)]
sortTokens[UniswapV2Library (ln:702)]
getReserves[UniswapV2Library (ln:703)]
pairFor[UniswapV2Library (ln:703)]
sortTokens[UniswapV2Library (ln:691)]
deposit[UniswapV2Router02 (ln:478)]
transfer[UniswapV2Router02 (ln:479)]
pairFor[UniswapV2Router02 (ln:479)]
sortTokens[UniswapV2Library (ln:691)]
_swap[UniswapV2Router02 (ln:480)]
sortTokens[UniswapV2Router02 (ln:430)]
pairFor[UniswapV2Router02 (ln:433)]
sortTokens[UniswapV2Library (ln:691)]
swap[UniswapV2Router02 (ln:434)]
pairFor[UniswapV2Router02 (ln:434)]
sortTokens[UniswapV2Library (ln:691)]
File 1 of 4: UniswapV2Router02
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: FEG
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: 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;
File 3 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 4 of 4: FEG
12345678910111213141516// FEG (Fuck Emily Goetz Token)// Why? Because fuck you thats why!// The best way to say FUCK YOU EMILY GOETZ is to blow up a token with her code with FEG as the ticker!// Why 100,000,000,000,000,000 token supply? That's how many times she's had VD! hahaha Fuck Emily Goetz!// SPDX-License-Identifier: Unlicensedpragma solidity ^0.6.12;abstract contract Context {function _msgSender() internal view virtual returns (address payable) {return msg.sender;}function _msgData() internal view virtual returns (bytes memory) {